-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlobalUsings.cs
executable file
·31 lines (31 loc) · 1.09 KB
/
GlobalUsings.cs
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
// SPDX-License-Identifier: MPL-2.0
global using System;
global using System.Buffers;
global using System.Collections;
global using System.Collections.Generic;
global using System.Collections.Immutable;
global using System.ComponentModel;
global using System.Diagnostics;
global using System.Diagnostics.CodeAnalysis;
global using System.Globalization;
global using System.IO;
global using System.Linq;
global using System.Linq.Expressions;
global using System.Numerics;
global using System.Reflection;
global using System.Runtime;
global using System.Runtime.CompilerServices;
global using System.Runtime.InteropServices;
global using System.Runtime.Serialization;
global using System.Security;
global using System.Text;
global using System.Text.RegularExpressions;
global using System.Threading;
global using Emik.Morsels;
global using Gu.Roslyn.AnalyzerExtensions;
global using InlineMethod;
global using JetBrains.Annotations;
global using Microsoft.CodeAnalysis;
global using Microsoft.CodeAnalysis.CSharp;
global using Microsoft.CodeAnalysis.CSharp.Syntax;
global using Microsoft.CodeAnalysis.Diagnostics;