-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathGlobalUsings.cs
More file actions
44 lines (37 loc) · 1.27 KB
/
GlobalUsings.cs
File metadata and controls
44 lines (37 loc) · 1.27 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
// Global using directives
global using System.Data.Common;
global using System.Globalization;
global using System.Linq;
global using System.Net;
global using System.Net.Mime;
global using System.Text;
global using Autofac;
global using Autofac.Core.Lifetime;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.AspNetCore.Mvc.Filters;
global using Microsoft.AspNetCore.RateLimiting;
global using SimdLinq;
global using ServiceStack.OrmLite;
global using UAParser.Interfaces;
global using YAF.Configuration;
global using YAF.Core.Context;
global using YAF.Core.Extensions;
global using YAF.Core.Helpers;
global using YAF.Core.Services;
global using YAF.Core.Tasks;
global using YAF.Core.Utilities;
global using YAF.Core.Utilities.StringUtils;
global using YAF.Types.Constants;
global using YAF.Types.EventProxies;
global using YAF.Types.Exceptions;
global using YAF.Types.Extensions;
global using YAF.Types.Extensions.Data;
global using YAF.Types.Flags;
global using YAF.Types.Interfaces;
global using YAF.Types.Interfaces.Data;
global using YAF.Types.Interfaces.Events;
global using YAF.Types.Interfaces.Identity;
global using YAF.Types.Interfaces.Services;
global using YAF.Types.Interfaces.Tasks;
global using YAF.Types.Models.Identity;