From 5fd90e8cb6f9f468599b7a181fdabd1525213593 Mon Sep 17 00:00:00 2001 From: Sumit Ghosh Date: Wed, 13 Oct 2021 17:36:30 +0530 Subject: [PATCH] Included globalusing file for IntegrationEventLogEF project --- .../EventBus/IntegrationEventLogEF/GlobalUsings.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/BuildingBlocks/EventBus/IntegrationEventLogEF/GlobalUsings.cs diff --git a/src/BuildingBlocks/EventBus/IntegrationEventLogEF/GlobalUsings.cs b/src/BuildingBlocks/EventBus/IntegrationEventLogEF/GlobalUsings.cs new file mode 100644 index 000000000..866b0cea6 --- /dev/null +++ b/src/BuildingBlocks/EventBus/IntegrationEventLogEF/GlobalUsings.cs @@ -0,0 +1,12 @@ +global using Microsoft.EntityFrameworkCore; +global using Microsoft.EntityFrameworkCore.Metadata.Builders; +global using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events; +global using System; +global using System.Text.Json; +global using System.ComponentModel.DataAnnotations.Schema; +global using System.Linq; +global using System.Threading.Tasks; +global using Microsoft.EntityFrameworkCore.Storage; +global using System.Collections.Generic; +global using System.Data.Common; +global using System.Reflection;