-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGlobalUsing.cs
More file actions
45 lines (45 loc) · 1.61 KB
/
Copy pathGlobalUsing.cs
File metadata and controls
45 lines (45 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
global using AwesomeAssertions.Execution;
global using AwesomeAssertions.Primitives;
global using CloudNative.CloudEvents;
global using CoreEx;
global using CoreEx.Azure.Messaging.ServiceBus;
global using CoreEx.Data;
global using CoreEx.Database.Postgres.Outbox;
global using CoreEx.Database.SqlServer.Outbox;
global using CoreEx.Entities;
global using CoreEx.Entities.Abstractions;
global using CoreEx.Events;
global using CoreEx.Events.Publishing;
global using CoreEx.Events.Subscribing;
global using CoreEx.Hosting;
global using CoreEx.Http.Abstractions;
global using CoreEx.Json;
global using CoreEx.RefData.Abstractions;
global using CoreEx.Security;
global using CoreEx.Text;
global using CoreEx.UnitTesting.Events;
global using CoreEx.Validation;
global using DbEx;
global using DbEx.Migration;
global using DbEx.Migration.Data;
global using DbEx.Postgres.Migration;
global using DbEx.SqlServer.Migration;
global using AwesomeAssertions;
global using Microsoft.Extensions.DependencyInjection;
global using System.Collections.Concurrent;
global using System.Diagnostics.CodeAnalysis;
global using System.Reflection;
global using System.Text;
global using System.Text.Json;
global using System.Text.Json.Nodes;
global using System.Text.RegularExpressions;
global using UnitTestEx;
global using UnitTestEx.Abstractions;
global using UnitTestEx.AspNetCore;
global using UnitTestEx.Assertors;
global using UnitTestEx.Expectations;
global using UnitTestEx.Hosting;
global using YamlDotNet.Core.Events;
global using YamlDotNet.Serialization;
global using Asb = Azure.Messaging.ServiceBus;
global using ExecutionContext = CoreEx.ExecutionContext;