Use global usings for System headers.

This commit is contained in:
Ottermandias 2024-01-08 23:30:55 +01:00
parent d62d7e352f
commit a5c33a6311
140 changed files with 141 additions and 472 deletions

19
Glamourer/GlobalUsings.cs Normal file
View file

@ -0,0 +1,19 @@
global using System;
global using System.Collections;
global using System.Collections.Concurrent;
global using System.Collections.Generic;
global using System.Diagnostics;
global using System.Diagnostics.CodeAnalysis;
global using System.Globalization;
global using System.IO;
global using System.IO.Compression;
global using System.Linq;
global using System.Numerics;
global using System.Reflection;
global using System.Runtime.CompilerServices;
global using System.Runtime.InteropServices;
global using System.Security.Cryptography;
global using System.Text;
global using System.Text.RegularExpressions;
global using System.Threading;
global using System.Threading.Tasks;