diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 139cf26..6611f35 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -10,36 +10,41 @@ jobs: build: runs-on: ubuntu-latest + env: + NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore + - name: Run Generator + run: dotnet run --project Src/Generate/ + - name: Build run: dotnet build --no-restore -bl - name: Pack Solution run: dotnet pack -p:PackageOutputPath="${GITHUB_WORKSPACE}/packages" -p:IncludeSymbols=false -p:RepositoryCommit=${GITHUB_SHA} -p:PackageVersion="0.0.0.1" - + - name: Test run: dotnet test --framework net8.0 --no-build --verbosity normal - - name: Upload Binary Log - uses: actions/upload-artifact@v3 + - name: Upload Binary Log + uses: actions/upload-artifact@v4 if: always() with: name: binary-log path: msbuild.binlog - + - name: Upload Packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: nuget-packages diff --git a/Basic.Reference.Assemblies.sln b/Basic.Reference.Assemblies.sln index 3d0a78f..07df853 100644 --- a/Basic.Reference.Assemblies.sln +++ b/Basic.Reference.Assemblies.sln @@ -43,6 +43,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Basic.Reference.Assemblies. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Basic.Reference.Assemblies.AspNet90", "Src\Basic.Reference.Assemblies.AspNet90\Basic.Reference.Assemblies.AspNet90.csproj", "{72C15DA0-4D3F-424A-9717-AB8B332A8DD4}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Basic.Reference.Assemblies.Net100", "Src\Basic.Reference.Assemblies.Net100\Basic.Reference.Assemblies.Net100.csproj", "{B0E6B1FC-B538-42A1-A40C-279A24211AEB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Basic.Reference.Assemblies.AspNet100", "Src\Basic.Reference.Assemblies.AspNet100\Basic.Reference.Assemblies.AspNet100.csproj", "{4C5A0446-FADA-479E-8863-1D0D56A35DC4}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -293,6 +297,30 @@ Global {72C15DA0-4D3F-424A-9717-AB8B332A8DD4}.Release|x64.Build.0 = Release|Any CPU {72C15DA0-4D3F-424A-9717-AB8B332A8DD4}.Release|x86.ActiveCfg = Release|Any CPU {72C15DA0-4D3F-424A-9717-AB8B332A8DD4}.Release|x86.Build.0 = Release|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Debug|x64.ActiveCfg = Debug|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Debug|x64.Build.0 = Debug|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Debug|x86.ActiveCfg = Debug|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Debug|x86.Build.0 = Debug|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Release|Any CPU.Build.0 = Release|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Release|x64.ActiveCfg = Release|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Release|x64.Build.0 = Release|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Release|x86.ActiveCfg = Release|Any CPU + {B0E6B1FC-B538-42A1-A40C-279A24211AEB}.Release|x86.Build.0 = Release|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Debug|x64.ActiveCfg = Debug|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Debug|x64.Build.0 = Debug|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Debug|x86.ActiveCfg = Debug|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Debug|x86.Build.0 = Debug|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Release|Any CPU.Build.0 = Release|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Release|x64.ActiveCfg = Release|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Release|x64.Build.0 = Release|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Release|x86.ActiveCfg = Release|Any CPU + {4C5A0446-FADA-479E-8863-1D0D56A35DC4}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Src/Basic.Reference.Assemblies.AspNet100/Basic.Reference.Assemblies.AspNet100.csproj b/Src/Basic.Reference.Assemblies.AspNet100/Basic.Reference.Assemblies.AspNet100.csproj new file mode 100644 index 0000000..a1eb4e5 --- /dev/null +++ b/Src/Basic.Reference.Assemblies.AspNet100/Basic.Reference.Assemblies.AspNet100.csproj @@ -0,0 +1,14 @@ + + + + netstandard2.0 + true + false + + + + + + + + diff --git a/Src/Basic.Reference.Assemblies.AspNet100/Generated.cs b/Src/Basic.Reference.Assemblies.AspNet100/Generated.cs new file mode 100644 index 0000000..7568f8f --- /dev/null +++ b/Src/Basic.Reference.Assemblies.AspNet100/Generated.cs @@ -0,0 +1,9171 @@ +// This is a generated file, please edit Src\Generate\Program.cs to change the contents + +using System; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Linq; +using Microsoft.CodeAnalysis; + +namespace Basic.Reference.Assemblies; +public static partial class AspNet90 +{ + public static class ReferenceInfos + { + + /// + /// The for Microsoft.CSharp.dll + /// + public static ReferenceInfo MicrosoftCSharp => new ReferenceInfo("Microsoft.CSharp.dll", Resources.MicrosoftCSharp, AspNet90.References.MicrosoftCSharp, global::System.Guid.Parse("59d5c5aa-21d8-4184-8801-e8fa4cae7ab6")); + + /// + /// The for Microsoft.VisualBasic.Core.dll + /// + public static ReferenceInfo MicrosoftVisualBasicCore => new ReferenceInfo("Microsoft.VisualBasic.Core.dll", Resources.MicrosoftVisualBasicCore, AspNet90.References.MicrosoftVisualBasicCore, global::System.Guid.Parse("7393c2b8-e20d-45c7-83a6-d506dadcfb58")); + + /// + /// The for Microsoft.VisualBasic.dll + /// + public static ReferenceInfo MicrosoftVisualBasic => new ReferenceInfo("Microsoft.VisualBasic.dll", Resources.MicrosoftVisualBasic, AspNet90.References.MicrosoftVisualBasic, global::System.Guid.Parse("5fdf4026-bcd3-4d35-94fc-6a8a744d52d0")); + + /// + /// The for Microsoft.Win32.Primitives.dll + /// + public static ReferenceInfo MicrosoftWin32Primitives => new ReferenceInfo("Microsoft.Win32.Primitives.dll", Resources.MicrosoftWin32Primitives, AspNet90.References.MicrosoftWin32Primitives, global::System.Guid.Parse("c151fd1b-2b75-46d1-9a2e-697286d900dc")); + + /// + /// The for Microsoft.Win32.Registry.dll + /// + public static ReferenceInfo MicrosoftWin32Registry => new ReferenceInfo("Microsoft.Win32.Registry.dll", Resources.MicrosoftWin32Registry, AspNet90.References.MicrosoftWin32Registry, global::System.Guid.Parse("f43e7da3-213c-4bed-98b4-21f899f1a41d")); + + /// + /// The for mscorlib.dll + /// + public static ReferenceInfo mscorlib => new ReferenceInfo("mscorlib.dll", Resources.mscorlib, AspNet90.References.mscorlib, global::System.Guid.Parse("1c6b895a-648a-4a9d-8e87-bcd9cf4018c1")); + + /// + /// The for netstandard.dll + /// + public static ReferenceInfo netstandard => new ReferenceInfo("netstandard.dll", Resources.netstandard, AspNet90.References.netstandard, global::System.Guid.Parse("6291998e-e3f6-4164-8774-d0434deceb2d")); + + /// + /// The for System.AppContext.dll + /// + public static ReferenceInfo SystemAppContext => new ReferenceInfo("System.AppContext.dll", Resources.SystemAppContext, AspNet90.References.SystemAppContext, global::System.Guid.Parse("d8212879-580f-43b3-8d74-d9dc3a2b4f1b")); + + /// + /// The for System.Buffers.dll + /// + public static ReferenceInfo SystemBuffers => new ReferenceInfo("System.Buffers.dll", Resources.SystemBuffers, AspNet90.References.SystemBuffers, global::System.Guid.Parse("52255cf9-e0fd-40e0-ab52-10a336b8251c")); + + /// + /// The for System.Collections.Concurrent.dll + /// + public static ReferenceInfo SystemCollectionsConcurrent => new ReferenceInfo("System.Collections.Concurrent.dll", Resources.SystemCollectionsConcurrent, AspNet90.References.SystemCollectionsConcurrent, global::System.Guid.Parse("7e5e080f-b6ee-4d7c-8be9-15b1efa45205")); + + /// + /// The for System.Collections.dll + /// + public static ReferenceInfo SystemCollections => new ReferenceInfo("System.Collections.dll", Resources.SystemCollections, AspNet90.References.SystemCollections, global::System.Guid.Parse("0e9f52f8-d78c-4d16-a0c8-acc4bea76e8a")); + + /// + /// The for System.Collections.Immutable.dll + /// + public static ReferenceInfo SystemCollectionsImmutable => new ReferenceInfo("System.Collections.Immutable.dll", Resources.SystemCollectionsImmutable, AspNet90.References.SystemCollectionsImmutable, global::System.Guid.Parse("203c4fca-5aa4-4c78-9a81-002bd1f48fe7")); + + /// + /// The for System.Collections.NonGeneric.dll + /// + public static ReferenceInfo SystemCollectionsNonGeneric => new ReferenceInfo("System.Collections.NonGeneric.dll", Resources.SystemCollectionsNonGeneric, AspNet90.References.SystemCollectionsNonGeneric, global::System.Guid.Parse("a00181a4-efac-4423-b248-4070baa81dcb")); + + /// + /// The for System.Collections.Specialized.dll + /// + public static ReferenceInfo SystemCollectionsSpecialized => new ReferenceInfo("System.Collections.Specialized.dll", Resources.SystemCollectionsSpecialized, AspNet90.References.SystemCollectionsSpecialized, global::System.Guid.Parse("9cdc72cc-fe2e-4130-b79f-9ef03bf980e6")); + + /// + /// The for System.ComponentModel.Annotations.dll + /// + public static ReferenceInfo SystemComponentModelAnnotations => new ReferenceInfo("System.ComponentModel.Annotations.dll", Resources.SystemComponentModelAnnotations, AspNet90.References.SystemComponentModelAnnotations, global::System.Guid.Parse("97ae1cbb-22dd-4a0d-b14b-8f6e04d819c5")); + + /// + /// The for System.ComponentModel.DataAnnotations.dll + /// + public static ReferenceInfo SystemComponentModelDataAnnotations => new ReferenceInfo("System.ComponentModel.DataAnnotations.dll", Resources.SystemComponentModelDataAnnotations, AspNet90.References.SystemComponentModelDataAnnotations, global::System.Guid.Parse("03695ca4-604d-423e-ab1a-2c01f6344463")); + + /// + /// The for System.ComponentModel.dll + /// + public static ReferenceInfo SystemComponentModel => new ReferenceInfo("System.ComponentModel.dll", Resources.SystemComponentModel, AspNet90.References.SystemComponentModel, global::System.Guid.Parse("cabfb8bc-1a4e-4c15-8077-6d0d00defc36")); + + /// + /// The for System.ComponentModel.EventBasedAsync.dll + /// + public static ReferenceInfo SystemComponentModelEventBasedAsync => new ReferenceInfo("System.ComponentModel.EventBasedAsync.dll", Resources.SystemComponentModelEventBasedAsync, AspNet90.References.SystemComponentModelEventBasedAsync, global::System.Guid.Parse("93039088-1402-47e9-88ff-0d548a0c1df9")); + + /// + /// The for System.ComponentModel.Primitives.dll + /// + public static ReferenceInfo SystemComponentModelPrimitives => new ReferenceInfo("System.ComponentModel.Primitives.dll", Resources.SystemComponentModelPrimitives, AspNet90.References.SystemComponentModelPrimitives, global::System.Guid.Parse("6cd52a08-3bc8-4ce6-87a8-14d760ceea88")); + + /// + /// The for System.ComponentModel.TypeConverter.dll + /// + public static ReferenceInfo SystemComponentModelTypeConverter => new ReferenceInfo("System.ComponentModel.TypeConverter.dll", Resources.SystemComponentModelTypeConverter, AspNet90.References.SystemComponentModelTypeConverter, global::System.Guid.Parse("c06e9220-9d99-4c97-856e-40f79cb079d1")); + + /// + /// The for System.Configuration.dll + /// + public static ReferenceInfo SystemConfiguration => new ReferenceInfo("System.Configuration.dll", Resources.SystemConfiguration, AspNet90.References.SystemConfiguration, global::System.Guid.Parse("31368206-c4c9-4cce-a062-33e74d15a63a")); + + /// + /// The for System.Console.dll + /// + public static ReferenceInfo SystemConsole => new ReferenceInfo("System.Console.dll", Resources.SystemConsole, AspNet90.References.SystemConsole, global::System.Guid.Parse("786956ec-934b-4be2-9db8-09750edc9dec")); + + /// + /// The for System.Core.dll + /// + public static ReferenceInfo SystemCore => new ReferenceInfo("System.Core.dll", Resources.SystemCore, AspNet90.References.SystemCore, global::System.Guid.Parse("4eb2efd0-d2a5-4349-aacf-fec45bdb9899")); + + /// + /// The for System.Data.Common.dll + /// + public static ReferenceInfo SystemDataCommon => new ReferenceInfo("System.Data.Common.dll", Resources.SystemDataCommon, AspNet90.References.SystemDataCommon, global::System.Guid.Parse("e2406361-c242-4337-9f5b-4210fff957fe")); + + /// + /// The for System.Data.DataSetExtensions.dll + /// + public static ReferenceInfo SystemDataDataSetExtensions => new ReferenceInfo("System.Data.DataSetExtensions.dll", Resources.SystemDataDataSetExtensions, AspNet90.References.SystemDataDataSetExtensions, global::System.Guid.Parse("c139b6b3-e5ca-4249-97ce-c5b4f42acd08")); + + /// + /// The for System.Data.dll + /// + public static ReferenceInfo SystemData => new ReferenceInfo("System.Data.dll", Resources.SystemData, AspNet90.References.SystemData, global::System.Guid.Parse("7d483f5f-802e-428d-9993-e6d9cbde07d4")); + + /// + /// The for System.Diagnostics.Contracts.dll + /// + public static ReferenceInfo SystemDiagnosticsContracts => new ReferenceInfo("System.Diagnostics.Contracts.dll", Resources.SystemDiagnosticsContracts, AspNet90.References.SystemDiagnosticsContracts, global::System.Guid.Parse("498e7bf9-12fe-4071-b177-7812f6c28895")); + + /// + /// The for System.Diagnostics.Debug.dll + /// + public static ReferenceInfo SystemDiagnosticsDebug => new ReferenceInfo("System.Diagnostics.Debug.dll", Resources.SystemDiagnosticsDebug, AspNet90.References.SystemDiagnosticsDebug, global::System.Guid.Parse("6d45d01a-8ea4-4281-a3e8-e008091569d9")); + + /// + /// The for System.Diagnostics.DiagnosticSource.dll + /// + public static ReferenceInfo SystemDiagnosticsDiagnosticSource => new ReferenceInfo("System.Diagnostics.DiagnosticSource.dll", Resources.SystemDiagnosticsDiagnosticSource, AspNet90.References.SystemDiagnosticsDiagnosticSource, global::System.Guid.Parse("91a92ebb-62e2-4d1a-9ae1-6c65c447907c")); + + /// + /// The for System.Diagnostics.FileVersionInfo.dll + /// + public static ReferenceInfo SystemDiagnosticsFileVersionInfo => new ReferenceInfo("System.Diagnostics.FileVersionInfo.dll", Resources.SystemDiagnosticsFileVersionInfo, AspNet90.References.SystemDiagnosticsFileVersionInfo, global::System.Guid.Parse("1f42025c-ac76-4e36-b742-2e3fad73ab5c")); + + /// + /// The for System.Diagnostics.Process.dll + /// + public static ReferenceInfo SystemDiagnosticsProcess => new ReferenceInfo("System.Diagnostics.Process.dll", Resources.SystemDiagnosticsProcess, AspNet90.References.SystemDiagnosticsProcess, global::System.Guid.Parse("3cbf9e0d-61dd-486e-9740-0a5a563cd021")); + + /// + /// The for System.Diagnostics.StackTrace.dll + /// + public static ReferenceInfo SystemDiagnosticsStackTrace => new ReferenceInfo("System.Diagnostics.StackTrace.dll", Resources.SystemDiagnosticsStackTrace, AspNet90.References.SystemDiagnosticsStackTrace, global::System.Guid.Parse("2a7357d4-2dd8-49c4-b314-6714102436ea")); + + /// + /// The for System.Diagnostics.TextWriterTraceListener.dll + /// + public static ReferenceInfo SystemDiagnosticsTextWriterTraceListener => new ReferenceInfo("System.Diagnostics.TextWriterTraceListener.dll", Resources.SystemDiagnosticsTextWriterTraceListener, AspNet90.References.SystemDiagnosticsTextWriterTraceListener, global::System.Guid.Parse("0f07d796-3c89-45e4-afd6-d06bd478ddaf")); + + /// + /// The for System.Diagnostics.Tools.dll + /// + public static ReferenceInfo SystemDiagnosticsTools => new ReferenceInfo("System.Diagnostics.Tools.dll", Resources.SystemDiagnosticsTools, AspNet90.References.SystemDiagnosticsTools, global::System.Guid.Parse("5ded8562-b6da-4130-a107-da06ca1f6ffc")); + + /// + /// The for System.Diagnostics.TraceSource.dll + /// + public static ReferenceInfo SystemDiagnosticsTraceSource => new ReferenceInfo("System.Diagnostics.TraceSource.dll", Resources.SystemDiagnosticsTraceSource, AspNet90.References.SystemDiagnosticsTraceSource, global::System.Guid.Parse("49062f49-0b32-45aa-bb83-e1b7e46bd8fe")); + + /// + /// The for System.Diagnostics.Tracing.dll + /// + public static ReferenceInfo SystemDiagnosticsTracing => new ReferenceInfo("System.Diagnostics.Tracing.dll", Resources.SystemDiagnosticsTracing, AspNet90.References.SystemDiagnosticsTracing, global::System.Guid.Parse("9d1cbe75-460a-46a1-b836-f821b402f87f")); + + /// + /// The for System.dll + /// + public static ReferenceInfo System => new ReferenceInfo("System.dll", Resources.System, AspNet90.References.System, global::System.Guid.Parse("3977a5f9-ed9c-4aed-8a90-d530f219feda")); + + /// + /// The for System.Drawing.dll + /// + public static ReferenceInfo SystemDrawing => new ReferenceInfo("System.Drawing.dll", Resources.SystemDrawing, AspNet90.References.SystemDrawing, global::System.Guid.Parse("5f099ffa-a6a1-457c-b47f-6360f6a5fb45")); + + /// + /// The for System.Drawing.Primitives.dll + /// + public static ReferenceInfo SystemDrawingPrimitives => new ReferenceInfo("System.Drawing.Primitives.dll", Resources.SystemDrawingPrimitives, AspNet90.References.SystemDrawingPrimitives, global::System.Guid.Parse("facdd775-21e8-4b1c-9ff5-0053fe1497e2")); + + /// + /// The for System.Dynamic.Runtime.dll + /// + public static ReferenceInfo SystemDynamicRuntime => new ReferenceInfo("System.Dynamic.Runtime.dll", Resources.SystemDynamicRuntime, AspNet90.References.SystemDynamicRuntime, global::System.Guid.Parse("668095b2-cc9d-4b84-b1ea-6a3e0964e0a7")); + + /// + /// The for System.Formats.Asn1.dll + /// + public static ReferenceInfo SystemFormatsAsn1 => new ReferenceInfo("System.Formats.Asn1.dll", Resources.SystemFormatsAsn1, AspNet90.References.SystemFormatsAsn1, global::System.Guid.Parse("27dffe6e-8441-41e3-8dcc-f2671fefcd97")); + + /// + /// The for System.Formats.Tar.dll + /// + public static ReferenceInfo SystemFormatsTar => new ReferenceInfo("System.Formats.Tar.dll", Resources.SystemFormatsTar, AspNet90.References.SystemFormatsTar, global::System.Guid.Parse("4cec1306-9c3c-491c-91f3-9ebb4b7f83cc")); + + /// + /// The for System.Globalization.Calendars.dll + /// + public static ReferenceInfo SystemGlobalizationCalendars => new ReferenceInfo("System.Globalization.Calendars.dll", Resources.SystemGlobalizationCalendars, AspNet90.References.SystemGlobalizationCalendars, global::System.Guid.Parse("a0c4a9e0-b729-469c-95ad-49518e3a67a3")); + + /// + /// The for System.Globalization.dll + /// + public static ReferenceInfo SystemGlobalization => new ReferenceInfo("System.Globalization.dll", Resources.SystemGlobalization, AspNet90.References.SystemGlobalization, global::System.Guid.Parse("93ef8b7a-c542-458e-b90c-fe82f4d0826f")); + + /// + /// The for System.Globalization.Extensions.dll + /// + public static ReferenceInfo SystemGlobalizationExtensions => new ReferenceInfo("System.Globalization.Extensions.dll", Resources.SystemGlobalizationExtensions, AspNet90.References.SystemGlobalizationExtensions, global::System.Guid.Parse("f863aca8-e884-449e-8d0d-9a06cbe44430")); + + /// + /// The for System.IO.Compression.Brotli.dll + /// + public static ReferenceInfo SystemIOCompressionBrotli => new ReferenceInfo("System.IO.Compression.Brotli.dll", Resources.SystemIOCompressionBrotli, AspNet90.References.SystemIOCompressionBrotli, global::System.Guid.Parse("769e46ac-202e-4eb7-895e-b0d5f794fee0")); + + /// + /// The for System.IO.Compression.dll + /// + public static ReferenceInfo SystemIOCompression => new ReferenceInfo("System.IO.Compression.dll", Resources.SystemIOCompression, AspNet90.References.SystemIOCompression, global::System.Guid.Parse("7f553084-7f73-4884-8de0-ad969b5a6d80")); + + /// + /// The for System.IO.Compression.FileSystem.dll + /// + public static ReferenceInfo SystemIOCompressionFileSystem => new ReferenceInfo("System.IO.Compression.FileSystem.dll", Resources.SystemIOCompressionFileSystem, AspNet90.References.SystemIOCompressionFileSystem, global::System.Guid.Parse("90530c5a-a105-4184-983e-19434fe77fcd")); + + /// + /// The for System.IO.Compression.ZipFile.dll + /// + public static ReferenceInfo SystemIOCompressionZipFile => new ReferenceInfo("System.IO.Compression.ZipFile.dll", Resources.SystemIOCompressionZipFile, AspNet90.References.SystemIOCompressionZipFile, global::System.Guid.Parse("4635f59a-5305-4d23-a171-b53f3ef61a0d")); + + /// + /// The for System.IO.dll + /// + public static ReferenceInfo SystemIO => new ReferenceInfo("System.IO.dll", Resources.SystemIO, AspNet90.References.SystemIO, global::System.Guid.Parse("80e2d764-8a6b-4635-80b6-3d4f3587e2d5")); + + /// + /// The for System.IO.FileSystem.AccessControl.dll + /// + public static ReferenceInfo SystemIOFileSystemAccessControl => new ReferenceInfo("System.IO.FileSystem.AccessControl.dll", Resources.SystemIOFileSystemAccessControl, AspNet90.References.SystemIOFileSystemAccessControl, global::System.Guid.Parse("adc12694-1436-4aff-a5d7-a416a5464ba6")); + + /// + /// The for System.IO.FileSystem.dll + /// + public static ReferenceInfo SystemIOFileSystem => new ReferenceInfo("System.IO.FileSystem.dll", Resources.SystemIOFileSystem, AspNet90.References.SystemIOFileSystem, global::System.Guid.Parse("36da671e-cb5e-450b-81ed-adcbfe4652ca")); + + /// + /// The for System.IO.FileSystem.DriveInfo.dll + /// + public static ReferenceInfo SystemIOFileSystemDriveInfo => new ReferenceInfo("System.IO.FileSystem.DriveInfo.dll", Resources.SystemIOFileSystemDriveInfo, AspNet90.References.SystemIOFileSystemDriveInfo, global::System.Guid.Parse("9d8d4efd-240a-4f24-8200-6d252290c0e8")); + + /// + /// The for System.IO.FileSystem.Primitives.dll + /// + public static ReferenceInfo SystemIOFileSystemPrimitives => new ReferenceInfo("System.IO.FileSystem.Primitives.dll", Resources.SystemIOFileSystemPrimitives, AspNet90.References.SystemIOFileSystemPrimitives, global::System.Guid.Parse("2eee6734-d7c9-4d3c-9b57-14d9e063dd88")); + + /// + /// The for System.IO.FileSystem.Watcher.dll + /// + public static ReferenceInfo SystemIOFileSystemWatcher => new ReferenceInfo("System.IO.FileSystem.Watcher.dll", Resources.SystemIOFileSystemWatcher, AspNet90.References.SystemIOFileSystemWatcher, global::System.Guid.Parse("38ed706f-6905-4b52-aed5-8824044dbbba")); + + /// + /// The for System.IO.IsolatedStorage.dll + /// + public static ReferenceInfo SystemIOIsolatedStorage => new ReferenceInfo("System.IO.IsolatedStorage.dll", Resources.SystemIOIsolatedStorage, AspNet90.References.SystemIOIsolatedStorage, global::System.Guid.Parse("50338776-8d80-410c-84d9-752c85ccf333")); + + /// + /// The for System.IO.MemoryMappedFiles.dll + /// + public static ReferenceInfo SystemIOMemoryMappedFiles => new ReferenceInfo("System.IO.MemoryMappedFiles.dll", Resources.SystemIOMemoryMappedFiles, AspNet90.References.SystemIOMemoryMappedFiles, global::System.Guid.Parse("99339aab-36dc-4f82-8d3e-22bc78383019")); + + /// + /// The for System.IO.Pipelines.dll + /// + public static ReferenceInfo SystemIOPipelines => new ReferenceInfo("System.IO.Pipelines.dll", Resources.SystemIOPipelines, AspNet90.References.SystemIOPipelines, global::System.Guid.Parse("634721a4-f3f9-4113-8a36-fc22e61b997c")); + + /// + /// The for System.IO.Pipes.AccessControl.dll + /// + public static ReferenceInfo SystemIOPipesAccessControl => new ReferenceInfo("System.IO.Pipes.AccessControl.dll", Resources.SystemIOPipesAccessControl, AspNet90.References.SystemIOPipesAccessControl, global::System.Guid.Parse("b94bd792-5007-4e48-8bce-c8123b19d2d9")); + + /// + /// The for System.IO.Pipes.dll + /// + public static ReferenceInfo SystemIOPipes => new ReferenceInfo("System.IO.Pipes.dll", Resources.SystemIOPipes, AspNet90.References.SystemIOPipes, global::System.Guid.Parse("23133763-f3a7-4217-a84d-da13f6f425ff")); + + /// + /// The for System.IO.UnmanagedMemoryStream.dll + /// + public static ReferenceInfo SystemIOUnmanagedMemoryStream => new ReferenceInfo("System.IO.UnmanagedMemoryStream.dll", Resources.SystemIOUnmanagedMemoryStream, AspNet90.References.SystemIOUnmanagedMemoryStream, global::System.Guid.Parse("02a1e350-ef4a-47a3-99cb-a4b31774c9b9")); + + /// + /// The for System.Linq.dll + /// + public static ReferenceInfo SystemLinq => new ReferenceInfo("System.Linq.dll", Resources.SystemLinq, AspNet90.References.SystemLinq, global::System.Guid.Parse("4401b83f-2853-4be6-b660-f8077bb60959")); + + /// + /// The for System.Linq.Expressions.dll + /// + public static ReferenceInfo SystemLinqExpressions => new ReferenceInfo("System.Linq.Expressions.dll", Resources.SystemLinqExpressions, AspNet90.References.SystemLinqExpressions, global::System.Guid.Parse("473dfd44-4094-4955-a7a6-33aa53dc51d4")); + + /// + /// The for System.Linq.Parallel.dll + /// + public static ReferenceInfo SystemLinqParallel => new ReferenceInfo("System.Linq.Parallel.dll", Resources.SystemLinqParallel, AspNet90.References.SystemLinqParallel, global::System.Guid.Parse("9520692e-eadb-41c4-9439-b66402ae669b")); + + /// + /// The for System.Linq.Queryable.dll + /// + public static ReferenceInfo SystemLinqQueryable => new ReferenceInfo("System.Linq.Queryable.dll", Resources.SystemLinqQueryable, AspNet90.References.SystemLinqQueryable, global::System.Guid.Parse("5e7d7575-8fc0-4e47-ac1e-685a86647331")); + + /// + /// The for System.Memory.dll + /// + public static ReferenceInfo SystemMemory => new ReferenceInfo("System.Memory.dll", Resources.SystemMemory, AspNet90.References.SystemMemory, global::System.Guid.Parse("9c78d05c-9a3d-406f-890d-440edf63bc25")); + + /// + /// The for System.Net.dll + /// + public static ReferenceInfo SystemNet => new ReferenceInfo("System.Net.dll", Resources.SystemNet, AspNet90.References.SystemNet, global::System.Guid.Parse("cdf9146d-1b30-469b-a5af-07b555b2b4f1")); + + /// + /// The for System.Net.Http.dll + /// + public static ReferenceInfo SystemNetHttp => new ReferenceInfo("System.Net.Http.dll", Resources.SystemNetHttp, AspNet90.References.SystemNetHttp, global::System.Guid.Parse("8ed2c701-3009-4e15-8887-ccf482a6fc26")); + + /// + /// The for System.Net.Http.Json.dll + /// + public static ReferenceInfo SystemNetHttpJson => new ReferenceInfo("System.Net.Http.Json.dll", Resources.SystemNetHttpJson, AspNet90.References.SystemNetHttpJson, global::System.Guid.Parse("0dabc388-2181-4174-ad26-bcf28ee96b47")); + + /// + /// The for System.Net.HttpListener.dll + /// + public static ReferenceInfo SystemNetHttpListener => new ReferenceInfo("System.Net.HttpListener.dll", Resources.SystemNetHttpListener, AspNet90.References.SystemNetHttpListener, global::System.Guid.Parse("22741ca4-593d-4e14-9af5-e4b540cb98c2")); + + /// + /// The for System.Net.Mail.dll + /// + public static ReferenceInfo SystemNetMail => new ReferenceInfo("System.Net.Mail.dll", Resources.SystemNetMail, AspNet90.References.SystemNetMail, global::System.Guid.Parse("948204a2-c86d-4761-95dc-d0ab9506f02d")); + + /// + /// The for System.Net.NameResolution.dll + /// + public static ReferenceInfo SystemNetNameResolution => new ReferenceInfo("System.Net.NameResolution.dll", Resources.SystemNetNameResolution, AspNet90.References.SystemNetNameResolution, global::System.Guid.Parse("587180a2-4493-4d42-a0c8-94183464ff40")); + + /// + /// The for System.Net.NetworkInformation.dll + /// + public static ReferenceInfo SystemNetNetworkInformation => new ReferenceInfo("System.Net.NetworkInformation.dll", Resources.SystemNetNetworkInformation, AspNet90.References.SystemNetNetworkInformation, global::System.Guid.Parse("5c8c481f-31ca-42ee-a197-ea5d11c413e2")); + + /// + /// The for System.Net.Ping.dll + /// + public static ReferenceInfo SystemNetPing => new ReferenceInfo("System.Net.Ping.dll", Resources.SystemNetPing, AspNet90.References.SystemNetPing, global::System.Guid.Parse("f8feec40-be64-4bb5-bf50-47cd54c75d68")); + + /// + /// The for System.Net.Primitives.dll + /// + public static ReferenceInfo SystemNetPrimitives => new ReferenceInfo("System.Net.Primitives.dll", Resources.SystemNetPrimitives, AspNet90.References.SystemNetPrimitives, global::System.Guid.Parse("39bb0e70-4422-4978-a9e6-fcc29a2356ff")); + + /// + /// The for System.Net.Quic.dll + /// + public static ReferenceInfo SystemNetQuic => new ReferenceInfo("System.Net.Quic.dll", Resources.SystemNetQuic, AspNet90.References.SystemNetQuic, global::System.Guid.Parse("a5da9e4e-cef1-430c-ac34-f3a1f1618aa7")); + + /// + /// The for System.Net.Requests.dll + /// + public static ReferenceInfo SystemNetRequests => new ReferenceInfo("System.Net.Requests.dll", Resources.SystemNetRequests, AspNet90.References.SystemNetRequests, global::System.Guid.Parse("a5674b6f-a6e2-4cfd-a793-bba201cfdc89")); + + /// + /// The for System.Net.Security.dll + /// + public static ReferenceInfo SystemNetSecurity => new ReferenceInfo("System.Net.Security.dll", Resources.SystemNetSecurity, AspNet90.References.SystemNetSecurity, global::System.Guid.Parse("7da0e715-58a9-438f-9430-938cb3a3a80f")); + + /// + /// The for System.Net.ServicePoint.dll + /// + public static ReferenceInfo SystemNetServicePoint => new ReferenceInfo("System.Net.ServicePoint.dll", Resources.SystemNetServicePoint, AspNet90.References.SystemNetServicePoint, global::System.Guid.Parse("942d682b-add6-4d37-8ea3-021619317daf")); + + /// + /// The for System.Net.Sockets.dll + /// + public static ReferenceInfo SystemNetSockets => new ReferenceInfo("System.Net.Sockets.dll", Resources.SystemNetSockets, AspNet90.References.SystemNetSockets, global::System.Guid.Parse("94cb87f3-2c31-452b-b0c5-1eae356ec6ef")); + + /// + /// The for System.Net.WebClient.dll + /// + public static ReferenceInfo SystemNetWebClient => new ReferenceInfo("System.Net.WebClient.dll", Resources.SystemNetWebClient, AspNet90.References.SystemNetWebClient, global::System.Guid.Parse("d43ed906-e6be-4d31-ad8b-c3f9979415f7")); + + /// + /// The for System.Net.WebHeaderCollection.dll + /// + public static ReferenceInfo SystemNetWebHeaderCollection => new ReferenceInfo("System.Net.WebHeaderCollection.dll", Resources.SystemNetWebHeaderCollection, AspNet90.References.SystemNetWebHeaderCollection, global::System.Guid.Parse("a5627a13-b062-48c8-879e-2394c8698767")); + + /// + /// The for System.Net.WebProxy.dll + /// + public static ReferenceInfo SystemNetWebProxy => new ReferenceInfo("System.Net.WebProxy.dll", Resources.SystemNetWebProxy, AspNet90.References.SystemNetWebProxy, global::System.Guid.Parse("580233b2-9269-45ed-942a-3e621d65b3ae")); + + /// + /// The for System.Net.WebSockets.Client.dll + /// + public static ReferenceInfo SystemNetWebSocketsClient => new ReferenceInfo("System.Net.WebSockets.Client.dll", Resources.SystemNetWebSocketsClient, AspNet90.References.SystemNetWebSocketsClient, global::System.Guid.Parse("9a94739b-bd14-4c80-98ac-6d6c9f7ec0aa")); + + /// + /// The for System.Net.WebSockets.dll + /// + public static ReferenceInfo SystemNetWebSockets => new ReferenceInfo("System.Net.WebSockets.dll", Resources.SystemNetWebSockets, AspNet90.References.SystemNetWebSockets, global::System.Guid.Parse("834a027e-6fe6-46a1-9193-5c1af4636883")); + + /// + /// The for System.Numerics.dll + /// + public static ReferenceInfo SystemNumerics => new ReferenceInfo("System.Numerics.dll", Resources.SystemNumerics, AspNet90.References.SystemNumerics, global::System.Guid.Parse("8109db46-ad59-4703-b5eb-ac53027d67d9")); + + /// + /// The for System.Numerics.Vectors.dll + /// + public static ReferenceInfo SystemNumericsVectors => new ReferenceInfo("System.Numerics.Vectors.dll", Resources.SystemNumericsVectors, AspNet90.References.SystemNumericsVectors, global::System.Guid.Parse("827adbc4-7177-4c64-a6a9-3658a5d3010e")); + + /// + /// The for System.ObjectModel.dll + /// + public static ReferenceInfo SystemObjectModel => new ReferenceInfo("System.ObjectModel.dll", Resources.SystemObjectModel, AspNet90.References.SystemObjectModel, global::System.Guid.Parse("b6bc8651-5ef0-409f-83b4-7d7c1bb27eec")); + + /// + /// The for System.Reflection.DispatchProxy.dll + /// + public static ReferenceInfo SystemReflectionDispatchProxy => new ReferenceInfo("System.Reflection.DispatchProxy.dll", Resources.SystemReflectionDispatchProxy, AspNet90.References.SystemReflectionDispatchProxy, global::System.Guid.Parse("c861d503-03de-45ce-89d4-46b5f8731bfc")); + + /// + /// The for System.Reflection.dll + /// + public static ReferenceInfo SystemReflection => new ReferenceInfo("System.Reflection.dll", Resources.SystemReflection, AspNet90.References.SystemReflection, global::System.Guid.Parse("d78d016a-2d2f-450f-a780-af0126583899")); + + /// + /// The for System.Reflection.Emit.dll + /// + public static ReferenceInfo SystemReflectionEmit => new ReferenceInfo("System.Reflection.Emit.dll", Resources.SystemReflectionEmit, AspNet90.References.SystemReflectionEmit, global::System.Guid.Parse("40541be0-2bea-4e25-b75a-0e758f2e1d64")); + + /// + /// The for System.Reflection.Emit.ILGeneration.dll + /// + public static ReferenceInfo SystemReflectionEmitILGeneration => new ReferenceInfo("System.Reflection.Emit.ILGeneration.dll", Resources.SystemReflectionEmitILGeneration, AspNet90.References.SystemReflectionEmitILGeneration, global::System.Guid.Parse("4f2cd109-2ace-4fca-b778-67bea7e57d6d")); + + /// + /// The for System.Reflection.Emit.Lightweight.dll + /// + public static ReferenceInfo SystemReflectionEmitLightweight => new ReferenceInfo("System.Reflection.Emit.Lightweight.dll", Resources.SystemReflectionEmitLightweight, AspNet90.References.SystemReflectionEmitLightweight, global::System.Guid.Parse("0a973423-d21a-4a9c-8061-320bb5d17fd9")); + + /// + /// The for System.Reflection.Extensions.dll + /// + public static ReferenceInfo SystemReflectionExtensions => new ReferenceInfo("System.Reflection.Extensions.dll", Resources.SystemReflectionExtensions, AspNet90.References.SystemReflectionExtensions, global::System.Guid.Parse("88fe74a5-0905-456e-8aa5-24fea335f346")); + + /// + /// The for System.Reflection.Metadata.dll + /// + public static ReferenceInfo SystemReflectionMetadata => new ReferenceInfo("System.Reflection.Metadata.dll", Resources.SystemReflectionMetadata, AspNet90.References.SystemReflectionMetadata, global::System.Guid.Parse("aef1c6ce-3290-45f6-b6de-b28433397a04")); + + /// + /// The for System.Reflection.Primitives.dll + /// + public static ReferenceInfo SystemReflectionPrimitives => new ReferenceInfo("System.Reflection.Primitives.dll", Resources.SystemReflectionPrimitives, AspNet90.References.SystemReflectionPrimitives, global::System.Guid.Parse("49ced5e0-a5bd-4b4e-8cd8-cdb8bd849e55")); + + /// + /// The for System.Reflection.TypeExtensions.dll + /// + public static ReferenceInfo SystemReflectionTypeExtensions => new ReferenceInfo("System.Reflection.TypeExtensions.dll", Resources.SystemReflectionTypeExtensions, AspNet90.References.SystemReflectionTypeExtensions, global::System.Guid.Parse("5e0a87bf-9ac4-491d-831f-42fc3a58f7ec")); + + /// + /// The for System.Resources.Reader.dll + /// + public static ReferenceInfo SystemResourcesReader => new ReferenceInfo("System.Resources.Reader.dll", Resources.SystemResourcesReader, AspNet90.References.SystemResourcesReader, global::System.Guid.Parse("860db9da-490e-4c67-8051-874ac9f6a97f")); + + /// + /// The for System.Resources.ResourceManager.dll + /// + public static ReferenceInfo SystemResourcesResourceManager => new ReferenceInfo("System.Resources.ResourceManager.dll", Resources.SystemResourcesResourceManager, AspNet90.References.SystemResourcesResourceManager, global::System.Guid.Parse("bf4f8444-b0c4-4dda-89f1-f5dbc874e753")); + + /// + /// The for System.Resources.Writer.dll + /// + public static ReferenceInfo SystemResourcesWriter => new ReferenceInfo("System.Resources.Writer.dll", Resources.SystemResourcesWriter, AspNet90.References.SystemResourcesWriter, global::System.Guid.Parse("bec8a22e-0c9a-4a7e-9df2-700417f98e1d")); + + /// + /// The for System.Runtime.CompilerServices.Unsafe.dll + /// + public static ReferenceInfo SystemRuntimeCompilerServicesUnsafe => new ReferenceInfo("System.Runtime.CompilerServices.Unsafe.dll", Resources.SystemRuntimeCompilerServicesUnsafe, AspNet90.References.SystemRuntimeCompilerServicesUnsafe, global::System.Guid.Parse("f6027126-896d-4a06-a348-f86ee2a25559")); + + /// + /// The for System.Runtime.CompilerServices.VisualC.dll + /// + public static ReferenceInfo SystemRuntimeCompilerServicesVisualC => new ReferenceInfo("System.Runtime.CompilerServices.VisualC.dll", Resources.SystemRuntimeCompilerServicesVisualC, AspNet90.References.SystemRuntimeCompilerServicesVisualC, global::System.Guid.Parse("52e79d11-0d1f-47a5-bc05-b6f459d2a9ba")); + + /// + /// The for System.Runtime.dll + /// + public static ReferenceInfo SystemRuntime => new ReferenceInfo("System.Runtime.dll", Resources.SystemRuntime, AspNet90.References.SystemRuntime, global::System.Guid.Parse("49b542d5-0038-47c6-936c-2416e1ff0b56")); + + /// + /// The for System.Runtime.Extensions.dll + /// + public static ReferenceInfo SystemRuntimeExtensions => new ReferenceInfo("System.Runtime.Extensions.dll", Resources.SystemRuntimeExtensions, AspNet90.References.SystemRuntimeExtensions, global::System.Guid.Parse("dc36206b-7114-4a12-a9e5-5a920057b546")); + + /// + /// The for System.Runtime.Handles.dll + /// + public static ReferenceInfo SystemRuntimeHandles => new ReferenceInfo("System.Runtime.Handles.dll", Resources.SystemRuntimeHandles, AspNet90.References.SystemRuntimeHandles, global::System.Guid.Parse("f33d689e-a747-48e3-b538-b61f885d6b70")); + + /// + /// The for System.Runtime.InteropServices.dll + /// + public static ReferenceInfo SystemRuntimeInteropServices => new ReferenceInfo("System.Runtime.InteropServices.dll", Resources.SystemRuntimeInteropServices, AspNet90.References.SystemRuntimeInteropServices, global::System.Guid.Parse("94a656e9-116e-484b-80e6-5883f809377f")); + + /// + /// The for System.Runtime.InteropServices.JavaScript.dll + /// + public static ReferenceInfo SystemRuntimeInteropServicesJavaScript => new ReferenceInfo("System.Runtime.InteropServices.JavaScript.dll", Resources.SystemRuntimeInteropServicesJavaScript, AspNet90.References.SystemRuntimeInteropServicesJavaScript, global::System.Guid.Parse("5cf05ad7-1e57-4d21-b308-84e67fcf25b8")); + + /// + /// The for System.Runtime.InteropServices.RuntimeInformation.dll + /// + public static ReferenceInfo SystemRuntimeInteropServicesRuntimeInformation => new ReferenceInfo("System.Runtime.InteropServices.RuntimeInformation.dll", Resources.SystemRuntimeInteropServicesRuntimeInformation, AspNet90.References.SystemRuntimeInteropServicesRuntimeInformation, global::System.Guid.Parse("9095a0f6-c0b7-4ce0-ad76-b9ccec4c85c7")); + + /// + /// The for System.Runtime.Intrinsics.dll + /// + public static ReferenceInfo SystemRuntimeIntrinsics => new ReferenceInfo("System.Runtime.Intrinsics.dll", Resources.SystemRuntimeIntrinsics, AspNet90.References.SystemRuntimeIntrinsics, global::System.Guid.Parse("2d4eea65-35c0-485f-a99b-c695d7874881")); + + /// + /// The for System.Runtime.Loader.dll + /// + public static ReferenceInfo SystemRuntimeLoader => new ReferenceInfo("System.Runtime.Loader.dll", Resources.SystemRuntimeLoader, AspNet90.References.SystemRuntimeLoader, global::System.Guid.Parse("d0eca4bc-a50e-4e45-9ffd-2648d4b35e9f")); + + /// + /// The for System.Runtime.Numerics.dll + /// + public static ReferenceInfo SystemRuntimeNumerics => new ReferenceInfo("System.Runtime.Numerics.dll", Resources.SystemRuntimeNumerics, AspNet90.References.SystemRuntimeNumerics, global::System.Guid.Parse("a4ae02d4-7267-4b2f-95ec-041430087368")); + + /// + /// The for System.Runtime.Serialization.dll + /// + public static ReferenceInfo SystemRuntimeSerialization => new ReferenceInfo("System.Runtime.Serialization.dll", Resources.SystemRuntimeSerialization, AspNet90.References.SystemRuntimeSerialization, global::System.Guid.Parse("0adc6d38-6cc7-4c88-9a59-c76fc750e3c0")); + + /// + /// The for System.Runtime.Serialization.Formatters.dll + /// + public static ReferenceInfo SystemRuntimeSerializationFormatters => new ReferenceInfo("System.Runtime.Serialization.Formatters.dll", Resources.SystemRuntimeSerializationFormatters, AspNet90.References.SystemRuntimeSerializationFormatters, global::System.Guid.Parse("2379ef2c-7a27-45a9-97f6-7b802223240a")); + + /// + /// The for System.Runtime.Serialization.Json.dll + /// + public static ReferenceInfo SystemRuntimeSerializationJson => new ReferenceInfo("System.Runtime.Serialization.Json.dll", Resources.SystemRuntimeSerializationJson, AspNet90.References.SystemRuntimeSerializationJson, global::System.Guid.Parse("e0a84081-07d0-41fa-ae9b-fb324412c81c")); + + /// + /// The for System.Runtime.Serialization.Primitives.dll + /// + public static ReferenceInfo SystemRuntimeSerializationPrimitives => new ReferenceInfo("System.Runtime.Serialization.Primitives.dll", Resources.SystemRuntimeSerializationPrimitives, AspNet90.References.SystemRuntimeSerializationPrimitives, global::System.Guid.Parse("8d7b75f1-a57f-4fc0-bad9-692725614d59")); + + /// + /// The for System.Runtime.Serialization.Xml.dll + /// + public static ReferenceInfo SystemRuntimeSerializationXml => new ReferenceInfo("System.Runtime.Serialization.Xml.dll", Resources.SystemRuntimeSerializationXml, AspNet90.References.SystemRuntimeSerializationXml, global::System.Guid.Parse("ea6676ef-2404-463c-9373-db3d649f17f2")); + + /// + /// The for System.Security.AccessControl.dll + /// + public static ReferenceInfo SystemSecurityAccessControl => new ReferenceInfo("System.Security.AccessControl.dll", Resources.SystemSecurityAccessControl, AspNet90.References.SystemSecurityAccessControl, global::System.Guid.Parse("3e228e95-70fc-4a30-944e-e36e22801c9b")); + + /// + /// The for System.Security.Claims.dll + /// + public static ReferenceInfo SystemSecurityClaims => new ReferenceInfo("System.Security.Claims.dll", Resources.SystemSecurityClaims, AspNet90.References.SystemSecurityClaims, global::System.Guid.Parse("fdb91aa8-1819-4e2e-a493-2df37becceae")); + + /// + /// The for System.Security.Cryptography.Algorithms.dll + /// + public static ReferenceInfo SystemSecurityCryptographyAlgorithms => new ReferenceInfo("System.Security.Cryptography.Algorithms.dll", Resources.SystemSecurityCryptographyAlgorithms, AspNet90.References.SystemSecurityCryptographyAlgorithms, global::System.Guid.Parse("bb6a6536-288d-4b94-9c58-2746baae2924")); + + /// + /// The for System.Security.Cryptography.Cng.dll + /// + public static ReferenceInfo SystemSecurityCryptographyCng => new ReferenceInfo("System.Security.Cryptography.Cng.dll", Resources.SystemSecurityCryptographyCng, AspNet90.References.SystemSecurityCryptographyCng, global::System.Guid.Parse("8d341aac-e867-4727-b2bd-76a56134852e")); + + /// + /// The for System.Security.Cryptography.Csp.dll + /// + public static ReferenceInfo SystemSecurityCryptographyCsp => new ReferenceInfo("System.Security.Cryptography.Csp.dll", Resources.SystemSecurityCryptographyCsp, AspNet90.References.SystemSecurityCryptographyCsp, global::System.Guid.Parse("871b6ff6-8346-400b-90fe-3cfea0a9c061")); + + /// + /// The for System.Security.Cryptography.dll + /// + public static ReferenceInfo SystemSecurityCryptography => new ReferenceInfo("System.Security.Cryptography.dll", Resources.SystemSecurityCryptography, AspNet90.References.SystemSecurityCryptography, global::System.Guid.Parse("a22f3982-de69-48fb-b526-476c598794c8")); + + /// + /// The for System.Security.Cryptography.Encoding.dll + /// + public static ReferenceInfo SystemSecurityCryptographyEncoding => new ReferenceInfo("System.Security.Cryptography.Encoding.dll", Resources.SystemSecurityCryptographyEncoding, AspNet90.References.SystemSecurityCryptographyEncoding, global::System.Guid.Parse("c75029ae-a08f-4972-8005-09ed41245da7")); + + /// + /// The for System.Security.Cryptography.OpenSsl.dll + /// + public static ReferenceInfo SystemSecurityCryptographyOpenSsl => new ReferenceInfo("System.Security.Cryptography.OpenSsl.dll", Resources.SystemSecurityCryptographyOpenSsl, AspNet90.References.SystemSecurityCryptographyOpenSsl, global::System.Guid.Parse("1b834e1d-0d6a-406d-995f-3052a775966a")); + + /// + /// The for System.Security.Cryptography.Primitives.dll + /// + public static ReferenceInfo SystemSecurityCryptographyPrimitives => new ReferenceInfo("System.Security.Cryptography.Primitives.dll", Resources.SystemSecurityCryptographyPrimitives, AspNet90.References.SystemSecurityCryptographyPrimitives, global::System.Guid.Parse("60910360-f34c-4358-acbe-c4668ee97763")); + + /// + /// The for System.Security.Cryptography.X509Certificates.dll + /// + public static ReferenceInfo SystemSecurityCryptographyX509Certificates => new ReferenceInfo("System.Security.Cryptography.X509Certificates.dll", Resources.SystemSecurityCryptographyX509Certificates, AspNet90.References.SystemSecurityCryptographyX509Certificates, global::System.Guid.Parse("a1988379-df39-4679-94fe-be0fbfe82af4")); + + /// + /// The for System.Security.dll + /// + public static ReferenceInfo SystemSecurity => new ReferenceInfo("System.Security.dll", Resources.SystemSecurity, AspNet90.References.SystemSecurity, global::System.Guid.Parse("deaaa1a8-6e43-406a-a76f-2fd012069811")); + + /// + /// The for System.Security.Principal.dll + /// + public static ReferenceInfo SystemSecurityPrincipal => new ReferenceInfo("System.Security.Principal.dll", Resources.SystemSecurityPrincipal, AspNet90.References.SystemSecurityPrincipal, global::System.Guid.Parse("ccccfc3b-b9c9-4d62-9464-70c6e48c04c9")); + + /// + /// The for System.Security.Principal.Windows.dll + /// + public static ReferenceInfo SystemSecurityPrincipalWindows => new ReferenceInfo("System.Security.Principal.Windows.dll", Resources.SystemSecurityPrincipalWindows, AspNet90.References.SystemSecurityPrincipalWindows, global::System.Guid.Parse("1923bda9-1c57-4135-9292-51db72c9a558")); + + /// + /// The for System.Security.SecureString.dll + /// + public static ReferenceInfo SystemSecuritySecureString => new ReferenceInfo("System.Security.SecureString.dll", Resources.SystemSecuritySecureString, AspNet90.References.SystemSecuritySecureString, global::System.Guid.Parse("6249e486-0a27-4a36-8269-aafc684dc998")); + + /// + /// The for System.ServiceModel.Web.dll + /// + public static ReferenceInfo SystemServiceModelWeb => new ReferenceInfo("System.ServiceModel.Web.dll", Resources.SystemServiceModelWeb, AspNet90.References.SystemServiceModelWeb, global::System.Guid.Parse("1389fe94-0a0c-46f3-a77a-2d5936abbe5d")); + + /// + /// The for System.ServiceProcess.dll + /// + public static ReferenceInfo SystemServiceProcess => new ReferenceInfo("System.ServiceProcess.dll", Resources.SystemServiceProcess, AspNet90.References.SystemServiceProcess, global::System.Guid.Parse("5416eb99-6ec8-4e6c-8330-fc0e764680d8")); + + /// + /// The for System.Text.Encoding.CodePages.dll + /// + public static ReferenceInfo SystemTextEncodingCodePages => new ReferenceInfo("System.Text.Encoding.CodePages.dll", Resources.SystemTextEncodingCodePages, AspNet90.References.SystemTextEncodingCodePages, global::System.Guid.Parse("23938989-da91-4c44-926e-fe692bb95899")); + + /// + /// The for System.Text.Encoding.dll + /// + public static ReferenceInfo SystemTextEncoding => new ReferenceInfo("System.Text.Encoding.dll", Resources.SystemTextEncoding, AspNet90.References.SystemTextEncoding, global::System.Guid.Parse("9d1c8421-dfef-497f-bfbc-e2a3fa03c097")); + + /// + /// The for System.Text.Encoding.Extensions.dll + /// + public static ReferenceInfo SystemTextEncodingExtensions => new ReferenceInfo("System.Text.Encoding.Extensions.dll", Resources.SystemTextEncodingExtensions, AspNet90.References.SystemTextEncodingExtensions, global::System.Guid.Parse("cb6e1f9f-7843-44a9-bd2a-34328cc035fa")); + + /// + /// The for System.Text.Encodings.Web.dll + /// + public static ReferenceInfo SystemTextEncodingsWeb => new ReferenceInfo("System.Text.Encodings.Web.dll", Resources.SystemTextEncodingsWeb, AspNet90.References.SystemTextEncodingsWeb, global::System.Guid.Parse("4ffb5f10-31c1-404c-a7bf-46e7a3910a3a")); + + /// + /// The for System.Text.Json.dll + /// + public static ReferenceInfo SystemTextJson => new ReferenceInfo("System.Text.Json.dll", Resources.SystemTextJson, AspNet90.References.SystemTextJson, global::System.Guid.Parse("c9e383dc-7aca-4f99-bb51-11fe1caf1194")); + + /// + /// The for System.Text.RegularExpressions.dll + /// + public static ReferenceInfo SystemTextRegularExpressions => new ReferenceInfo("System.Text.RegularExpressions.dll", Resources.SystemTextRegularExpressions, AspNet90.References.SystemTextRegularExpressions, global::System.Guid.Parse("61c2d5df-022d-4d2f-8a8a-7afd83305701")); + + /// + /// The for System.Threading.Channels.dll + /// + public static ReferenceInfo SystemThreadingChannels => new ReferenceInfo("System.Threading.Channels.dll", Resources.SystemThreadingChannels, AspNet90.References.SystemThreadingChannels, global::System.Guid.Parse("b17d29d9-c35a-4fe6-912b-67c5154f4bb0")); + + /// + /// The for System.Threading.dll + /// + public static ReferenceInfo SystemThreading => new ReferenceInfo("System.Threading.dll", Resources.SystemThreading, AspNet90.References.SystemThreading, global::System.Guid.Parse("f0c1ed84-9469-455c-a9ee-2ed241ffbaa7")); + + /// + /// The for System.Threading.Overlapped.dll + /// + public static ReferenceInfo SystemThreadingOverlapped => new ReferenceInfo("System.Threading.Overlapped.dll", Resources.SystemThreadingOverlapped, AspNet90.References.SystemThreadingOverlapped, global::System.Guid.Parse("ac9f5489-4e03-45f2-b541-01583957c58c")); + + /// + /// The for System.Threading.Tasks.Dataflow.dll + /// + public static ReferenceInfo SystemThreadingTasksDataflow => new ReferenceInfo("System.Threading.Tasks.Dataflow.dll", Resources.SystemThreadingTasksDataflow, AspNet90.References.SystemThreadingTasksDataflow, global::System.Guid.Parse("20129c67-182a-4f20-9c98-81e92c4e44b3")); + + /// + /// The for System.Threading.Tasks.dll + /// + public static ReferenceInfo SystemThreadingTasks => new ReferenceInfo("System.Threading.Tasks.dll", Resources.SystemThreadingTasks, AspNet90.References.SystemThreadingTasks, global::System.Guid.Parse("4f2c54a6-1313-4644-9695-99f32ea8201b")); + + /// + /// The for System.Threading.Tasks.Extensions.dll + /// + public static ReferenceInfo SystemThreadingTasksExtensions => new ReferenceInfo("System.Threading.Tasks.Extensions.dll", Resources.SystemThreadingTasksExtensions, AspNet90.References.SystemThreadingTasksExtensions, global::System.Guid.Parse("df76a5c0-eff9-4d3b-a6f4-6e48a9cf8b25")); + + /// + /// The for System.Threading.Tasks.Parallel.dll + /// + public static ReferenceInfo SystemThreadingTasksParallel => new ReferenceInfo("System.Threading.Tasks.Parallel.dll", Resources.SystemThreadingTasksParallel, AspNet90.References.SystemThreadingTasksParallel, global::System.Guid.Parse("d5c9ebd4-7246-44bb-8272-40061a17cff8")); + + /// + /// The for System.Threading.Thread.dll + /// + public static ReferenceInfo SystemThreadingThread => new ReferenceInfo("System.Threading.Thread.dll", Resources.SystemThreadingThread, AspNet90.References.SystemThreadingThread, global::System.Guid.Parse("a65a6bc2-1911-4148-8a89-54922dee6c06")); + + /// + /// The for System.Threading.ThreadPool.dll + /// + public static ReferenceInfo SystemThreadingThreadPool => new ReferenceInfo("System.Threading.ThreadPool.dll", Resources.SystemThreadingThreadPool, AspNet90.References.SystemThreadingThreadPool, global::System.Guid.Parse("ad6b14dd-cf3d-4abd-a1a3-1c679284673c")); + + /// + /// The for System.Threading.Timer.dll + /// + public static ReferenceInfo SystemThreadingTimer => new ReferenceInfo("System.Threading.Timer.dll", Resources.SystemThreadingTimer, AspNet90.References.SystemThreadingTimer, global::System.Guid.Parse("7367be03-6a60-49d1-8f76-e5647a3a4f4d")); + + /// + /// The for System.Transactions.dll + /// + public static ReferenceInfo SystemTransactions => new ReferenceInfo("System.Transactions.dll", Resources.SystemTransactions, AspNet90.References.SystemTransactions, global::System.Guid.Parse("94080a81-7506-44db-81d0-e11708d42beb")); + + /// + /// The for System.Transactions.Local.dll + /// + public static ReferenceInfo SystemTransactionsLocal => new ReferenceInfo("System.Transactions.Local.dll", Resources.SystemTransactionsLocal, AspNet90.References.SystemTransactionsLocal, global::System.Guid.Parse("92190889-e4f4-46f6-9703-89b1978a8664")); + + /// + /// The for System.ValueTuple.dll + /// + public static ReferenceInfo SystemValueTuple => new ReferenceInfo("System.ValueTuple.dll", Resources.SystemValueTuple, AspNet90.References.SystemValueTuple, global::System.Guid.Parse("98ca2134-7dc7-4b47-99e5-48c2b9246f85")); + + /// + /// The for System.Web.dll + /// + public static ReferenceInfo SystemWeb => new ReferenceInfo("System.Web.dll", Resources.SystemWeb, AspNet90.References.SystemWeb, global::System.Guid.Parse("06d730af-b88c-41db-b425-776e22a94cc1")); + + /// + /// The for System.Web.HttpUtility.dll + /// + public static ReferenceInfo SystemWebHttpUtility => new ReferenceInfo("System.Web.HttpUtility.dll", Resources.SystemWebHttpUtility, AspNet90.References.SystemWebHttpUtility, global::System.Guid.Parse("c69ba051-65a5-4397-838a-bdb17fb9c71a")); + + /// + /// The for System.Windows.dll + /// + public static ReferenceInfo SystemWindows => new ReferenceInfo("System.Windows.dll", Resources.SystemWindows, AspNet90.References.SystemWindows, global::System.Guid.Parse("b8da6509-bda4-423b-8e78-8b366cb15c88")); + + /// + /// The for System.Xml.dll + /// + public static ReferenceInfo SystemXml => new ReferenceInfo("System.Xml.dll", Resources.SystemXml, AspNet90.References.SystemXml, global::System.Guid.Parse("a49fa3f4-9f9b-4191-8330-a48bcd5625d6")); + + /// + /// The for System.Xml.Linq.dll + /// + public static ReferenceInfo SystemXmlLinq => new ReferenceInfo("System.Xml.Linq.dll", Resources.SystemXmlLinq, AspNet90.References.SystemXmlLinq, global::System.Guid.Parse("cbc7391c-4d7e-4346-b86a-72a3067db604")); + + /// + /// The for System.Xml.ReaderWriter.dll + /// + public static ReferenceInfo SystemXmlReaderWriter => new ReferenceInfo("System.Xml.ReaderWriter.dll", Resources.SystemXmlReaderWriter, AspNet90.References.SystemXmlReaderWriter, global::System.Guid.Parse("488f57b3-c2bd-4eab-b720-786961d28020")); + + /// + /// The for System.Xml.Serialization.dll + /// + public static ReferenceInfo SystemXmlSerialization => new ReferenceInfo("System.Xml.Serialization.dll", Resources.SystemXmlSerialization, AspNet90.References.SystemXmlSerialization, global::System.Guid.Parse("796af0ad-002f-4772-a554-af463db9fe7c")); + + /// + /// The for System.Xml.XDocument.dll + /// + public static ReferenceInfo SystemXmlXDocument => new ReferenceInfo("System.Xml.XDocument.dll", Resources.SystemXmlXDocument, AspNet90.References.SystemXmlXDocument, global::System.Guid.Parse("02695430-631e-416a-a2ba-7f952081f8a1")); + + /// + /// The for System.Xml.XmlDocument.dll + /// + public static ReferenceInfo SystemXmlXmlDocument => new ReferenceInfo("System.Xml.XmlDocument.dll", Resources.SystemXmlXmlDocument, AspNet90.References.SystemXmlXmlDocument, global::System.Guid.Parse("d371b4a8-7144-4c80-8ac9-b3ae80440cc9")); + + /// + /// The for System.Xml.XmlSerializer.dll + /// + public static ReferenceInfo SystemXmlXmlSerializer => new ReferenceInfo("System.Xml.XmlSerializer.dll", Resources.SystemXmlXmlSerializer, AspNet90.References.SystemXmlXmlSerializer, global::System.Guid.Parse("d45a417d-444f-4b53-8aaf-3f840e49779f")); + + /// + /// The for System.Xml.XPath.dll + /// + public static ReferenceInfo SystemXmlXPath => new ReferenceInfo("System.Xml.XPath.dll", Resources.SystemXmlXPath, AspNet90.References.SystemXmlXPath, global::System.Guid.Parse("928d6dfb-c982-4bc6-86b8-26fa12492e53")); + + /// + /// The for System.Xml.XPath.XDocument.dll + /// + public static ReferenceInfo SystemXmlXPathXDocument => new ReferenceInfo("System.Xml.XPath.XDocument.dll", Resources.SystemXmlXPathXDocument, AspNet90.References.SystemXmlXPathXDocument, global::System.Guid.Parse("2205c021-5b38-46da-80b4-8ae5c59436f7")); + + /// + /// The for WindowsBase.dll + /// + public static ReferenceInfo WindowsBase => new ReferenceInfo("WindowsBase.dll", Resources.WindowsBase, AspNet90.References.WindowsBase, global::System.Guid.Parse("d41258d5-ac57-4fd8-a31f-8f98c90f6929")); + + /// + /// The for Microsoft.AspNetCore.Antiforgery.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAntiforgery => new ReferenceInfo("Microsoft.AspNetCore.Antiforgery.dll", Resources.MicrosoftAspNetCoreAntiforgery, AspNet90.References.MicrosoftAspNetCoreAntiforgery, global::System.Guid.Parse("d5518aa7-ef2f-4049-9be0-a45778b476a8")); + + /// + /// The for Microsoft.AspNetCore.Authentication.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthenticationAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Authentication.Abstractions.dll", Resources.MicrosoftAspNetCoreAuthenticationAbstractions, AspNet90.References.MicrosoftAspNetCoreAuthenticationAbstractions, global::System.Guid.Parse("a19f3c12-8077-4b36-acff-4aa0bbc529e4")); + + /// + /// The for Microsoft.AspNetCore.Authentication.BearerToken.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthenticationBearerToken => new ReferenceInfo("Microsoft.AspNetCore.Authentication.BearerToken.dll", Resources.MicrosoftAspNetCoreAuthenticationBearerToken, AspNet90.References.MicrosoftAspNetCoreAuthenticationBearerToken, global::System.Guid.Parse("4a0bc809-f0a8-41d3-afc8-06567b30b347")); + + /// + /// The for Microsoft.AspNetCore.Authentication.Cookies.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthenticationCookies => new ReferenceInfo("Microsoft.AspNetCore.Authentication.Cookies.dll", Resources.MicrosoftAspNetCoreAuthenticationCookies, AspNet90.References.MicrosoftAspNetCoreAuthenticationCookies, global::System.Guid.Parse("b4356d27-ccd8-423f-bd99-d23e3b984339")); + + /// + /// The for Microsoft.AspNetCore.Authentication.Core.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthenticationCore => new ReferenceInfo("Microsoft.AspNetCore.Authentication.Core.dll", Resources.MicrosoftAspNetCoreAuthenticationCore, AspNet90.References.MicrosoftAspNetCoreAuthenticationCore, global::System.Guid.Parse("602db80e-c22f-4cad-b127-739210837125")); + + /// + /// The for Microsoft.AspNetCore.Authentication.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthentication => new ReferenceInfo("Microsoft.AspNetCore.Authentication.dll", Resources.MicrosoftAspNetCoreAuthentication, AspNet90.References.MicrosoftAspNetCoreAuthentication, global::System.Guid.Parse("5922c11f-a824-4617-b724-1bcb5747c3a1")); + + /// + /// The for Microsoft.AspNetCore.Authentication.OAuth.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthenticationOAuth => new ReferenceInfo("Microsoft.AspNetCore.Authentication.OAuth.dll", Resources.MicrosoftAspNetCoreAuthenticationOAuth, AspNet90.References.MicrosoftAspNetCoreAuthenticationOAuth, global::System.Guid.Parse("20934635-07d4-4f3d-ac6b-58a405d6ec21")); + + /// + /// The for Microsoft.AspNetCore.Authorization.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthorization => new ReferenceInfo("Microsoft.AspNetCore.Authorization.dll", Resources.MicrosoftAspNetCoreAuthorization, AspNet90.References.MicrosoftAspNetCoreAuthorization, global::System.Guid.Parse("a7cc12ef-af6e-4352-a319-2bceee75b0e9")); + + /// + /// The for Microsoft.AspNetCore.Authorization.Policy.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreAuthorizationPolicy => new ReferenceInfo("Microsoft.AspNetCore.Authorization.Policy.dll", Resources.MicrosoftAspNetCoreAuthorizationPolicy, AspNet90.References.MicrosoftAspNetCoreAuthorizationPolicy, global::System.Guid.Parse("161d6e37-e4d3-4c4c-ae43-8d07b820a52f")); + + /// + /// The for Microsoft.AspNetCore.Components.Authorization.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreComponentsAuthorization => new ReferenceInfo("Microsoft.AspNetCore.Components.Authorization.dll", Resources.MicrosoftAspNetCoreComponentsAuthorization, AspNet90.References.MicrosoftAspNetCoreComponentsAuthorization, global::System.Guid.Parse("1597be5f-c5d8-4238-925c-f93622127459")); + + /// + /// The for Microsoft.AspNetCore.Components.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreComponents => new ReferenceInfo("Microsoft.AspNetCore.Components.dll", Resources.MicrosoftAspNetCoreComponents, AspNet90.References.MicrosoftAspNetCoreComponents, global::System.Guid.Parse("b530f0cf-603a-4e1d-bc31-a8a6f73e9a7a")); + + /// + /// The for Microsoft.AspNetCore.Components.Endpoints.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreComponentsEndpoints => new ReferenceInfo("Microsoft.AspNetCore.Components.Endpoints.dll", Resources.MicrosoftAspNetCoreComponentsEndpoints, AspNet90.References.MicrosoftAspNetCoreComponentsEndpoints, global::System.Guid.Parse("809eeb07-fd71-4426-9124-cca14c771aac")); + + /// + /// The for Microsoft.AspNetCore.Components.Forms.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreComponentsForms => new ReferenceInfo("Microsoft.AspNetCore.Components.Forms.dll", Resources.MicrosoftAspNetCoreComponentsForms, AspNet90.References.MicrosoftAspNetCoreComponentsForms, global::System.Guid.Parse("87456b96-464e-45d9-950b-31f7849ed267")); + + /// + /// The for Microsoft.AspNetCore.Components.Server.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreComponentsServer => new ReferenceInfo("Microsoft.AspNetCore.Components.Server.dll", Resources.MicrosoftAspNetCoreComponentsServer, AspNet90.References.MicrosoftAspNetCoreComponentsServer, global::System.Guid.Parse("7132da58-a16c-42ba-9300-91c29aee9a3d")); + + /// + /// The for Microsoft.AspNetCore.Components.Web.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreComponentsWeb => new ReferenceInfo("Microsoft.AspNetCore.Components.Web.dll", Resources.MicrosoftAspNetCoreComponentsWeb, AspNet90.References.MicrosoftAspNetCoreComponentsWeb, global::System.Guid.Parse("56d60760-c22a-4fb6-9b6f-550316c5f103")); + + /// + /// The for Microsoft.AspNetCore.Connections.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreConnectionsAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Connections.Abstractions.dll", Resources.MicrosoftAspNetCoreConnectionsAbstractions, AspNet90.References.MicrosoftAspNetCoreConnectionsAbstractions, global::System.Guid.Parse("208274e3-45f8-4a16-b889-f0d532dcc279")); + + /// + /// The for Microsoft.AspNetCore.CookiePolicy.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreCookiePolicy => new ReferenceInfo("Microsoft.AspNetCore.CookiePolicy.dll", Resources.MicrosoftAspNetCoreCookiePolicy, AspNet90.References.MicrosoftAspNetCoreCookiePolicy, global::System.Guid.Parse("0526a3d8-11e2-47b6-ae8a-ba53ce36ed4e")); + + /// + /// The for Microsoft.AspNetCore.Cors.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreCors => new ReferenceInfo("Microsoft.AspNetCore.Cors.dll", Resources.MicrosoftAspNetCoreCors, AspNet90.References.MicrosoftAspNetCoreCors, global::System.Guid.Parse("27626b0c-5c34-47f8-8b6b-73375baaa0d5")); + + /// + /// The for Microsoft.AspNetCore.Cryptography.Internal.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreCryptographyInternal => new ReferenceInfo("Microsoft.AspNetCore.Cryptography.Internal.dll", Resources.MicrosoftAspNetCoreCryptographyInternal, AspNet90.References.MicrosoftAspNetCoreCryptographyInternal, global::System.Guid.Parse("86bf9da6-dad6-45a7-bb35-aaa03cffafa6")); + + /// + /// The for Microsoft.AspNetCore.Cryptography.KeyDerivation.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreCryptographyKeyDerivation => new ReferenceInfo("Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", Resources.MicrosoftAspNetCoreCryptographyKeyDerivation, AspNet90.References.MicrosoftAspNetCoreCryptographyKeyDerivation, global::System.Guid.Parse("ba965a35-4c88-4a5f-a632-40bc166c6ea9")); + + /// + /// The for Microsoft.AspNetCore.DataProtection.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreDataProtectionAbstractions => new ReferenceInfo("Microsoft.AspNetCore.DataProtection.Abstractions.dll", Resources.MicrosoftAspNetCoreDataProtectionAbstractions, AspNet90.References.MicrosoftAspNetCoreDataProtectionAbstractions, global::System.Guid.Parse("653cf26c-4a95-4584-be31-80e195cc5fdf")); + + /// + /// The for Microsoft.AspNetCore.DataProtection.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreDataProtection => new ReferenceInfo("Microsoft.AspNetCore.DataProtection.dll", Resources.MicrosoftAspNetCoreDataProtection, AspNet90.References.MicrosoftAspNetCoreDataProtection, global::System.Guid.Parse("d23ff403-d570-48f4-93f7-1efdc1a346b2")); + + /// + /// The for Microsoft.AspNetCore.DataProtection.Extensions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreDataProtectionExtensions => new ReferenceInfo("Microsoft.AspNetCore.DataProtection.Extensions.dll", Resources.MicrosoftAspNetCoreDataProtectionExtensions, AspNet90.References.MicrosoftAspNetCoreDataProtectionExtensions, global::System.Guid.Parse("86cfc0d7-5e93-44a8-9130-e6c6aaf41398")); + + /// + /// The for Microsoft.AspNetCore.Diagnostics.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreDiagnosticsAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Diagnostics.Abstractions.dll", Resources.MicrosoftAspNetCoreDiagnosticsAbstractions, AspNet90.References.MicrosoftAspNetCoreDiagnosticsAbstractions, global::System.Guid.Parse("4f794efc-a354-4214-9287-32237e966052")); + + /// + /// The for Microsoft.AspNetCore.Diagnostics.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreDiagnostics => new ReferenceInfo("Microsoft.AspNetCore.Diagnostics.dll", Resources.MicrosoftAspNetCoreDiagnostics, AspNet90.References.MicrosoftAspNetCoreDiagnostics, global::System.Guid.Parse("dfeec2a6-b013-4aba-9011-1883bc857669")); + + /// + /// The for Microsoft.AspNetCore.Diagnostics.HealthChecks.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreDiagnosticsHealthChecks => new ReferenceInfo("Microsoft.AspNetCore.Diagnostics.HealthChecks.dll", Resources.MicrosoftAspNetCoreDiagnosticsHealthChecks, AspNet90.References.MicrosoftAspNetCoreDiagnosticsHealthChecks, global::System.Guid.Parse("f24f3b22-5725-4f94-bac8-4f8f5c522dfa")); + + /// + /// The for Microsoft.AspNetCore.dll + /// + public static ReferenceInfo MicrosoftAspNetCore => new ReferenceInfo("Microsoft.AspNetCore.dll", Resources.MicrosoftAspNetCore, AspNet90.References.MicrosoftAspNetCore, global::System.Guid.Parse("d70c8a27-08e7-482b-a87d-24b13a4c1e53")); + + /// + /// The for Microsoft.AspNetCore.HostFiltering.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHostFiltering => new ReferenceInfo("Microsoft.AspNetCore.HostFiltering.dll", Resources.MicrosoftAspNetCoreHostFiltering, AspNet90.References.MicrosoftAspNetCoreHostFiltering, global::System.Guid.Parse("53869bb3-57b7-4f6b-8e99-798a755233ba")); + + /// + /// The for Microsoft.AspNetCore.Hosting.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHostingAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Hosting.Abstractions.dll", Resources.MicrosoftAspNetCoreHostingAbstractions, AspNet90.References.MicrosoftAspNetCoreHostingAbstractions, global::System.Guid.Parse("2a614e81-642e-47ac-bb6c-877a9331048d")); + + /// + /// The for Microsoft.AspNetCore.Hosting.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHosting => new ReferenceInfo("Microsoft.AspNetCore.Hosting.dll", Resources.MicrosoftAspNetCoreHosting, AspNet90.References.MicrosoftAspNetCoreHosting, global::System.Guid.Parse("34dabd2a-3a1b-425a-910b-494eb0e7f32f")); + + /// + /// The for Microsoft.AspNetCore.Hosting.Server.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHostingServerAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", Resources.MicrosoftAspNetCoreHostingServerAbstractions, AspNet90.References.MicrosoftAspNetCoreHostingServerAbstractions, global::System.Guid.Parse("c1fcc7d6-a9ef-4234-a994-aedaf870fabd")); + + /// + /// The for Microsoft.AspNetCore.Html.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHtmlAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Html.Abstractions.dll", Resources.MicrosoftAspNetCoreHtmlAbstractions, AspNet90.References.MicrosoftAspNetCoreHtmlAbstractions, global::System.Guid.Parse("33930bc4-7f93-44e2-ac3b-825b9e22a93a")); + + /// + /// The for Microsoft.AspNetCore.Http.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Http.Abstractions.dll", Resources.MicrosoftAspNetCoreHttpAbstractions, AspNet90.References.MicrosoftAspNetCoreHttpAbstractions, global::System.Guid.Parse("ffe2316f-f538-4e50-9f40-c7c4feb5727a")); + + /// + /// The for Microsoft.AspNetCore.Http.Connections.Common.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpConnectionsCommon => new ReferenceInfo("Microsoft.AspNetCore.Http.Connections.Common.dll", Resources.MicrosoftAspNetCoreHttpConnectionsCommon, AspNet90.References.MicrosoftAspNetCoreHttpConnectionsCommon, global::System.Guid.Parse("b9a02481-aea5-4c14-9ca4-6c59db74d8ce")); + + /// + /// The for Microsoft.AspNetCore.Http.Connections.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpConnections => new ReferenceInfo("Microsoft.AspNetCore.Http.Connections.dll", Resources.MicrosoftAspNetCoreHttpConnections, AspNet90.References.MicrosoftAspNetCoreHttpConnections, global::System.Guid.Parse("7d762a34-0d1d-465f-8398-a54f0bb92b86")); + + /// + /// The for Microsoft.AspNetCore.Http.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttp => new ReferenceInfo("Microsoft.AspNetCore.Http.dll", Resources.MicrosoftAspNetCoreHttp, AspNet90.References.MicrosoftAspNetCoreHttp, global::System.Guid.Parse("8d0d8b4c-5c72-40ce-ba53-387718e8ef3d")); + + /// + /// The for Microsoft.AspNetCore.Http.Extensions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpExtensions => new ReferenceInfo("Microsoft.AspNetCore.Http.Extensions.dll", Resources.MicrosoftAspNetCoreHttpExtensions, AspNet90.References.MicrosoftAspNetCoreHttpExtensions, global::System.Guid.Parse("35265184-a044-4c8e-963f-5874934ba4d3")); + + /// + /// The for Microsoft.AspNetCore.Http.Features.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpFeatures => new ReferenceInfo("Microsoft.AspNetCore.Http.Features.dll", Resources.MicrosoftAspNetCoreHttpFeatures, AspNet90.References.MicrosoftAspNetCoreHttpFeatures, global::System.Guid.Parse("1e867a4a-7f8e-4206-a118-db262297f3b7")); + + /// + /// The for Microsoft.AspNetCore.Http.Results.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpResults => new ReferenceInfo("Microsoft.AspNetCore.Http.Results.dll", Resources.MicrosoftAspNetCoreHttpResults, AspNet90.References.MicrosoftAspNetCoreHttpResults, global::System.Guid.Parse("5e4cd12e-6842-406e-ac20-1ede5698a64e")); + + /// + /// The for Microsoft.AspNetCore.HttpLogging.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpLogging => new ReferenceInfo("Microsoft.AspNetCore.HttpLogging.dll", Resources.MicrosoftAspNetCoreHttpLogging, AspNet90.References.MicrosoftAspNetCoreHttpLogging, global::System.Guid.Parse("2cde212b-4341-4c38-b6a0-00f0dded0a78")); + + /// + /// The for Microsoft.AspNetCore.HttpOverrides.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpOverrides => new ReferenceInfo("Microsoft.AspNetCore.HttpOverrides.dll", Resources.MicrosoftAspNetCoreHttpOverrides, AspNet90.References.MicrosoftAspNetCoreHttpOverrides, global::System.Guid.Parse("0468540b-2fa1-4c76-b3fc-915a57f2ead7")); + + /// + /// The for Microsoft.AspNetCore.HttpsPolicy.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreHttpsPolicy => new ReferenceInfo("Microsoft.AspNetCore.HttpsPolicy.dll", Resources.MicrosoftAspNetCoreHttpsPolicy, AspNet90.References.MicrosoftAspNetCoreHttpsPolicy, global::System.Guid.Parse("cada973c-b0e8-4585-86ab-146757ec9d13")); + + /// + /// The for Microsoft.AspNetCore.Identity.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreIdentity => new ReferenceInfo("Microsoft.AspNetCore.Identity.dll", Resources.MicrosoftAspNetCoreIdentity, AspNet90.References.MicrosoftAspNetCoreIdentity, global::System.Guid.Parse("f7e773b3-fdd2-4b39-aecd-d162299a5d53")); + + /// + /// The for Microsoft.AspNetCore.Localization.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreLocalization => new ReferenceInfo("Microsoft.AspNetCore.Localization.dll", Resources.MicrosoftAspNetCoreLocalization, AspNet90.References.MicrosoftAspNetCoreLocalization, global::System.Guid.Parse("3b2d7043-5b30-4c3e-ade6-b49c9ec02fcf")); + + /// + /// The for Microsoft.AspNetCore.Localization.Routing.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreLocalizationRouting => new ReferenceInfo("Microsoft.AspNetCore.Localization.Routing.dll", Resources.MicrosoftAspNetCoreLocalizationRouting, AspNet90.References.MicrosoftAspNetCoreLocalizationRouting, global::System.Guid.Parse("a31323a7-ba0f-44a8-8c46-a16d4b5cc938")); + + /// + /// The for Microsoft.AspNetCore.Metadata.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMetadata => new ReferenceInfo("Microsoft.AspNetCore.Metadata.dll", Resources.MicrosoftAspNetCoreMetadata, AspNet90.References.MicrosoftAspNetCoreMetadata, global::System.Guid.Parse("13c8adc0-373f-45c7-9577-3b65c3e8cff3")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Abstractions.dll", Resources.MicrosoftAspNetCoreMvcAbstractions, AspNet90.References.MicrosoftAspNetCoreMvcAbstractions, global::System.Guid.Parse("311c256f-eab9-4083-a8d9-0a616729f938")); + + /// + /// The for Microsoft.AspNetCore.Mvc.ApiExplorer.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcApiExplorer => new ReferenceInfo("Microsoft.AspNetCore.Mvc.ApiExplorer.dll", Resources.MicrosoftAspNetCoreMvcApiExplorer, AspNet90.References.MicrosoftAspNetCoreMvcApiExplorer, global::System.Guid.Parse("7556fa32-0cf0-46f7-972f-686cd3b3072c")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Core.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcCore => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Core.dll", Resources.MicrosoftAspNetCoreMvcCore, AspNet90.References.MicrosoftAspNetCoreMvcCore, global::System.Guid.Parse("91a77de7-f65f-459e-a135-487f07db34fe")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Cors.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcCors => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Cors.dll", Resources.MicrosoftAspNetCoreMvcCors, AspNet90.References.MicrosoftAspNetCoreMvcCors, global::System.Guid.Parse("063c70dd-7e2e-47b0-b49f-e87f792a3df4")); + + /// + /// The for Microsoft.AspNetCore.Mvc.DataAnnotations.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcDataAnnotations => new ReferenceInfo("Microsoft.AspNetCore.Mvc.DataAnnotations.dll", Resources.MicrosoftAspNetCoreMvcDataAnnotations, AspNet90.References.MicrosoftAspNetCoreMvcDataAnnotations, global::System.Guid.Parse("f4f8ba0a-7939-46c5-9ef1-0b697300fb99")); + + /// + /// The for Microsoft.AspNetCore.Mvc.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvc => new ReferenceInfo("Microsoft.AspNetCore.Mvc.dll", Resources.MicrosoftAspNetCoreMvc, AspNet90.References.MicrosoftAspNetCoreMvc, global::System.Guid.Parse("66ddecde-29b5-46ce-9874-245a160c27ae")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Formatters.Json.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcFormattersJson => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Formatters.Json.dll", Resources.MicrosoftAspNetCoreMvcFormattersJson, AspNet90.References.MicrosoftAspNetCoreMvcFormattersJson, global::System.Guid.Parse("d52d4074-046f-47a7-8dfb-d1a7f2bff84f")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Formatters.Xml.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcFormattersXml => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Formatters.Xml.dll", Resources.MicrosoftAspNetCoreMvcFormattersXml, AspNet90.References.MicrosoftAspNetCoreMvcFormattersXml, global::System.Guid.Parse("254f210d-609a-418f-8a11-6d37315bf44f")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Localization.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcLocalization => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Localization.dll", Resources.MicrosoftAspNetCoreMvcLocalization, AspNet90.References.MicrosoftAspNetCoreMvcLocalization, global::System.Guid.Parse("93abf05b-4264-4d67-a163-63f5e3063436")); + + /// + /// The for Microsoft.AspNetCore.Mvc.Razor.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcRazor => new ReferenceInfo("Microsoft.AspNetCore.Mvc.Razor.dll", Resources.MicrosoftAspNetCoreMvcRazor, AspNet90.References.MicrosoftAspNetCoreMvcRazor, global::System.Guid.Parse("aeb6a59f-0162-4488-b04b-f8e74aa71f1e")); + + /// + /// The for Microsoft.AspNetCore.Mvc.RazorPages.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcRazorPages => new ReferenceInfo("Microsoft.AspNetCore.Mvc.RazorPages.dll", Resources.MicrosoftAspNetCoreMvcRazorPages, AspNet90.References.MicrosoftAspNetCoreMvcRazorPages, global::System.Guid.Parse("3d61c600-feed-4918-ad8f-c7b3d7cf1351")); + + /// + /// The for Microsoft.AspNetCore.Mvc.TagHelpers.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcTagHelpers => new ReferenceInfo("Microsoft.AspNetCore.Mvc.TagHelpers.dll", Resources.MicrosoftAspNetCoreMvcTagHelpers, AspNet90.References.MicrosoftAspNetCoreMvcTagHelpers, global::System.Guid.Parse("5d8cf858-19de-4a57-b46c-a30931827d8b")); + + /// + /// The for Microsoft.AspNetCore.Mvc.ViewFeatures.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreMvcViewFeatures => new ReferenceInfo("Microsoft.AspNetCore.Mvc.ViewFeatures.dll", Resources.MicrosoftAspNetCoreMvcViewFeatures, AspNet90.References.MicrosoftAspNetCoreMvcViewFeatures, global::System.Guid.Parse("5ad6d1d2-30da-49d6-95e3-29f87bb49d15")); + + /// + /// The for Microsoft.AspNetCore.OutputCaching.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreOutputCaching => new ReferenceInfo("Microsoft.AspNetCore.OutputCaching.dll", Resources.MicrosoftAspNetCoreOutputCaching, AspNet90.References.MicrosoftAspNetCoreOutputCaching, global::System.Guid.Parse("d0dbb4e2-837d-4eb5-a9c5-ef83927ac276")); + + /// + /// The for Microsoft.AspNetCore.RateLimiting.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRateLimiting => new ReferenceInfo("Microsoft.AspNetCore.RateLimiting.dll", Resources.MicrosoftAspNetCoreRateLimiting, AspNet90.References.MicrosoftAspNetCoreRateLimiting, global::System.Guid.Parse("56e0431c-a26e-4933-aa35-485a3dd4e770")); + + /// + /// The for Microsoft.AspNetCore.Razor.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRazor => new ReferenceInfo("Microsoft.AspNetCore.Razor.dll", Resources.MicrosoftAspNetCoreRazor, AspNet90.References.MicrosoftAspNetCoreRazor, global::System.Guid.Parse("21572127-c651-40a9-826b-a91538e9b928")); + + /// + /// The for Microsoft.AspNetCore.Razor.Runtime.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRazorRuntime => new ReferenceInfo("Microsoft.AspNetCore.Razor.Runtime.dll", Resources.MicrosoftAspNetCoreRazorRuntime, AspNet90.References.MicrosoftAspNetCoreRazorRuntime, global::System.Guid.Parse("e99e7764-30f5-4071-b377-ccadb6024090")); + + /// + /// The for Microsoft.AspNetCore.RequestDecompression.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRequestDecompression => new ReferenceInfo("Microsoft.AspNetCore.RequestDecompression.dll", Resources.MicrosoftAspNetCoreRequestDecompression, AspNet90.References.MicrosoftAspNetCoreRequestDecompression, global::System.Guid.Parse("14c25fdc-4ce8-497a-adcd-a1ccf3b79b94")); + + /// + /// The for Microsoft.AspNetCore.ResponseCaching.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreResponseCachingAbstractions => new ReferenceInfo("Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", Resources.MicrosoftAspNetCoreResponseCachingAbstractions, AspNet90.References.MicrosoftAspNetCoreResponseCachingAbstractions, global::System.Guid.Parse("ff7e1a51-3699-4bc1-b6e2-c9ec3f51ee62")); + + /// + /// The for Microsoft.AspNetCore.ResponseCaching.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreResponseCaching => new ReferenceInfo("Microsoft.AspNetCore.ResponseCaching.dll", Resources.MicrosoftAspNetCoreResponseCaching, AspNet90.References.MicrosoftAspNetCoreResponseCaching, global::System.Guid.Parse("2c258031-4b33-49ea-92b4-958989d46d86")); + + /// + /// The for Microsoft.AspNetCore.ResponseCompression.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreResponseCompression => new ReferenceInfo("Microsoft.AspNetCore.ResponseCompression.dll", Resources.MicrosoftAspNetCoreResponseCompression, AspNet90.References.MicrosoftAspNetCoreResponseCompression, global::System.Guid.Parse("12212e6c-e087-4a28-bc32-ac2e73f8477e")); + + /// + /// The for Microsoft.AspNetCore.Rewrite.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRewrite => new ReferenceInfo("Microsoft.AspNetCore.Rewrite.dll", Resources.MicrosoftAspNetCoreRewrite, AspNet90.References.MicrosoftAspNetCoreRewrite, global::System.Guid.Parse("57d1e825-6967-407f-add4-fd7bce00962f")); + + /// + /// The for Microsoft.AspNetCore.Routing.Abstractions.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRoutingAbstractions => new ReferenceInfo("Microsoft.AspNetCore.Routing.Abstractions.dll", Resources.MicrosoftAspNetCoreRoutingAbstractions, AspNet90.References.MicrosoftAspNetCoreRoutingAbstractions, global::System.Guid.Parse("6999d779-bd46-4257-8e96-b249901eba26")); + + /// + /// The for Microsoft.AspNetCore.Routing.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreRouting => new ReferenceInfo("Microsoft.AspNetCore.Routing.dll", Resources.MicrosoftAspNetCoreRouting, AspNet90.References.MicrosoftAspNetCoreRouting, global::System.Guid.Parse("4ed87c45-892b-4452-8815-af8744c19b96")); + + /// + /// The for Microsoft.AspNetCore.Server.HttpSys.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerHttpSys => new ReferenceInfo("Microsoft.AspNetCore.Server.HttpSys.dll", Resources.MicrosoftAspNetCoreServerHttpSys, AspNet90.References.MicrosoftAspNetCoreServerHttpSys, global::System.Guid.Parse("a3cdfbd5-93d3-441d-a7b9-2288229398c6")); + + /// + /// The for Microsoft.AspNetCore.Server.IIS.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerIIS => new ReferenceInfo("Microsoft.AspNetCore.Server.IIS.dll", Resources.MicrosoftAspNetCoreServerIIS, AspNet90.References.MicrosoftAspNetCoreServerIIS, global::System.Guid.Parse("5c3a0012-39f1-4368-be56-89fc6ab21402")); + + /// + /// The for Microsoft.AspNetCore.Server.IISIntegration.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerIISIntegration => new ReferenceInfo("Microsoft.AspNetCore.Server.IISIntegration.dll", Resources.MicrosoftAspNetCoreServerIISIntegration, AspNet90.References.MicrosoftAspNetCoreServerIISIntegration, global::System.Guid.Parse("5003fced-d9df-445d-916b-16ca655f45a4")); + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Core.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerKestrelCore => new ReferenceInfo("Microsoft.AspNetCore.Server.Kestrel.Core.dll", Resources.MicrosoftAspNetCoreServerKestrelCore, AspNet90.References.MicrosoftAspNetCoreServerKestrelCore, global::System.Guid.Parse("a66916f2-ab5a-485e-9a38-d39a553c560a")); + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerKestrel => new ReferenceInfo("Microsoft.AspNetCore.Server.Kestrel.dll", Resources.MicrosoftAspNetCoreServerKestrel, AspNet90.References.MicrosoftAspNetCoreServerKestrel, global::System.Guid.Parse("a4be7e38-1e75-4c61-984b-728dadf18ce9")); + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerKestrelTransportNamedPipes => new ReferenceInfo("Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll", Resources.MicrosoftAspNetCoreServerKestrelTransportNamedPipes, AspNet90.References.MicrosoftAspNetCoreServerKestrelTransportNamedPipes, global::System.Guid.Parse("27cff47b-8364-4730-abfb-5ec2d35b6f3b")); + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerKestrelTransportQuic => new ReferenceInfo("Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll", Resources.MicrosoftAspNetCoreServerKestrelTransportQuic, AspNet90.References.MicrosoftAspNetCoreServerKestrelTransportQuic, global::System.Guid.Parse("591e8fa2-4bc6-4394-b341-79b3a3936969")); + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreServerKestrelTransportSockets => new ReferenceInfo("Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", Resources.MicrosoftAspNetCoreServerKestrelTransportSockets, AspNet90.References.MicrosoftAspNetCoreServerKestrelTransportSockets, global::System.Guid.Parse("36f6e58f-324d-4650-b069-af8219274fb9")); + + /// + /// The for Microsoft.AspNetCore.Session.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreSession => new ReferenceInfo("Microsoft.AspNetCore.Session.dll", Resources.MicrosoftAspNetCoreSession, AspNet90.References.MicrosoftAspNetCoreSession, global::System.Guid.Parse("2fe4e680-438c-4fc3-876d-7fbd48b50326")); + + /// + /// The for Microsoft.AspNetCore.SignalR.Common.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreSignalRCommon => new ReferenceInfo("Microsoft.AspNetCore.SignalR.Common.dll", Resources.MicrosoftAspNetCoreSignalRCommon, AspNet90.References.MicrosoftAspNetCoreSignalRCommon, global::System.Guid.Parse("c32b1f95-f6ac-48d2-afc6-9316c35eb2ce")); + + /// + /// The for Microsoft.AspNetCore.SignalR.Core.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreSignalRCore => new ReferenceInfo("Microsoft.AspNetCore.SignalR.Core.dll", Resources.MicrosoftAspNetCoreSignalRCore, AspNet90.References.MicrosoftAspNetCoreSignalRCore, global::System.Guid.Parse("98278895-6731-4313-9efb-76e0a44eef24")); + + /// + /// The for Microsoft.AspNetCore.SignalR.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreSignalR => new ReferenceInfo("Microsoft.AspNetCore.SignalR.dll", Resources.MicrosoftAspNetCoreSignalR, AspNet90.References.MicrosoftAspNetCoreSignalR, global::System.Guid.Parse("b8989c7a-67da-4d7a-8a15-b7877d3eae78")); + + /// + /// The for Microsoft.AspNetCore.SignalR.Protocols.Json.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreSignalRProtocolsJson => new ReferenceInfo("Microsoft.AspNetCore.SignalR.Protocols.Json.dll", Resources.MicrosoftAspNetCoreSignalRProtocolsJson, AspNet90.References.MicrosoftAspNetCoreSignalRProtocolsJson, global::System.Guid.Parse("3e7447b7-66ee-408d-9d89-0d31b0f8756b")); + + /// + /// The for Microsoft.AspNetCore.StaticAssets.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreStaticAssets => new ReferenceInfo("Microsoft.AspNetCore.StaticAssets.dll", Resources.MicrosoftAspNetCoreStaticAssets, AspNet90.References.MicrosoftAspNetCoreStaticAssets, global::System.Guid.Parse("4d44a40b-ab9a-4420-aa79-b2b347c25c83")); + + /// + /// The for Microsoft.AspNetCore.StaticFiles.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreStaticFiles => new ReferenceInfo("Microsoft.AspNetCore.StaticFiles.dll", Resources.MicrosoftAspNetCoreStaticFiles, AspNet90.References.MicrosoftAspNetCoreStaticFiles, global::System.Guid.Parse("ce279e9e-d8db-433f-bee6-bdcc11fb8b0f")); + + /// + /// The for Microsoft.AspNetCore.WebSockets.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreWebSockets => new ReferenceInfo("Microsoft.AspNetCore.WebSockets.dll", Resources.MicrosoftAspNetCoreWebSockets, AspNet90.References.MicrosoftAspNetCoreWebSockets, global::System.Guid.Parse("9a9a164f-e2ea-4765-86f6-a9e0aa562ef1")); + + /// + /// The for Microsoft.AspNetCore.WebUtilities.dll + /// + public static ReferenceInfo MicrosoftAspNetCoreWebUtilities => new ReferenceInfo("Microsoft.AspNetCore.WebUtilities.dll", Resources.MicrosoftAspNetCoreWebUtilities, AspNet90.References.MicrosoftAspNetCoreWebUtilities, global::System.Guid.Parse("8f96fed7-b61a-4ad3-b57e-380d95aea772")); + + /// + /// The for Microsoft.Extensions.Caching.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsCachingAbstractions => new ReferenceInfo("Microsoft.Extensions.Caching.Abstractions.dll", Resources.MicrosoftExtensionsCachingAbstractions, AspNet90.References.MicrosoftExtensionsCachingAbstractions, global::System.Guid.Parse("a577842b-84df-4e3f-913a-00cdcd5a4173")); + + /// + /// The for Microsoft.Extensions.Caching.Memory.dll + /// + public static ReferenceInfo MicrosoftExtensionsCachingMemory => new ReferenceInfo("Microsoft.Extensions.Caching.Memory.dll", Resources.MicrosoftExtensionsCachingMemory, AspNet90.References.MicrosoftExtensionsCachingMemory, global::System.Guid.Parse("5b92b657-a1f9-499c-a34e-1a9e71255d87")); + + /// + /// The for Microsoft.Extensions.Configuration.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationAbstractions => new ReferenceInfo("Microsoft.Extensions.Configuration.Abstractions.dll", Resources.MicrosoftExtensionsConfigurationAbstractions, AspNet90.References.MicrosoftExtensionsConfigurationAbstractions, global::System.Guid.Parse("dd716b87-e55f-4db6-8fbf-03d105057dd4")); + + /// + /// The for Microsoft.Extensions.Configuration.Binder.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationBinder => new ReferenceInfo("Microsoft.Extensions.Configuration.Binder.dll", Resources.MicrosoftExtensionsConfigurationBinder, AspNet90.References.MicrosoftExtensionsConfigurationBinder, global::System.Guid.Parse("3e9b24ae-3ac5-40aa-bf46-fe2de5bd4f43")); + + /// + /// The for Microsoft.Extensions.Configuration.CommandLine.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationCommandLine => new ReferenceInfo("Microsoft.Extensions.Configuration.CommandLine.dll", Resources.MicrosoftExtensionsConfigurationCommandLine, AspNet90.References.MicrosoftExtensionsConfigurationCommandLine, global::System.Guid.Parse("f37fd659-ac96-489b-b959-4241c65619c8")); + + /// + /// The for Microsoft.Extensions.Configuration.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfiguration => new ReferenceInfo("Microsoft.Extensions.Configuration.dll", Resources.MicrosoftExtensionsConfiguration, AspNet90.References.MicrosoftExtensionsConfiguration, global::System.Guid.Parse("6cab1fa8-5cb4-47f2-bfc9-095baa1e199e")); + + /// + /// The for Microsoft.Extensions.Configuration.EnvironmentVariables.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationEnvironmentVariables => new ReferenceInfo("Microsoft.Extensions.Configuration.EnvironmentVariables.dll", Resources.MicrosoftExtensionsConfigurationEnvironmentVariables, AspNet90.References.MicrosoftExtensionsConfigurationEnvironmentVariables, global::System.Guid.Parse("d04432c9-417f-4f58-8fa6-8c7dea43eee9")); + + /// + /// The for Microsoft.Extensions.Configuration.FileExtensions.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationFileExtensions => new ReferenceInfo("Microsoft.Extensions.Configuration.FileExtensions.dll", Resources.MicrosoftExtensionsConfigurationFileExtensions, AspNet90.References.MicrosoftExtensionsConfigurationFileExtensions, global::System.Guid.Parse("be6843ac-b2a7-4261-8075-b27dacee9ef5")); + + /// + /// The for Microsoft.Extensions.Configuration.Ini.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationIni => new ReferenceInfo("Microsoft.Extensions.Configuration.Ini.dll", Resources.MicrosoftExtensionsConfigurationIni, AspNet90.References.MicrosoftExtensionsConfigurationIni, global::System.Guid.Parse("a9658345-aa10-40c7-a42f-d7b3495fa495")); + + /// + /// The for Microsoft.Extensions.Configuration.Json.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationJson => new ReferenceInfo("Microsoft.Extensions.Configuration.Json.dll", Resources.MicrosoftExtensionsConfigurationJson, AspNet90.References.MicrosoftExtensionsConfigurationJson, global::System.Guid.Parse("2762b4f4-a091-4bb6-8959-ef51473322f6")); + + /// + /// The for Microsoft.Extensions.Configuration.KeyPerFile.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationKeyPerFile => new ReferenceInfo("Microsoft.Extensions.Configuration.KeyPerFile.dll", Resources.MicrosoftExtensionsConfigurationKeyPerFile, AspNet90.References.MicrosoftExtensionsConfigurationKeyPerFile, global::System.Guid.Parse("c5864c01-2c66-48a8-8f96-f55c69446699")); + + /// + /// The for Microsoft.Extensions.Configuration.UserSecrets.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationUserSecrets => new ReferenceInfo("Microsoft.Extensions.Configuration.UserSecrets.dll", Resources.MicrosoftExtensionsConfigurationUserSecrets, AspNet90.References.MicrosoftExtensionsConfigurationUserSecrets, global::System.Guid.Parse("269765e6-1a2c-4b5d-a816-ec697499b867")); + + /// + /// The for Microsoft.Extensions.Configuration.Xml.dll + /// + public static ReferenceInfo MicrosoftExtensionsConfigurationXml => new ReferenceInfo("Microsoft.Extensions.Configuration.Xml.dll", Resources.MicrosoftExtensionsConfigurationXml, AspNet90.References.MicrosoftExtensionsConfigurationXml, global::System.Guid.Parse("22b03b43-72ca-491d-bcce-5b1b47a0020f")); + + /// + /// The for Microsoft.Extensions.DependencyInjection.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsDependencyInjectionAbstractions => new ReferenceInfo("Microsoft.Extensions.DependencyInjection.Abstractions.dll", Resources.MicrosoftExtensionsDependencyInjectionAbstractions, AspNet90.References.MicrosoftExtensionsDependencyInjectionAbstractions, global::System.Guid.Parse("0969da3f-14d2-4d85-9ecb-580bf936f4e0")); + + /// + /// The for Microsoft.Extensions.DependencyInjection.dll + /// + public static ReferenceInfo MicrosoftExtensionsDependencyInjection => new ReferenceInfo("Microsoft.Extensions.DependencyInjection.dll", Resources.MicrosoftExtensionsDependencyInjection, AspNet90.References.MicrosoftExtensionsDependencyInjection, global::System.Guid.Parse("bed8c5fc-dd96-46a1-9d90-594c67d063a9")); + + /// + /// The for Microsoft.Extensions.Diagnostics.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsDiagnosticsAbstractions => new ReferenceInfo("Microsoft.Extensions.Diagnostics.Abstractions.dll", Resources.MicrosoftExtensionsDiagnosticsAbstractions, AspNet90.References.MicrosoftExtensionsDiagnosticsAbstractions, global::System.Guid.Parse("389cb562-0d21-45fa-b4a2-57293fdf5663")); + + /// + /// The for Microsoft.Extensions.Diagnostics.dll + /// + public static ReferenceInfo MicrosoftExtensionsDiagnostics => new ReferenceInfo("Microsoft.Extensions.Diagnostics.dll", Resources.MicrosoftExtensionsDiagnostics, AspNet90.References.MicrosoftExtensionsDiagnostics, global::System.Guid.Parse("568fc67f-918d-4b4e-9ac4-61732cee9f57")); + + /// + /// The for Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsDiagnosticsHealthChecksAbstractions => new ReferenceInfo("Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", Resources.MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, AspNet90.References.MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, global::System.Guid.Parse("84d0653c-3f7c-495b-ab0b-eff63739a99f")); + + /// + /// The for Microsoft.Extensions.Diagnostics.HealthChecks.dll + /// + public static ReferenceInfo MicrosoftExtensionsDiagnosticsHealthChecks => new ReferenceInfo("Microsoft.Extensions.Diagnostics.HealthChecks.dll", Resources.MicrosoftExtensionsDiagnosticsHealthChecks, AspNet90.References.MicrosoftExtensionsDiagnosticsHealthChecks, global::System.Guid.Parse("88f48b46-5b64-4821-be39-bab0175f19ed")); + + /// + /// The for Microsoft.Extensions.Features.dll + /// + public static ReferenceInfo MicrosoftExtensionsFeatures => new ReferenceInfo("Microsoft.Extensions.Features.dll", Resources.MicrosoftExtensionsFeatures, AspNet90.References.MicrosoftExtensionsFeatures, global::System.Guid.Parse("e041d54f-7cb8-468b-91bb-413fcc03effa")); + + /// + /// The for Microsoft.Extensions.FileProviders.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsFileProvidersAbstractions => new ReferenceInfo("Microsoft.Extensions.FileProviders.Abstractions.dll", Resources.MicrosoftExtensionsFileProvidersAbstractions, AspNet90.References.MicrosoftExtensionsFileProvidersAbstractions, global::System.Guid.Parse("f11c6098-e72e-42ea-8faf-3d5a94659cb0")); + + /// + /// The for Microsoft.Extensions.FileProviders.Composite.dll + /// + public static ReferenceInfo MicrosoftExtensionsFileProvidersComposite => new ReferenceInfo("Microsoft.Extensions.FileProviders.Composite.dll", Resources.MicrosoftExtensionsFileProvidersComposite, AspNet90.References.MicrosoftExtensionsFileProvidersComposite, global::System.Guid.Parse("cb1c9102-ee47-4d75-87ba-f673f6b817c7")); + + /// + /// The for Microsoft.Extensions.FileProviders.Embedded.dll + /// + public static ReferenceInfo MicrosoftExtensionsFileProvidersEmbedded => new ReferenceInfo("Microsoft.Extensions.FileProviders.Embedded.dll", Resources.MicrosoftExtensionsFileProvidersEmbedded, AspNet90.References.MicrosoftExtensionsFileProvidersEmbedded, global::System.Guid.Parse("5a156bf7-8c41-478a-b476-745e4fe514a8")); + + /// + /// The for Microsoft.Extensions.FileProviders.Physical.dll + /// + public static ReferenceInfo MicrosoftExtensionsFileProvidersPhysical => new ReferenceInfo("Microsoft.Extensions.FileProviders.Physical.dll", Resources.MicrosoftExtensionsFileProvidersPhysical, AspNet90.References.MicrosoftExtensionsFileProvidersPhysical, global::System.Guid.Parse("507fdefb-d2e0-4150-8e64-c18e5e57312a")); + + /// + /// The for Microsoft.Extensions.FileSystemGlobbing.dll + /// + public static ReferenceInfo MicrosoftExtensionsFileSystemGlobbing => new ReferenceInfo("Microsoft.Extensions.FileSystemGlobbing.dll", Resources.MicrosoftExtensionsFileSystemGlobbing, AspNet90.References.MicrosoftExtensionsFileSystemGlobbing, global::System.Guid.Parse("f7e5c7ef-7808-405f-8bc7-3b3749a93144")); + + /// + /// The for Microsoft.Extensions.Hosting.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsHostingAbstractions => new ReferenceInfo("Microsoft.Extensions.Hosting.Abstractions.dll", Resources.MicrosoftExtensionsHostingAbstractions, AspNet90.References.MicrosoftExtensionsHostingAbstractions, global::System.Guid.Parse("5f69bc6a-447c-4d11-bb42-2a1247dfa59e")); + + /// + /// The for Microsoft.Extensions.Hosting.dll + /// + public static ReferenceInfo MicrosoftExtensionsHosting => new ReferenceInfo("Microsoft.Extensions.Hosting.dll", Resources.MicrosoftExtensionsHosting, AspNet90.References.MicrosoftExtensionsHosting, global::System.Guid.Parse("1ba08cf6-0441-46a4-a132-6d40bc8b41a8")); + + /// + /// The for Microsoft.Extensions.Http.dll + /// + public static ReferenceInfo MicrosoftExtensionsHttp => new ReferenceInfo("Microsoft.Extensions.Http.dll", Resources.MicrosoftExtensionsHttp, AspNet90.References.MicrosoftExtensionsHttp, global::System.Guid.Parse("e43f8c63-d83d-4d03-98d7-0e7acc9e164c")); + + /// + /// The for Microsoft.Extensions.Identity.Core.dll + /// + public static ReferenceInfo MicrosoftExtensionsIdentityCore => new ReferenceInfo("Microsoft.Extensions.Identity.Core.dll", Resources.MicrosoftExtensionsIdentityCore, AspNet90.References.MicrosoftExtensionsIdentityCore, global::System.Guid.Parse("46f164f6-cf0e-4d4a-936b-75d2117225fb")); + + /// + /// The for Microsoft.Extensions.Identity.Stores.dll + /// + public static ReferenceInfo MicrosoftExtensionsIdentityStores => new ReferenceInfo("Microsoft.Extensions.Identity.Stores.dll", Resources.MicrosoftExtensionsIdentityStores, AspNet90.References.MicrosoftExtensionsIdentityStores, global::System.Guid.Parse("6d5eeb43-3f8b-4db2-bbd6-59eb5ea13866")); + + /// + /// The for Microsoft.Extensions.Localization.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsLocalizationAbstractions => new ReferenceInfo("Microsoft.Extensions.Localization.Abstractions.dll", Resources.MicrosoftExtensionsLocalizationAbstractions, AspNet90.References.MicrosoftExtensionsLocalizationAbstractions, global::System.Guid.Parse("467dbd5f-74f5-42c6-aaf5-39c30af2b9ec")); + + /// + /// The for Microsoft.Extensions.Localization.dll + /// + public static ReferenceInfo MicrosoftExtensionsLocalization => new ReferenceInfo("Microsoft.Extensions.Localization.dll", Resources.MicrosoftExtensionsLocalization, AspNet90.References.MicrosoftExtensionsLocalization, global::System.Guid.Parse("88f1c321-06f6-4249-88b1-ea2681ad7d39")); + + /// + /// The for Microsoft.Extensions.Logging.Abstractions.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingAbstractions => new ReferenceInfo("Microsoft.Extensions.Logging.Abstractions.dll", Resources.MicrosoftExtensionsLoggingAbstractions, AspNet90.References.MicrosoftExtensionsLoggingAbstractions, global::System.Guid.Parse("5cc1aa9a-66e8-431e-97b8-47b04210c289")); + + /// + /// The for Microsoft.Extensions.Logging.Configuration.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingConfiguration => new ReferenceInfo("Microsoft.Extensions.Logging.Configuration.dll", Resources.MicrosoftExtensionsLoggingConfiguration, AspNet90.References.MicrosoftExtensionsLoggingConfiguration, global::System.Guid.Parse("2e9c855d-48b9-451d-b301-11e385057b66")); + + /// + /// The for Microsoft.Extensions.Logging.Console.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingConsole => new ReferenceInfo("Microsoft.Extensions.Logging.Console.dll", Resources.MicrosoftExtensionsLoggingConsole, AspNet90.References.MicrosoftExtensionsLoggingConsole, global::System.Guid.Parse("37e6db68-a6c9-4be6-a7f1-597b2e187235")); + + /// + /// The for Microsoft.Extensions.Logging.Debug.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingDebug => new ReferenceInfo("Microsoft.Extensions.Logging.Debug.dll", Resources.MicrosoftExtensionsLoggingDebug, AspNet90.References.MicrosoftExtensionsLoggingDebug, global::System.Guid.Parse("ada52fb8-f3dd-46bc-b60f-39f2cb0b2fb3")); + + /// + /// The for Microsoft.Extensions.Logging.dll + /// + public static ReferenceInfo MicrosoftExtensionsLogging => new ReferenceInfo("Microsoft.Extensions.Logging.dll", Resources.MicrosoftExtensionsLogging, AspNet90.References.MicrosoftExtensionsLogging, global::System.Guid.Parse("a69a82b3-968e-4edb-aa30-a9d27fc8cfc8")); + + /// + /// The for Microsoft.Extensions.Logging.EventLog.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingEventLog => new ReferenceInfo("Microsoft.Extensions.Logging.EventLog.dll", Resources.MicrosoftExtensionsLoggingEventLog, AspNet90.References.MicrosoftExtensionsLoggingEventLog, global::System.Guid.Parse("b0fc0b02-2bd2-486a-8170-e50a90e1b8de")); + + /// + /// The for Microsoft.Extensions.Logging.EventSource.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingEventSource => new ReferenceInfo("Microsoft.Extensions.Logging.EventSource.dll", Resources.MicrosoftExtensionsLoggingEventSource, AspNet90.References.MicrosoftExtensionsLoggingEventSource, global::System.Guid.Parse("a34b24b7-7015-4a20-a871-c449eca9e119")); + + /// + /// The for Microsoft.Extensions.Logging.TraceSource.dll + /// + public static ReferenceInfo MicrosoftExtensionsLoggingTraceSource => new ReferenceInfo("Microsoft.Extensions.Logging.TraceSource.dll", Resources.MicrosoftExtensionsLoggingTraceSource, AspNet90.References.MicrosoftExtensionsLoggingTraceSource, global::System.Guid.Parse("4c3f3ed7-19a1-45df-b1ee-cae5815704b6")); + + /// + /// The for Microsoft.Extensions.ObjectPool.dll + /// + public static ReferenceInfo MicrosoftExtensionsObjectPool => new ReferenceInfo("Microsoft.Extensions.ObjectPool.dll", Resources.MicrosoftExtensionsObjectPool, AspNet90.References.MicrosoftExtensionsObjectPool, global::System.Guid.Parse("244fdc08-3c48-4054-b428-3097935f36da")); + + /// + /// The for Microsoft.Extensions.Options.ConfigurationExtensions.dll + /// + public static ReferenceInfo MicrosoftExtensionsOptionsConfigurationExtensions => new ReferenceInfo("Microsoft.Extensions.Options.ConfigurationExtensions.dll", Resources.MicrosoftExtensionsOptionsConfigurationExtensions, AspNet90.References.MicrosoftExtensionsOptionsConfigurationExtensions, global::System.Guid.Parse("7f129c58-d50d-4509-8ff4-8df7b7ed9e10")); + + /// + /// The for Microsoft.Extensions.Options.DataAnnotations.dll + /// + public static ReferenceInfo MicrosoftExtensionsOptionsDataAnnotations => new ReferenceInfo("Microsoft.Extensions.Options.DataAnnotations.dll", Resources.MicrosoftExtensionsOptionsDataAnnotations, AspNet90.References.MicrosoftExtensionsOptionsDataAnnotations, global::System.Guid.Parse("7c0f7142-d6a9-454d-bc71-98f39fe47395")); + + /// + /// The for Microsoft.Extensions.Options.dll + /// + public static ReferenceInfo MicrosoftExtensionsOptions => new ReferenceInfo("Microsoft.Extensions.Options.dll", Resources.MicrosoftExtensionsOptions, AspNet90.References.MicrosoftExtensionsOptions, global::System.Guid.Parse("54fdf35c-4b65-437c-9015-e1da220421d0")); + + /// + /// The for Microsoft.Extensions.Primitives.dll + /// + public static ReferenceInfo MicrosoftExtensionsPrimitives => new ReferenceInfo("Microsoft.Extensions.Primitives.dll", Resources.MicrosoftExtensionsPrimitives, AspNet90.References.MicrosoftExtensionsPrimitives, global::System.Guid.Parse("09f279fc-6e41-40f7-af92-bf35947020c8")); + + /// + /// The for Microsoft.Extensions.WebEncoders.dll + /// + public static ReferenceInfo MicrosoftExtensionsWebEncoders => new ReferenceInfo("Microsoft.Extensions.WebEncoders.dll", Resources.MicrosoftExtensionsWebEncoders, AspNet90.References.MicrosoftExtensionsWebEncoders, global::System.Guid.Parse("03143a28-474f-4b56-bb52-8d1317d4debf")); + + /// + /// The for Microsoft.JSInterop.dll + /// + public static ReferenceInfo MicrosoftJSInterop => new ReferenceInfo("Microsoft.JSInterop.dll", Resources.MicrosoftJSInterop, AspNet90.References.MicrosoftJSInterop, global::System.Guid.Parse("8df57e88-d772-4051-a463-07a4a6796515")); + + /// + /// The for Microsoft.Net.Http.Headers.dll + /// + public static ReferenceInfo MicrosoftNetHttpHeaders => new ReferenceInfo("Microsoft.Net.Http.Headers.dll", Resources.MicrosoftNetHttpHeaders, AspNet90.References.MicrosoftNetHttpHeaders, global::System.Guid.Parse("7e4b29da-5851-4815-bebe-4ba9c87353d7")); + + /// + /// The for System.Diagnostics.EventLog.dll + /// + public static ReferenceInfo SystemDiagnosticsEventLog => new ReferenceInfo("System.Diagnostics.EventLog.dll", Resources.SystemDiagnosticsEventLog, AspNet90.References.SystemDiagnosticsEventLog, global::System.Guid.Parse("5e386e41-a165-4037-81e5-0340f54a0784")); + + /// + /// The for System.Security.Cryptography.Xml.dll + /// + public static ReferenceInfo SystemSecurityCryptographyXml => new ReferenceInfo("System.Security.Cryptography.Xml.dll", Resources.SystemSecurityCryptographyXml, AspNet90.References.SystemSecurityCryptographyXml, global::System.Guid.Parse("121857a1-ac7b-4092-92f3-3a7c8e4bc858")); + + /// + /// The for System.Threading.RateLimiting.dll + /// + public static ReferenceInfo SystemThreadingRateLimiting => new ReferenceInfo("System.Threading.RateLimiting.dll", Resources.SystemThreadingRateLimiting, AspNet90.References.SystemThreadingRateLimiting, global::System.Guid.Parse("75f967d2-ae5f-4dbf-a25c-2a75edc85309")); + private static ImmutableArray _all; + public static ImmutableArray All + { + get + { + if (_all.IsDefault) + { + _all = + [ + MicrosoftCSharp, + MicrosoftVisualBasicCore, + MicrosoftVisualBasic, + MicrosoftWin32Primitives, + MicrosoftWin32Registry, + mscorlib, + netstandard, + SystemAppContext, + SystemBuffers, + SystemCollectionsConcurrent, + SystemCollections, + SystemCollectionsImmutable, + SystemCollectionsNonGeneric, + SystemCollectionsSpecialized, + SystemComponentModelAnnotations, + SystemComponentModelDataAnnotations, + SystemComponentModel, + SystemComponentModelEventBasedAsync, + SystemComponentModelPrimitives, + SystemComponentModelTypeConverter, + SystemConfiguration, + SystemConsole, + SystemCore, + SystemDataCommon, + SystemDataDataSetExtensions, + SystemData, + SystemDiagnosticsContracts, + SystemDiagnosticsDebug, + SystemDiagnosticsDiagnosticSource, + SystemDiagnosticsFileVersionInfo, + SystemDiagnosticsProcess, + SystemDiagnosticsStackTrace, + SystemDiagnosticsTextWriterTraceListener, + SystemDiagnosticsTools, + SystemDiagnosticsTraceSource, + SystemDiagnosticsTracing, + System, + SystemDrawing, + SystemDrawingPrimitives, + SystemDynamicRuntime, + SystemFormatsAsn1, + SystemFormatsTar, + SystemGlobalizationCalendars, + SystemGlobalization, + SystemGlobalizationExtensions, + SystemIOCompressionBrotli, + SystemIOCompression, + SystemIOCompressionFileSystem, + SystemIOCompressionZipFile, + SystemIO, + SystemIOFileSystemAccessControl, + SystemIOFileSystem, + SystemIOFileSystemDriveInfo, + SystemIOFileSystemPrimitives, + SystemIOFileSystemWatcher, + SystemIOIsolatedStorage, + SystemIOMemoryMappedFiles, + SystemIOPipelines, + SystemIOPipesAccessControl, + SystemIOPipes, + SystemIOUnmanagedMemoryStream, + SystemLinq, + SystemLinqExpressions, + SystemLinqParallel, + SystemLinqQueryable, + SystemMemory, + SystemNet, + SystemNetHttp, + SystemNetHttpJson, + SystemNetHttpListener, + SystemNetMail, + SystemNetNameResolution, + SystemNetNetworkInformation, + SystemNetPing, + SystemNetPrimitives, + SystemNetQuic, + SystemNetRequests, + SystemNetSecurity, + SystemNetServicePoint, + SystemNetSockets, + SystemNetWebClient, + SystemNetWebHeaderCollection, + SystemNetWebProxy, + SystemNetWebSocketsClient, + SystemNetWebSockets, + SystemNumerics, + SystemNumericsVectors, + SystemObjectModel, + SystemReflectionDispatchProxy, + SystemReflection, + SystemReflectionEmit, + SystemReflectionEmitILGeneration, + SystemReflectionEmitLightweight, + SystemReflectionExtensions, + SystemReflectionMetadata, + SystemReflectionPrimitives, + SystemReflectionTypeExtensions, + SystemResourcesReader, + SystemResourcesResourceManager, + SystemResourcesWriter, + SystemRuntimeCompilerServicesUnsafe, + SystemRuntimeCompilerServicesVisualC, + SystemRuntime, + SystemRuntimeExtensions, + SystemRuntimeHandles, + SystemRuntimeInteropServices, + SystemRuntimeInteropServicesJavaScript, + SystemRuntimeInteropServicesRuntimeInformation, + SystemRuntimeIntrinsics, + SystemRuntimeLoader, + SystemRuntimeNumerics, + SystemRuntimeSerialization, + SystemRuntimeSerializationFormatters, + SystemRuntimeSerializationJson, + SystemRuntimeSerializationPrimitives, + SystemRuntimeSerializationXml, + SystemSecurityAccessControl, + SystemSecurityClaims, + SystemSecurityCryptographyAlgorithms, + SystemSecurityCryptographyCng, + SystemSecurityCryptographyCsp, + SystemSecurityCryptography, + SystemSecurityCryptographyEncoding, + SystemSecurityCryptographyOpenSsl, + SystemSecurityCryptographyPrimitives, + SystemSecurityCryptographyX509Certificates, + SystemSecurity, + SystemSecurityPrincipal, + SystemSecurityPrincipalWindows, + SystemSecuritySecureString, + SystemServiceModelWeb, + SystemServiceProcess, + SystemTextEncodingCodePages, + SystemTextEncoding, + SystemTextEncodingExtensions, + SystemTextEncodingsWeb, + SystemTextJson, + SystemTextRegularExpressions, + SystemThreadingChannels, + SystemThreading, + SystemThreadingOverlapped, + SystemThreadingTasksDataflow, + SystemThreadingTasks, + SystemThreadingTasksExtensions, + SystemThreadingTasksParallel, + SystemThreadingThread, + SystemThreadingThreadPool, + SystemThreadingTimer, + SystemTransactions, + SystemTransactionsLocal, + SystemValueTuple, + SystemWeb, + SystemWebHttpUtility, + SystemWindows, + SystemXml, + SystemXmlLinq, + SystemXmlReaderWriter, + SystemXmlSerialization, + SystemXmlXDocument, + SystemXmlXmlDocument, + SystemXmlXmlSerializer, + SystemXmlXPath, + SystemXmlXPathXDocument, + WindowsBase, + MicrosoftAspNetCoreAntiforgery, + MicrosoftAspNetCoreAuthenticationAbstractions, + MicrosoftAspNetCoreAuthenticationBearerToken, + MicrosoftAspNetCoreAuthenticationCookies, + MicrosoftAspNetCoreAuthenticationCore, + MicrosoftAspNetCoreAuthentication, + MicrosoftAspNetCoreAuthenticationOAuth, + MicrosoftAspNetCoreAuthorization, + MicrosoftAspNetCoreAuthorizationPolicy, + MicrosoftAspNetCoreComponentsAuthorization, + MicrosoftAspNetCoreComponents, + MicrosoftAspNetCoreComponentsEndpoints, + MicrosoftAspNetCoreComponentsForms, + MicrosoftAspNetCoreComponentsServer, + MicrosoftAspNetCoreComponentsWeb, + MicrosoftAspNetCoreConnectionsAbstractions, + MicrosoftAspNetCoreCookiePolicy, + MicrosoftAspNetCoreCors, + MicrosoftAspNetCoreCryptographyInternal, + MicrosoftAspNetCoreCryptographyKeyDerivation, + MicrosoftAspNetCoreDataProtectionAbstractions, + MicrosoftAspNetCoreDataProtection, + MicrosoftAspNetCoreDataProtectionExtensions, + MicrosoftAspNetCoreDiagnosticsAbstractions, + MicrosoftAspNetCoreDiagnostics, + MicrosoftAspNetCoreDiagnosticsHealthChecks, + MicrosoftAspNetCore, + MicrosoftAspNetCoreHostFiltering, + MicrosoftAspNetCoreHostingAbstractions, + MicrosoftAspNetCoreHosting, + MicrosoftAspNetCoreHostingServerAbstractions, + MicrosoftAspNetCoreHtmlAbstractions, + MicrosoftAspNetCoreHttpAbstractions, + MicrosoftAspNetCoreHttpConnectionsCommon, + MicrosoftAspNetCoreHttpConnections, + MicrosoftAspNetCoreHttp, + MicrosoftAspNetCoreHttpExtensions, + MicrosoftAspNetCoreHttpFeatures, + MicrosoftAspNetCoreHttpResults, + MicrosoftAspNetCoreHttpLogging, + MicrosoftAspNetCoreHttpOverrides, + MicrosoftAspNetCoreHttpsPolicy, + MicrosoftAspNetCoreIdentity, + MicrosoftAspNetCoreLocalization, + MicrosoftAspNetCoreLocalizationRouting, + MicrosoftAspNetCoreMetadata, + MicrosoftAspNetCoreMvcAbstractions, + MicrosoftAspNetCoreMvcApiExplorer, + MicrosoftAspNetCoreMvcCore, + MicrosoftAspNetCoreMvcCors, + MicrosoftAspNetCoreMvcDataAnnotations, + MicrosoftAspNetCoreMvc, + MicrosoftAspNetCoreMvcFormattersJson, + MicrosoftAspNetCoreMvcFormattersXml, + MicrosoftAspNetCoreMvcLocalization, + MicrosoftAspNetCoreMvcRazor, + MicrosoftAspNetCoreMvcRazorPages, + MicrosoftAspNetCoreMvcTagHelpers, + MicrosoftAspNetCoreMvcViewFeatures, + MicrosoftAspNetCoreOutputCaching, + MicrosoftAspNetCoreRateLimiting, + MicrosoftAspNetCoreRazor, + MicrosoftAspNetCoreRazorRuntime, + MicrosoftAspNetCoreRequestDecompression, + MicrosoftAspNetCoreResponseCachingAbstractions, + MicrosoftAspNetCoreResponseCaching, + MicrosoftAspNetCoreResponseCompression, + MicrosoftAspNetCoreRewrite, + MicrosoftAspNetCoreRoutingAbstractions, + MicrosoftAspNetCoreRouting, + MicrosoftAspNetCoreServerHttpSys, + MicrosoftAspNetCoreServerIIS, + MicrosoftAspNetCoreServerIISIntegration, + MicrosoftAspNetCoreServerKestrelCore, + MicrosoftAspNetCoreServerKestrel, + MicrosoftAspNetCoreServerKestrelTransportNamedPipes, + MicrosoftAspNetCoreServerKestrelTransportQuic, + MicrosoftAspNetCoreServerKestrelTransportSockets, + MicrosoftAspNetCoreSession, + MicrosoftAspNetCoreSignalRCommon, + MicrosoftAspNetCoreSignalRCore, + MicrosoftAspNetCoreSignalR, + MicrosoftAspNetCoreSignalRProtocolsJson, + MicrosoftAspNetCoreStaticAssets, + MicrosoftAspNetCoreStaticFiles, + MicrosoftAspNetCoreWebSockets, + MicrosoftAspNetCoreWebUtilities, + MicrosoftExtensionsCachingAbstractions, + MicrosoftExtensionsCachingMemory, + MicrosoftExtensionsConfigurationAbstractions, + MicrosoftExtensionsConfigurationBinder, + MicrosoftExtensionsConfigurationCommandLine, + MicrosoftExtensionsConfiguration, + MicrosoftExtensionsConfigurationEnvironmentVariables, + MicrosoftExtensionsConfigurationFileExtensions, + MicrosoftExtensionsConfigurationIni, + MicrosoftExtensionsConfigurationJson, + MicrosoftExtensionsConfigurationKeyPerFile, + MicrosoftExtensionsConfigurationUserSecrets, + MicrosoftExtensionsConfigurationXml, + MicrosoftExtensionsDependencyInjectionAbstractions, + MicrosoftExtensionsDependencyInjection, + MicrosoftExtensionsDiagnosticsAbstractions, + MicrosoftExtensionsDiagnostics, + MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, + MicrosoftExtensionsDiagnosticsHealthChecks, + MicrosoftExtensionsFeatures, + MicrosoftExtensionsFileProvidersAbstractions, + MicrosoftExtensionsFileProvidersComposite, + MicrosoftExtensionsFileProvidersEmbedded, + MicrosoftExtensionsFileProvidersPhysical, + MicrosoftExtensionsFileSystemGlobbing, + MicrosoftExtensionsHostingAbstractions, + MicrosoftExtensionsHosting, + MicrosoftExtensionsHttp, + MicrosoftExtensionsIdentityCore, + MicrosoftExtensionsIdentityStores, + MicrosoftExtensionsLocalizationAbstractions, + MicrosoftExtensionsLocalization, + MicrosoftExtensionsLoggingAbstractions, + MicrosoftExtensionsLoggingConfiguration, + MicrosoftExtensionsLoggingConsole, + MicrosoftExtensionsLoggingDebug, + MicrosoftExtensionsLogging, + MicrosoftExtensionsLoggingEventLog, + MicrosoftExtensionsLoggingEventSource, + MicrosoftExtensionsLoggingTraceSource, + MicrosoftExtensionsObjectPool, + MicrosoftExtensionsOptionsConfigurationExtensions, + MicrosoftExtensionsOptionsDataAnnotations, + MicrosoftExtensionsOptions, + MicrosoftExtensionsPrimitives, + MicrosoftExtensionsWebEncoders, + MicrosoftJSInterop, + MicrosoftNetHttpHeaders, + SystemDiagnosticsEventLog, + SystemSecurityCryptographyXml, + SystemThreadingRateLimiting, + ]; + } + return _all; + } + } + + public static IEnumerable<(string FileName, byte[] ImageBytes, PortableExecutableReference Reference, Guid Mvid)> AllValues => All.Select(x => x.AsTuple()); + } +} + +public static partial class AspNet90 +{ + public static class References + { + private static PortableExecutableReference? _MicrosoftCSharp; + + /// + /// The for Microsoft.CSharp.dll + /// + public static PortableExecutableReference MicrosoftCSharp + { + get + { + if (_MicrosoftCSharp is null) + { + _MicrosoftCSharp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.CSharp")).GetReference(filePath: "Microsoft.CSharp.dll", display: "Microsoft.CSharp (aspnet90)"); + } + return _MicrosoftCSharp; + } + } + + private static PortableExecutableReference? _MicrosoftVisualBasicCore; + + /// + /// The for Microsoft.VisualBasic.Core.dll + /// + public static PortableExecutableReference MicrosoftVisualBasicCore + { + get + { + if (_MicrosoftVisualBasicCore is null) + { + _MicrosoftVisualBasicCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.VisualBasic.Core")).GetReference(filePath: "Microsoft.VisualBasic.Core.dll", display: "Microsoft.VisualBasic.Core (aspnet90)"); + } + return _MicrosoftVisualBasicCore; + } + } + + private static PortableExecutableReference? _MicrosoftVisualBasic; + + /// + /// The for Microsoft.VisualBasic.dll + /// + public static PortableExecutableReference MicrosoftVisualBasic + { + get + { + if (_MicrosoftVisualBasic is null) + { + _MicrosoftVisualBasic = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.VisualBasic")).GetReference(filePath: "Microsoft.VisualBasic.dll", display: "Microsoft.VisualBasic (aspnet90)"); + } + return _MicrosoftVisualBasic; + } + } + + private static PortableExecutableReference? _MicrosoftWin32Primitives; + + /// + /// The for Microsoft.Win32.Primitives.dll + /// + public static PortableExecutableReference MicrosoftWin32Primitives + { + get + { + if (_MicrosoftWin32Primitives is null) + { + _MicrosoftWin32Primitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Win32.Primitives")).GetReference(filePath: "Microsoft.Win32.Primitives.dll", display: "Microsoft.Win32.Primitives (aspnet90)"); + } + return _MicrosoftWin32Primitives; + } + } + + private static PortableExecutableReference? _MicrosoftWin32Registry; + + /// + /// The for Microsoft.Win32.Registry.dll + /// + public static PortableExecutableReference MicrosoftWin32Registry + { + get + { + if (_MicrosoftWin32Registry is null) + { + _MicrosoftWin32Registry = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Win32.Registry")).GetReference(filePath: "Microsoft.Win32.Registry.dll", display: "Microsoft.Win32.Registry (aspnet90)"); + } + return _MicrosoftWin32Registry; + } + } + + private static PortableExecutableReference? _mscorlib; + + /// + /// The for mscorlib.dll + /// + public static PortableExecutableReference mscorlib + { + get + { + if (_mscorlib is null) + { + _mscorlib = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.mscorlib")).GetReference(filePath: "mscorlib.dll", display: "mscorlib (aspnet90)"); + } + return _mscorlib; + } + } + + private static PortableExecutableReference? _netstandard; + + /// + /// The for netstandard.dll + /// + public static PortableExecutableReference netstandard + { + get + { + if (_netstandard is null) + { + _netstandard = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.netstandard")).GetReference(filePath: "netstandard.dll", display: "netstandard (aspnet90)"); + } + return _netstandard; + } + } + + private static PortableExecutableReference? _SystemAppContext; + + /// + /// The for System.AppContext.dll + /// + public static PortableExecutableReference SystemAppContext + { + get + { + if (_SystemAppContext is null) + { + _SystemAppContext = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.AppContext")).GetReference(filePath: "System.AppContext.dll", display: "System.AppContext (aspnet90)"); + } + return _SystemAppContext; + } + } + + private static PortableExecutableReference? _SystemBuffers; + + /// + /// The for System.Buffers.dll + /// + public static PortableExecutableReference SystemBuffers + { + get + { + if (_SystemBuffers is null) + { + _SystemBuffers = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Buffers")).GetReference(filePath: "System.Buffers.dll", display: "System.Buffers (aspnet90)"); + } + return _SystemBuffers; + } + } + + private static PortableExecutableReference? _SystemCollectionsConcurrent; + + /// + /// The for System.Collections.Concurrent.dll + /// + public static PortableExecutableReference SystemCollectionsConcurrent + { + get + { + if (_SystemCollectionsConcurrent is null) + { + _SystemCollectionsConcurrent = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Collections.Concurrent")).GetReference(filePath: "System.Collections.Concurrent.dll", display: "System.Collections.Concurrent (aspnet90)"); + } + return _SystemCollectionsConcurrent; + } + } + + private static PortableExecutableReference? _SystemCollections; + + /// + /// The for System.Collections.dll + /// + public static PortableExecutableReference SystemCollections + { + get + { + if (_SystemCollections is null) + { + _SystemCollections = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Collections")).GetReference(filePath: "System.Collections.dll", display: "System.Collections (aspnet90)"); + } + return _SystemCollections; + } + } + + private static PortableExecutableReference? _SystemCollectionsImmutable; + + /// + /// The for System.Collections.Immutable.dll + /// + public static PortableExecutableReference SystemCollectionsImmutable + { + get + { + if (_SystemCollectionsImmutable is null) + { + _SystemCollectionsImmutable = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Collections.Immutable")).GetReference(filePath: "System.Collections.Immutable.dll", display: "System.Collections.Immutable (aspnet90)"); + } + return _SystemCollectionsImmutable; + } + } + + private static PortableExecutableReference? _SystemCollectionsNonGeneric; + + /// + /// The for System.Collections.NonGeneric.dll + /// + public static PortableExecutableReference SystemCollectionsNonGeneric + { + get + { + if (_SystemCollectionsNonGeneric is null) + { + _SystemCollectionsNonGeneric = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Collections.NonGeneric")).GetReference(filePath: "System.Collections.NonGeneric.dll", display: "System.Collections.NonGeneric (aspnet90)"); + } + return _SystemCollectionsNonGeneric; + } + } + + private static PortableExecutableReference? _SystemCollectionsSpecialized; + + /// + /// The for System.Collections.Specialized.dll + /// + public static PortableExecutableReference SystemCollectionsSpecialized + { + get + { + if (_SystemCollectionsSpecialized is null) + { + _SystemCollectionsSpecialized = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Collections.Specialized")).GetReference(filePath: "System.Collections.Specialized.dll", display: "System.Collections.Specialized (aspnet90)"); + } + return _SystemCollectionsSpecialized; + } + } + + private static PortableExecutableReference? _SystemComponentModelAnnotations; + + /// + /// The for System.ComponentModel.Annotations.dll + /// + public static PortableExecutableReference SystemComponentModelAnnotations + { + get + { + if (_SystemComponentModelAnnotations is null) + { + _SystemComponentModelAnnotations = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ComponentModel.Annotations")).GetReference(filePath: "System.ComponentModel.Annotations.dll", display: "System.ComponentModel.Annotations (aspnet90)"); + } + return _SystemComponentModelAnnotations; + } + } + + private static PortableExecutableReference? _SystemComponentModelDataAnnotations; + + /// + /// The for System.ComponentModel.DataAnnotations.dll + /// + public static PortableExecutableReference SystemComponentModelDataAnnotations + { + get + { + if (_SystemComponentModelDataAnnotations is null) + { + _SystemComponentModelDataAnnotations = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ComponentModel.DataAnnotations")).GetReference(filePath: "System.ComponentModel.DataAnnotations.dll", display: "System.ComponentModel.DataAnnotations (aspnet90)"); + } + return _SystemComponentModelDataAnnotations; + } + } + + private static PortableExecutableReference? _SystemComponentModel; + + /// + /// The for System.ComponentModel.dll + /// + public static PortableExecutableReference SystemComponentModel + { + get + { + if (_SystemComponentModel is null) + { + _SystemComponentModel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ComponentModel")).GetReference(filePath: "System.ComponentModel.dll", display: "System.ComponentModel (aspnet90)"); + } + return _SystemComponentModel; + } + } + + private static PortableExecutableReference? _SystemComponentModelEventBasedAsync; + + /// + /// The for System.ComponentModel.EventBasedAsync.dll + /// + public static PortableExecutableReference SystemComponentModelEventBasedAsync + { + get + { + if (_SystemComponentModelEventBasedAsync is null) + { + _SystemComponentModelEventBasedAsync = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ComponentModel.EventBasedAsync")).GetReference(filePath: "System.ComponentModel.EventBasedAsync.dll", display: "System.ComponentModel.EventBasedAsync (aspnet90)"); + } + return _SystemComponentModelEventBasedAsync; + } + } + + private static PortableExecutableReference? _SystemComponentModelPrimitives; + + /// + /// The for System.ComponentModel.Primitives.dll + /// + public static PortableExecutableReference SystemComponentModelPrimitives + { + get + { + if (_SystemComponentModelPrimitives is null) + { + _SystemComponentModelPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ComponentModel.Primitives")).GetReference(filePath: "System.ComponentModel.Primitives.dll", display: "System.ComponentModel.Primitives (aspnet90)"); + } + return _SystemComponentModelPrimitives; + } + } + + private static PortableExecutableReference? _SystemComponentModelTypeConverter; + + /// + /// The for System.ComponentModel.TypeConverter.dll + /// + public static PortableExecutableReference SystemComponentModelTypeConverter + { + get + { + if (_SystemComponentModelTypeConverter is null) + { + _SystemComponentModelTypeConverter = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ComponentModel.TypeConverter")).GetReference(filePath: "System.ComponentModel.TypeConverter.dll", display: "System.ComponentModel.TypeConverter (aspnet90)"); + } + return _SystemComponentModelTypeConverter; + } + } + + private static PortableExecutableReference? _SystemConfiguration; + + /// + /// The for System.Configuration.dll + /// + public static PortableExecutableReference SystemConfiguration + { + get + { + if (_SystemConfiguration is null) + { + _SystemConfiguration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Configuration")).GetReference(filePath: "System.Configuration.dll", display: "System.Configuration (aspnet90)"); + } + return _SystemConfiguration; + } + } + + private static PortableExecutableReference? _SystemConsole; + + /// + /// The for System.Console.dll + /// + public static PortableExecutableReference SystemConsole + { + get + { + if (_SystemConsole is null) + { + _SystemConsole = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Console")).GetReference(filePath: "System.Console.dll", display: "System.Console (aspnet90)"); + } + return _SystemConsole; + } + } + + private static PortableExecutableReference? _SystemCore; + + /// + /// The for System.Core.dll + /// + public static PortableExecutableReference SystemCore + { + get + { + if (_SystemCore is null) + { + _SystemCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Core")).GetReference(filePath: "System.Core.dll", display: "System.Core (aspnet90)"); + } + return _SystemCore; + } + } + + private static PortableExecutableReference? _SystemDataCommon; + + /// + /// The for System.Data.Common.dll + /// + public static PortableExecutableReference SystemDataCommon + { + get + { + if (_SystemDataCommon is null) + { + _SystemDataCommon = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Data.Common")).GetReference(filePath: "System.Data.Common.dll", display: "System.Data.Common (aspnet90)"); + } + return _SystemDataCommon; + } + } + + private static PortableExecutableReference? _SystemDataDataSetExtensions; + + /// + /// The for System.Data.DataSetExtensions.dll + /// + public static PortableExecutableReference SystemDataDataSetExtensions + { + get + { + if (_SystemDataDataSetExtensions is null) + { + _SystemDataDataSetExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Data.DataSetExtensions")).GetReference(filePath: "System.Data.DataSetExtensions.dll", display: "System.Data.DataSetExtensions (aspnet90)"); + } + return _SystemDataDataSetExtensions; + } + } + + private static PortableExecutableReference? _SystemData; + + /// + /// The for System.Data.dll + /// + public static PortableExecutableReference SystemData + { + get + { + if (_SystemData is null) + { + _SystemData = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Data")).GetReference(filePath: "System.Data.dll", display: "System.Data (aspnet90)"); + } + return _SystemData; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsContracts; + + /// + /// The for System.Diagnostics.Contracts.dll + /// + public static PortableExecutableReference SystemDiagnosticsContracts + { + get + { + if (_SystemDiagnosticsContracts is null) + { + _SystemDiagnosticsContracts = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.Contracts")).GetReference(filePath: "System.Diagnostics.Contracts.dll", display: "System.Diagnostics.Contracts (aspnet90)"); + } + return _SystemDiagnosticsContracts; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsDebug; + + /// + /// The for System.Diagnostics.Debug.dll + /// + public static PortableExecutableReference SystemDiagnosticsDebug + { + get + { + if (_SystemDiagnosticsDebug is null) + { + _SystemDiagnosticsDebug = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.Debug")).GetReference(filePath: "System.Diagnostics.Debug.dll", display: "System.Diagnostics.Debug (aspnet90)"); + } + return _SystemDiagnosticsDebug; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsDiagnosticSource; + + /// + /// The for System.Diagnostics.DiagnosticSource.dll + /// + public static PortableExecutableReference SystemDiagnosticsDiagnosticSource + { + get + { + if (_SystemDiagnosticsDiagnosticSource is null) + { + _SystemDiagnosticsDiagnosticSource = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.DiagnosticSource")).GetReference(filePath: "System.Diagnostics.DiagnosticSource.dll", display: "System.Diagnostics.DiagnosticSource (aspnet90)"); + } + return _SystemDiagnosticsDiagnosticSource; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsFileVersionInfo; + + /// + /// The for System.Diagnostics.FileVersionInfo.dll + /// + public static PortableExecutableReference SystemDiagnosticsFileVersionInfo + { + get + { + if (_SystemDiagnosticsFileVersionInfo is null) + { + _SystemDiagnosticsFileVersionInfo = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.FileVersionInfo")).GetReference(filePath: "System.Diagnostics.FileVersionInfo.dll", display: "System.Diagnostics.FileVersionInfo (aspnet90)"); + } + return _SystemDiagnosticsFileVersionInfo; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsProcess; + + /// + /// The for System.Diagnostics.Process.dll + /// + public static PortableExecutableReference SystemDiagnosticsProcess + { + get + { + if (_SystemDiagnosticsProcess is null) + { + _SystemDiagnosticsProcess = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.Process")).GetReference(filePath: "System.Diagnostics.Process.dll", display: "System.Diagnostics.Process (aspnet90)"); + } + return _SystemDiagnosticsProcess; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsStackTrace; + + /// + /// The for System.Diagnostics.StackTrace.dll + /// + public static PortableExecutableReference SystemDiagnosticsStackTrace + { + get + { + if (_SystemDiagnosticsStackTrace is null) + { + _SystemDiagnosticsStackTrace = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.StackTrace")).GetReference(filePath: "System.Diagnostics.StackTrace.dll", display: "System.Diagnostics.StackTrace (aspnet90)"); + } + return _SystemDiagnosticsStackTrace; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTextWriterTraceListener; + + /// + /// The for System.Diagnostics.TextWriterTraceListener.dll + /// + public static PortableExecutableReference SystemDiagnosticsTextWriterTraceListener + { + get + { + if (_SystemDiagnosticsTextWriterTraceListener is null) + { + _SystemDiagnosticsTextWriterTraceListener = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.TextWriterTraceListener")).GetReference(filePath: "System.Diagnostics.TextWriterTraceListener.dll", display: "System.Diagnostics.TextWriterTraceListener (aspnet90)"); + } + return _SystemDiagnosticsTextWriterTraceListener; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTools; + + /// + /// The for System.Diagnostics.Tools.dll + /// + public static PortableExecutableReference SystemDiagnosticsTools + { + get + { + if (_SystemDiagnosticsTools is null) + { + _SystemDiagnosticsTools = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.Tools")).GetReference(filePath: "System.Diagnostics.Tools.dll", display: "System.Diagnostics.Tools (aspnet90)"); + } + return _SystemDiagnosticsTools; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTraceSource; + + /// + /// The for System.Diagnostics.TraceSource.dll + /// + public static PortableExecutableReference SystemDiagnosticsTraceSource + { + get + { + if (_SystemDiagnosticsTraceSource is null) + { + _SystemDiagnosticsTraceSource = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.TraceSource")).GetReference(filePath: "System.Diagnostics.TraceSource.dll", display: "System.Diagnostics.TraceSource (aspnet90)"); + } + return _SystemDiagnosticsTraceSource; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTracing; + + /// + /// The for System.Diagnostics.Tracing.dll + /// + public static PortableExecutableReference SystemDiagnosticsTracing + { + get + { + if (_SystemDiagnosticsTracing is null) + { + _SystemDiagnosticsTracing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.Tracing")).GetReference(filePath: "System.Diagnostics.Tracing.dll", display: "System.Diagnostics.Tracing (aspnet90)"); + } + return _SystemDiagnosticsTracing; + } + } + + private static PortableExecutableReference? _System; + + /// + /// The for System.dll + /// + public static PortableExecutableReference System + { + get + { + if (_System is null) + { + _System = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System")).GetReference(filePath: "System.dll", display: "System (aspnet90)"); + } + return _System; + } + } + + private static PortableExecutableReference? _SystemDrawing; + + /// + /// The for System.Drawing.dll + /// + public static PortableExecutableReference SystemDrawing + { + get + { + if (_SystemDrawing is null) + { + _SystemDrawing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Drawing")).GetReference(filePath: "System.Drawing.dll", display: "System.Drawing (aspnet90)"); + } + return _SystemDrawing; + } + } + + private static PortableExecutableReference? _SystemDrawingPrimitives; + + /// + /// The for System.Drawing.Primitives.dll + /// + public static PortableExecutableReference SystemDrawingPrimitives + { + get + { + if (_SystemDrawingPrimitives is null) + { + _SystemDrawingPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Drawing.Primitives")).GetReference(filePath: "System.Drawing.Primitives.dll", display: "System.Drawing.Primitives (aspnet90)"); + } + return _SystemDrawingPrimitives; + } + } + + private static PortableExecutableReference? _SystemDynamicRuntime; + + /// + /// The for System.Dynamic.Runtime.dll + /// + public static PortableExecutableReference SystemDynamicRuntime + { + get + { + if (_SystemDynamicRuntime is null) + { + _SystemDynamicRuntime = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Dynamic.Runtime")).GetReference(filePath: "System.Dynamic.Runtime.dll", display: "System.Dynamic.Runtime (aspnet90)"); + } + return _SystemDynamicRuntime; + } + } + + private static PortableExecutableReference? _SystemFormatsAsn1; + + /// + /// The for System.Formats.Asn1.dll + /// + public static PortableExecutableReference SystemFormatsAsn1 + { + get + { + if (_SystemFormatsAsn1 is null) + { + _SystemFormatsAsn1 = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Formats.Asn1")).GetReference(filePath: "System.Formats.Asn1.dll", display: "System.Formats.Asn1 (aspnet90)"); + } + return _SystemFormatsAsn1; + } + } + + private static PortableExecutableReference? _SystemFormatsTar; + + /// + /// The for System.Formats.Tar.dll + /// + public static PortableExecutableReference SystemFormatsTar + { + get + { + if (_SystemFormatsTar is null) + { + _SystemFormatsTar = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Formats.Tar")).GetReference(filePath: "System.Formats.Tar.dll", display: "System.Formats.Tar (aspnet90)"); + } + return _SystemFormatsTar; + } + } + + private static PortableExecutableReference? _SystemGlobalizationCalendars; + + /// + /// The for System.Globalization.Calendars.dll + /// + public static PortableExecutableReference SystemGlobalizationCalendars + { + get + { + if (_SystemGlobalizationCalendars is null) + { + _SystemGlobalizationCalendars = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Globalization.Calendars")).GetReference(filePath: "System.Globalization.Calendars.dll", display: "System.Globalization.Calendars (aspnet90)"); + } + return _SystemGlobalizationCalendars; + } + } + + private static PortableExecutableReference? _SystemGlobalization; + + /// + /// The for System.Globalization.dll + /// + public static PortableExecutableReference SystemGlobalization + { + get + { + if (_SystemGlobalization is null) + { + _SystemGlobalization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Globalization")).GetReference(filePath: "System.Globalization.dll", display: "System.Globalization (aspnet90)"); + } + return _SystemGlobalization; + } + } + + private static PortableExecutableReference? _SystemGlobalizationExtensions; + + /// + /// The for System.Globalization.Extensions.dll + /// + public static PortableExecutableReference SystemGlobalizationExtensions + { + get + { + if (_SystemGlobalizationExtensions is null) + { + _SystemGlobalizationExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Globalization.Extensions")).GetReference(filePath: "System.Globalization.Extensions.dll", display: "System.Globalization.Extensions (aspnet90)"); + } + return _SystemGlobalizationExtensions; + } + } + + private static PortableExecutableReference? _SystemIOCompressionBrotli; + + /// + /// The for System.IO.Compression.Brotli.dll + /// + public static PortableExecutableReference SystemIOCompressionBrotli + { + get + { + if (_SystemIOCompressionBrotli is null) + { + _SystemIOCompressionBrotli = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Compression.Brotli")).GetReference(filePath: "System.IO.Compression.Brotli.dll", display: "System.IO.Compression.Brotli (aspnet90)"); + } + return _SystemIOCompressionBrotli; + } + } + + private static PortableExecutableReference? _SystemIOCompression; + + /// + /// The for System.IO.Compression.dll + /// + public static PortableExecutableReference SystemIOCompression + { + get + { + if (_SystemIOCompression is null) + { + _SystemIOCompression = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Compression")).GetReference(filePath: "System.IO.Compression.dll", display: "System.IO.Compression (aspnet90)"); + } + return _SystemIOCompression; + } + } + + private static PortableExecutableReference? _SystemIOCompressionFileSystem; + + /// + /// The for System.IO.Compression.FileSystem.dll + /// + public static PortableExecutableReference SystemIOCompressionFileSystem + { + get + { + if (_SystemIOCompressionFileSystem is null) + { + _SystemIOCompressionFileSystem = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Compression.FileSystem")).GetReference(filePath: "System.IO.Compression.FileSystem.dll", display: "System.IO.Compression.FileSystem (aspnet90)"); + } + return _SystemIOCompressionFileSystem; + } + } + + private static PortableExecutableReference? _SystemIOCompressionZipFile; + + /// + /// The for System.IO.Compression.ZipFile.dll + /// + public static PortableExecutableReference SystemIOCompressionZipFile + { + get + { + if (_SystemIOCompressionZipFile is null) + { + _SystemIOCompressionZipFile = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Compression.ZipFile")).GetReference(filePath: "System.IO.Compression.ZipFile.dll", display: "System.IO.Compression.ZipFile (aspnet90)"); + } + return _SystemIOCompressionZipFile; + } + } + + private static PortableExecutableReference? _SystemIO; + + /// + /// The for System.IO.dll + /// + public static PortableExecutableReference SystemIO + { + get + { + if (_SystemIO is null) + { + _SystemIO = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO")).GetReference(filePath: "System.IO.dll", display: "System.IO (aspnet90)"); + } + return _SystemIO; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemAccessControl; + + /// + /// The for System.IO.FileSystem.AccessControl.dll + /// + public static PortableExecutableReference SystemIOFileSystemAccessControl + { + get + { + if (_SystemIOFileSystemAccessControl is null) + { + _SystemIOFileSystemAccessControl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.FileSystem.AccessControl")).GetReference(filePath: "System.IO.FileSystem.AccessControl.dll", display: "System.IO.FileSystem.AccessControl (aspnet90)"); + } + return _SystemIOFileSystemAccessControl; + } + } + + private static PortableExecutableReference? _SystemIOFileSystem; + + /// + /// The for System.IO.FileSystem.dll + /// + public static PortableExecutableReference SystemIOFileSystem + { + get + { + if (_SystemIOFileSystem is null) + { + _SystemIOFileSystem = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.FileSystem")).GetReference(filePath: "System.IO.FileSystem.dll", display: "System.IO.FileSystem (aspnet90)"); + } + return _SystemIOFileSystem; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemDriveInfo; + + /// + /// The for System.IO.FileSystem.DriveInfo.dll + /// + public static PortableExecutableReference SystemIOFileSystemDriveInfo + { + get + { + if (_SystemIOFileSystemDriveInfo is null) + { + _SystemIOFileSystemDriveInfo = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.FileSystem.DriveInfo")).GetReference(filePath: "System.IO.FileSystem.DriveInfo.dll", display: "System.IO.FileSystem.DriveInfo (aspnet90)"); + } + return _SystemIOFileSystemDriveInfo; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemPrimitives; + + /// + /// The for System.IO.FileSystem.Primitives.dll + /// + public static PortableExecutableReference SystemIOFileSystemPrimitives + { + get + { + if (_SystemIOFileSystemPrimitives is null) + { + _SystemIOFileSystemPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.FileSystem.Primitives")).GetReference(filePath: "System.IO.FileSystem.Primitives.dll", display: "System.IO.FileSystem.Primitives (aspnet90)"); + } + return _SystemIOFileSystemPrimitives; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemWatcher; + + /// + /// The for System.IO.FileSystem.Watcher.dll + /// + public static PortableExecutableReference SystemIOFileSystemWatcher + { + get + { + if (_SystemIOFileSystemWatcher is null) + { + _SystemIOFileSystemWatcher = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.FileSystem.Watcher")).GetReference(filePath: "System.IO.FileSystem.Watcher.dll", display: "System.IO.FileSystem.Watcher (aspnet90)"); + } + return _SystemIOFileSystemWatcher; + } + } + + private static PortableExecutableReference? _SystemIOIsolatedStorage; + + /// + /// The for System.IO.IsolatedStorage.dll + /// + public static PortableExecutableReference SystemIOIsolatedStorage + { + get + { + if (_SystemIOIsolatedStorage is null) + { + _SystemIOIsolatedStorage = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.IsolatedStorage")).GetReference(filePath: "System.IO.IsolatedStorage.dll", display: "System.IO.IsolatedStorage (aspnet90)"); + } + return _SystemIOIsolatedStorage; + } + } + + private static PortableExecutableReference? _SystemIOMemoryMappedFiles; + + /// + /// The for System.IO.MemoryMappedFiles.dll + /// + public static PortableExecutableReference SystemIOMemoryMappedFiles + { + get + { + if (_SystemIOMemoryMappedFiles is null) + { + _SystemIOMemoryMappedFiles = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.MemoryMappedFiles")).GetReference(filePath: "System.IO.MemoryMappedFiles.dll", display: "System.IO.MemoryMappedFiles (aspnet90)"); + } + return _SystemIOMemoryMappedFiles; + } + } + + private static PortableExecutableReference? _SystemIOPipelines; + + /// + /// The for System.IO.Pipelines.dll + /// + public static PortableExecutableReference SystemIOPipelines + { + get + { + if (_SystemIOPipelines is null) + { + _SystemIOPipelines = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Pipelines")).GetReference(filePath: "System.IO.Pipelines.dll", display: "System.IO.Pipelines (aspnet90)"); + } + return _SystemIOPipelines; + } + } + + private static PortableExecutableReference? _SystemIOPipesAccessControl; + + /// + /// The for System.IO.Pipes.AccessControl.dll + /// + public static PortableExecutableReference SystemIOPipesAccessControl + { + get + { + if (_SystemIOPipesAccessControl is null) + { + _SystemIOPipesAccessControl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Pipes.AccessControl")).GetReference(filePath: "System.IO.Pipes.AccessControl.dll", display: "System.IO.Pipes.AccessControl (aspnet90)"); + } + return _SystemIOPipesAccessControl; + } + } + + private static PortableExecutableReference? _SystemIOPipes; + + /// + /// The for System.IO.Pipes.dll + /// + public static PortableExecutableReference SystemIOPipes + { + get + { + if (_SystemIOPipes is null) + { + _SystemIOPipes = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.Pipes")).GetReference(filePath: "System.IO.Pipes.dll", display: "System.IO.Pipes (aspnet90)"); + } + return _SystemIOPipes; + } + } + + private static PortableExecutableReference? _SystemIOUnmanagedMemoryStream; + + /// + /// The for System.IO.UnmanagedMemoryStream.dll + /// + public static PortableExecutableReference SystemIOUnmanagedMemoryStream + { + get + { + if (_SystemIOUnmanagedMemoryStream is null) + { + _SystemIOUnmanagedMemoryStream = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.IO.UnmanagedMemoryStream")).GetReference(filePath: "System.IO.UnmanagedMemoryStream.dll", display: "System.IO.UnmanagedMemoryStream (aspnet90)"); + } + return _SystemIOUnmanagedMemoryStream; + } + } + + private static PortableExecutableReference? _SystemLinq; + + /// + /// The for System.Linq.dll + /// + public static PortableExecutableReference SystemLinq + { + get + { + if (_SystemLinq is null) + { + _SystemLinq = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Linq")).GetReference(filePath: "System.Linq.dll", display: "System.Linq (aspnet90)"); + } + return _SystemLinq; + } + } + + private static PortableExecutableReference? _SystemLinqExpressions; + + /// + /// The for System.Linq.Expressions.dll + /// + public static PortableExecutableReference SystemLinqExpressions + { + get + { + if (_SystemLinqExpressions is null) + { + _SystemLinqExpressions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Linq.Expressions")).GetReference(filePath: "System.Linq.Expressions.dll", display: "System.Linq.Expressions (aspnet90)"); + } + return _SystemLinqExpressions; + } + } + + private static PortableExecutableReference? _SystemLinqParallel; + + /// + /// The for System.Linq.Parallel.dll + /// + public static PortableExecutableReference SystemLinqParallel + { + get + { + if (_SystemLinqParallel is null) + { + _SystemLinqParallel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Linq.Parallel")).GetReference(filePath: "System.Linq.Parallel.dll", display: "System.Linq.Parallel (aspnet90)"); + } + return _SystemLinqParallel; + } + } + + private static PortableExecutableReference? _SystemLinqQueryable; + + /// + /// The for System.Linq.Queryable.dll + /// + public static PortableExecutableReference SystemLinqQueryable + { + get + { + if (_SystemLinqQueryable is null) + { + _SystemLinqQueryable = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Linq.Queryable")).GetReference(filePath: "System.Linq.Queryable.dll", display: "System.Linq.Queryable (aspnet90)"); + } + return _SystemLinqQueryable; + } + } + + private static PortableExecutableReference? _SystemMemory; + + /// + /// The for System.Memory.dll + /// + public static PortableExecutableReference SystemMemory + { + get + { + if (_SystemMemory is null) + { + _SystemMemory = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Memory")).GetReference(filePath: "System.Memory.dll", display: "System.Memory (aspnet90)"); + } + return _SystemMemory; + } + } + + private static PortableExecutableReference? _SystemNet; + + /// + /// The for System.Net.dll + /// + public static PortableExecutableReference SystemNet + { + get + { + if (_SystemNet is null) + { + _SystemNet = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net")).GetReference(filePath: "System.Net.dll", display: "System.Net (aspnet90)"); + } + return _SystemNet; + } + } + + private static PortableExecutableReference? _SystemNetHttp; + + /// + /// The for System.Net.Http.dll + /// + public static PortableExecutableReference SystemNetHttp + { + get + { + if (_SystemNetHttp is null) + { + _SystemNetHttp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Http")).GetReference(filePath: "System.Net.Http.dll", display: "System.Net.Http (aspnet90)"); + } + return _SystemNetHttp; + } + } + + private static PortableExecutableReference? _SystemNetHttpJson; + + /// + /// The for System.Net.Http.Json.dll + /// + public static PortableExecutableReference SystemNetHttpJson + { + get + { + if (_SystemNetHttpJson is null) + { + _SystemNetHttpJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Http.Json")).GetReference(filePath: "System.Net.Http.Json.dll", display: "System.Net.Http.Json (aspnet90)"); + } + return _SystemNetHttpJson; + } + } + + private static PortableExecutableReference? _SystemNetHttpListener; + + /// + /// The for System.Net.HttpListener.dll + /// + public static PortableExecutableReference SystemNetHttpListener + { + get + { + if (_SystemNetHttpListener is null) + { + _SystemNetHttpListener = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.HttpListener")).GetReference(filePath: "System.Net.HttpListener.dll", display: "System.Net.HttpListener (aspnet90)"); + } + return _SystemNetHttpListener; + } + } + + private static PortableExecutableReference? _SystemNetMail; + + /// + /// The for System.Net.Mail.dll + /// + public static PortableExecutableReference SystemNetMail + { + get + { + if (_SystemNetMail is null) + { + _SystemNetMail = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Mail")).GetReference(filePath: "System.Net.Mail.dll", display: "System.Net.Mail (aspnet90)"); + } + return _SystemNetMail; + } + } + + private static PortableExecutableReference? _SystemNetNameResolution; + + /// + /// The for System.Net.NameResolution.dll + /// + public static PortableExecutableReference SystemNetNameResolution + { + get + { + if (_SystemNetNameResolution is null) + { + _SystemNetNameResolution = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.NameResolution")).GetReference(filePath: "System.Net.NameResolution.dll", display: "System.Net.NameResolution (aspnet90)"); + } + return _SystemNetNameResolution; + } + } + + private static PortableExecutableReference? _SystemNetNetworkInformation; + + /// + /// The for System.Net.NetworkInformation.dll + /// + public static PortableExecutableReference SystemNetNetworkInformation + { + get + { + if (_SystemNetNetworkInformation is null) + { + _SystemNetNetworkInformation = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.NetworkInformation")).GetReference(filePath: "System.Net.NetworkInformation.dll", display: "System.Net.NetworkInformation (aspnet90)"); + } + return _SystemNetNetworkInformation; + } + } + + private static PortableExecutableReference? _SystemNetPing; + + /// + /// The for System.Net.Ping.dll + /// + public static PortableExecutableReference SystemNetPing + { + get + { + if (_SystemNetPing is null) + { + _SystemNetPing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Ping")).GetReference(filePath: "System.Net.Ping.dll", display: "System.Net.Ping (aspnet90)"); + } + return _SystemNetPing; + } + } + + private static PortableExecutableReference? _SystemNetPrimitives; + + /// + /// The for System.Net.Primitives.dll + /// + public static PortableExecutableReference SystemNetPrimitives + { + get + { + if (_SystemNetPrimitives is null) + { + _SystemNetPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Primitives")).GetReference(filePath: "System.Net.Primitives.dll", display: "System.Net.Primitives (aspnet90)"); + } + return _SystemNetPrimitives; + } + } + + private static PortableExecutableReference? _SystemNetQuic; + + /// + /// The for System.Net.Quic.dll + /// + public static PortableExecutableReference SystemNetQuic + { + get + { + if (_SystemNetQuic is null) + { + _SystemNetQuic = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Quic")).GetReference(filePath: "System.Net.Quic.dll", display: "System.Net.Quic (aspnet90)"); + } + return _SystemNetQuic; + } + } + + private static PortableExecutableReference? _SystemNetRequests; + + /// + /// The for System.Net.Requests.dll + /// + public static PortableExecutableReference SystemNetRequests + { + get + { + if (_SystemNetRequests is null) + { + _SystemNetRequests = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Requests")).GetReference(filePath: "System.Net.Requests.dll", display: "System.Net.Requests (aspnet90)"); + } + return _SystemNetRequests; + } + } + + private static PortableExecutableReference? _SystemNetSecurity; + + /// + /// The for System.Net.Security.dll + /// + public static PortableExecutableReference SystemNetSecurity + { + get + { + if (_SystemNetSecurity is null) + { + _SystemNetSecurity = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Security")).GetReference(filePath: "System.Net.Security.dll", display: "System.Net.Security (aspnet90)"); + } + return _SystemNetSecurity; + } + } + + private static PortableExecutableReference? _SystemNetServicePoint; + + /// + /// The for System.Net.ServicePoint.dll + /// + public static PortableExecutableReference SystemNetServicePoint + { + get + { + if (_SystemNetServicePoint is null) + { + _SystemNetServicePoint = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.ServicePoint")).GetReference(filePath: "System.Net.ServicePoint.dll", display: "System.Net.ServicePoint (aspnet90)"); + } + return _SystemNetServicePoint; + } + } + + private static PortableExecutableReference? _SystemNetSockets; + + /// + /// The for System.Net.Sockets.dll + /// + public static PortableExecutableReference SystemNetSockets + { + get + { + if (_SystemNetSockets is null) + { + _SystemNetSockets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.Sockets")).GetReference(filePath: "System.Net.Sockets.dll", display: "System.Net.Sockets (aspnet90)"); + } + return _SystemNetSockets; + } + } + + private static PortableExecutableReference? _SystemNetWebClient; + + /// + /// The for System.Net.WebClient.dll + /// + public static PortableExecutableReference SystemNetWebClient + { + get + { + if (_SystemNetWebClient is null) + { + _SystemNetWebClient = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.WebClient")).GetReference(filePath: "System.Net.WebClient.dll", display: "System.Net.WebClient (aspnet90)"); + } + return _SystemNetWebClient; + } + } + + private static PortableExecutableReference? _SystemNetWebHeaderCollection; + + /// + /// The for System.Net.WebHeaderCollection.dll + /// + public static PortableExecutableReference SystemNetWebHeaderCollection + { + get + { + if (_SystemNetWebHeaderCollection is null) + { + _SystemNetWebHeaderCollection = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.WebHeaderCollection")).GetReference(filePath: "System.Net.WebHeaderCollection.dll", display: "System.Net.WebHeaderCollection (aspnet90)"); + } + return _SystemNetWebHeaderCollection; + } + } + + private static PortableExecutableReference? _SystemNetWebProxy; + + /// + /// The for System.Net.WebProxy.dll + /// + public static PortableExecutableReference SystemNetWebProxy + { + get + { + if (_SystemNetWebProxy is null) + { + _SystemNetWebProxy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.WebProxy")).GetReference(filePath: "System.Net.WebProxy.dll", display: "System.Net.WebProxy (aspnet90)"); + } + return _SystemNetWebProxy; + } + } + + private static PortableExecutableReference? _SystemNetWebSocketsClient; + + /// + /// The for System.Net.WebSockets.Client.dll + /// + public static PortableExecutableReference SystemNetWebSocketsClient + { + get + { + if (_SystemNetWebSocketsClient is null) + { + _SystemNetWebSocketsClient = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.WebSockets.Client")).GetReference(filePath: "System.Net.WebSockets.Client.dll", display: "System.Net.WebSockets.Client (aspnet90)"); + } + return _SystemNetWebSocketsClient; + } + } + + private static PortableExecutableReference? _SystemNetWebSockets; + + /// + /// The for System.Net.WebSockets.dll + /// + public static PortableExecutableReference SystemNetWebSockets + { + get + { + if (_SystemNetWebSockets is null) + { + _SystemNetWebSockets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Net.WebSockets")).GetReference(filePath: "System.Net.WebSockets.dll", display: "System.Net.WebSockets (aspnet90)"); + } + return _SystemNetWebSockets; + } + } + + private static PortableExecutableReference? _SystemNumerics; + + /// + /// The for System.Numerics.dll + /// + public static PortableExecutableReference SystemNumerics + { + get + { + if (_SystemNumerics is null) + { + _SystemNumerics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Numerics")).GetReference(filePath: "System.Numerics.dll", display: "System.Numerics (aspnet90)"); + } + return _SystemNumerics; + } + } + + private static PortableExecutableReference? _SystemNumericsVectors; + + /// + /// The for System.Numerics.Vectors.dll + /// + public static PortableExecutableReference SystemNumericsVectors + { + get + { + if (_SystemNumericsVectors is null) + { + _SystemNumericsVectors = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Numerics.Vectors")).GetReference(filePath: "System.Numerics.Vectors.dll", display: "System.Numerics.Vectors (aspnet90)"); + } + return _SystemNumericsVectors; + } + } + + private static PortableExecutableReference? _SystemObjectModel; + + /// + /// The for System.ObjectModel.dll + /// + public static PortableExecutableReference SystemObjectModel + { + get + { + if (_SystemObjectModel is null) + { + _SystemObjectModel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ObjectModel")).GetReference(filePath: "System.ObjectModel.dll", display: "System.ObjectModel (aspnet90)"); + } + return _SystemObjectModel; + } + } + + private static PortableExecutableReference? _SystemReflectionDispatchProxy; + + /// + /// The for System.Reflection.DispatchProxy.dll + /// + public static PortableExecutableReference SystemReflectionDispatchProxy + { + get + { + if (_SystemReflectionDispatchProxy is null) + { + _SystemReflectionDispatchProxy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.DispatchProxy")).GetReference(filePath: "System.Reflection.DispatchProxy.dll", display: "System.Reflection.DispatchProxy (aspnet90)"); + } + return _SystemReflectionDispatchProxy; + } + } + + private static PortableExecutableReference? _SystemReflection; + + /// + /// The for System.Reflection.dll + /// + public static PortableExecutableReference SystemReflection + { + get + { + if (_SystemReflection is null) + { + _SystemReflection = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection")).GetReference(filePath: "System.Reflection.dll", display: "System.Reflection (aspnet90)"); + } + return _SystemReflection; + } + } + + private static PortableExecutableReference? _SystemReflectionEmit; + + /// + /// The for System.Reflection.Emit.dll + /// + public static PortableExecutableReference SystemReflectionEmit + { + get + { + if (_SystemReflectionEmit is null) + { + _SystemReflectionEmit = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.Emit")).GetReference(filePath: "System.Reflection.Emit.dll", display: "System.Reflection.Emit (aspnet90)"); + } + return _SystemReflectionEmit; + } + } + + private static PortableExecutableReference? _SystemReflectionEmitILGeneration; + + /// + /// The for System.Reflection.Emit.ILGeneration.dll + /// + public static PortableExecutableReference SystemReflectionEmitILGeneration + { + get + { + if (_SystemReflectionEmitILGeneration is null) + { + _SystemReflectionEmitILGeneration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.Emit.ILGeneration")).GetReference(filePath: "System.Reflection.Emit.ILGeneration.dll", display: "System.Reflection.Emit.ILGeneration (aspnet90)"); + } + return _SystemReflectionEmitILGeneration; + } + } + + private static PortableExecutableReference? _SystemReflectionEmitLightweight; + + /// + /// The for System.Reflection.Emit.Lightweight.dll + /// + public static PortableExecutableReference SystemReflectionEmitLightweight + { + get + { + if (_SystemReflectionEmitLightweight is null) + { + _SystemReflectionEmitLightweight = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.Emit.Lightweight")).GetReference(filePath: "System.Reflection.Emit.Lightweight.dll", display: "System.Reflection.Emit.Lightweight (aspnet90)"); + } + return _SystemReflectionEmitLightweight; + } + } + + private static PortableExecutableReference? _SystemReflectionExtensions; + + /// + /// The for System.Reflection.Extensions.dll + /// + public static PortableExecutableReference SystemReflectionExtensions + { + get + { + if (_SystemReflectionExtensions is null) + { + _SystemReflectionExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.Extensions")).GetReference(filePath: "System.Reflection.Extensions.dll", display: "System.Reflection.Extensions (aspnet90)"); + } + return _SystemReflectionExtensions; + } + } + + private static PortableExecutableReference? _SystemReflectionMetadata; + + /// + /// The for System.Reflection.Metadata.dll + /// + public static PortableExecutableReference SystemReflectionMetadata + { + get + { + if (_SystemReflectionMetadata is null) + { + _SystemReflectionMetadata = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.Metadata")).GetReference(filePath: "System.Reflection.Metadata.dll", display: "System.Reflection.Metadata (aspnet90)"); + } + return _SystemReflectionMetadata; + } + } + + private static PortableExecutableReference? _SystemReflectionPrimitives; + + /// + /// The for System.Reflection.Primitives.dll + /// + public static PortableExecutableReference SystemReflectionPrimitives + { + get + { + if (_SystemReflectionPrimitives is null) + { + _SystemReflectionPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.Primitives")).GetReference(filePath: "System.Reflection.Primitives.dll", display: "System.Reflection.Primitives (aspnet90)"); + } + return _SystemReflectionPrimitives; + } + } + + private static PortableExecutableReference? _SystemReflectionTypeExtensions; + + /// + /// The for System.Reflection.TypeExtensions.dll + /// + public static PortableExecutableReference SystemReflectionTypeExtensions + { + get + { + if (_SystemReflectionTypeExtensions is null) + { + _SystemReflectionTypeExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Reflection.TypeExtensions")).GetReference(filePath: "System.Reflection.TypeExtensions.dll", display: "System.Reflection.TypeExtensions (aspnet90)"); + } + return _SystemReflectionTypeExtensions; + } + } + + private static PortableExecutableReference? _SystemResourcesReader; + + /// + /// The for System.Resources.Reader.dll + /// + public static PortableExecutableReference SystemResourcesReader + { + get + { + if (_SystemResourcesReader is null) + { + _SystemResourcesReader = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Resources.Reader")).GetReference(filePath: "System.Resources.Reader.dll", display: "System.Resources.Reader (aspnet90)"); + } + return _SystemResourcesReader; + } + } + + private static PortableExecutableReference? _SystemResourcesResourceManager; + + /// + /// The for System.Resources.ResourceManager.dll + /// + public static PortableExecutableReference SystemResourcesResourceManager + { + get + { + if (_SystemResourcesResourceManager is null) + { + _SystemResourcesResourceManager = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Resources.ResourceManager")).GetReference(filePath: "System.Resources.ResourceManager.dll", display: "System.Resources.ResourceManager (aspnet90)"); + } + return _SystemResourcesResourceManager; + } + } + + private static PortableExecutableReference? _SystemResourcesWriter; + + /// + /// The for System.Resources.Writer.dll + /// + public static PortableExecutableReference SystemResourcesWriter + { + get + { + if (_SystemResourcesWriter is null) + { + _SystemResourcesWriter = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Resources.Writer")).GetReference(filePath: "System.Resources.Writer.dll", display: "System.Resources.Writer (aspnet90)"); + } + return _SystemResourcesWriter; + } + } + + private static PortableExecutableReference? _SystemRuntimeCompilerServicesUnsafe; + + /// + /// The for System.Runtime.CompilerServices.Unsafe.dll + /// + public static PortableExecutableReference SystemRuntimeCompilerServicesUnsafe + { + get + { + if (_SystemRuntimeCompilerServicesUnsafe is null) + { + _SystemRuntimeCompilerServicesUnsafe = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.CompilerServices.Unsafe")).GetReference(filePath: "System.Runtime.CompilerServices.Unsafe.dll", display: "System.Runtime.CompilerServices.Unsafe (aspnet90)"); + } + return _SystemRuntimeCompilerServicesUnsafe; + } + } + + private static PortableExecutableReference? _SystemRuntimeCompilerServicesVisualC; + + /// + /// The for System.Runtime.CompilerServices.VisualC.dll + /// + public static PortableExecutableReference SystemRuntimeCompilerServicesVisualC + { + get + { + if (_SystemRuntimeCompilerServicesVisualC is null) + { + _SystemRuntimeCompilerServicesVisualC = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.CompilerServices.VisualC")).GetReference(filePath: "System.Runtime.CompilerServices.VisualC.dll", display: "System.Runtime.CompilerServices.VisualC (aspnet90)"); + } + return _SystemRuntimeCompilerServicesVisualC; + } + } + + private static PortableExecutableReference? _SystemRuntime; + + /// + /// The for System.Runtime.dll + /// + public static PortableExecutableReference SystemRuntime + { + get + { + if (_SystemRuntime is null) + { + _SystemRuntime = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime")).GetReference(filePath: "System.Runtime.dll", display: "System.Runtime (aspnet90)"); + } + return _SystemRuntime; + } + } + + private static PortableExecutableReference? _SystemRuntimeExtensions; + + /// + /// The for System.Runtime.Extensions.dll + /// + public static PortableExecutableReference SystemRuntimeExtensions + { + get + { + if (_SystemRuntimeExtensions is null) + { + _SystemRuntimeExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Extensions")).GetReference(filePath: "System.Runtime.Extensions.dll", display: "System.Runtime.Extensions (aspnet90)"); + } + return _SystemRuntimeExtensions; + } + } + + private static PortableExecutableReference? _SystemRuntimeHandles; + + /// + /// The for System.Runtime.Handles.dll + /// + public static PortableExecutableReference SystemRuntimeHandles + { + get + { + if (_SystemRuntimeHandles is null) + { + _SystemRuntimeHandles = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Handles")).GetReference(filePath: "System.Runtime.Handles.dll", display: "System.Runtime.Handles (aspnet90)"); + } + return _SystemRuntimeHandles; + } + } + + private static PortableExecutableReference? _SystemRuntimeInteropServices; + + /// + /// The for System.Runtime.InteropServices.dll + /// + public static PortableExecutableReference SystemRuntimeInteropServices + { + get + { + if (_SystemRuntimeInteropServices is null) + { + _SystemRuntimeInteropServices = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.InteropServices")).GetReference(filePath: "System.Runtime.InteropServices.dll", display: "System.Runtime.InteropServices (aspnet90)"); + } + return _SystemRuntimeInteropServices; + } + } + + private static PortableExecutableReference? _SystemRuntimeInteropServicesJavaScript; + + /// + /// The for System.Runtime.InteropServices.JavaScript.dll + /// + public static PortableExecutableReference SystemRuntimeInteropServicesJavaScript + { + get + { + if (_SystemRuntimeInteropServicesJavaScript is null) + { + _SystemRuntimeInteropServicesJavaScript = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.InteropServices.JavaScript")).GetReference(filePath: "System.Runtime.InteropServices.JavaScript.dll", display: "System.Runtime.InteropServices.JavaScript (aspnet90)"); + } + return _SystemRuntimeInteropServicesJavaScript; + } + } + + private static PortableExecutableReference? _SystemRuntimeInteropServicesRuntimeInformation; + + /// + /// The for System.Runtime.InteropServices.RuntimeInformation.dll + /// + public static PortableExecutableReference SystemRuntimeInteropServicesRuntimeInformation + { + get + { + if (_SystemRuntimeInteropServicesRuntimeInformation is null) + { + _SystemRuntimeInteropServicesRuntimeInformation = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.InteropServices.RuntimeInformation")).GetReference(filePath: "System.Runtime.InteropServices.RuntimeInformation.dll", display: "System.Runtime.InteropServices.RuntimeInformation (aspnet90)"); + } + return _SystemRuntimeInteropServicesRuntimeInformation; + } + } + + private static PortableExecutableReference? _SystemRuntimeIntrinsics; + + /// + /// The for System.Runtime.Intrinsics.dll + /// + public static PortableExecutableReference SystemRuntimeIntrinsics + { + get + { + if (_SystemRuntimeIntrinsics is null) + { + _SystemRuntimeIntrinsics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Intrinsics")).GetReference(filePath: "System.Runtime.Intrinsics.dll", display: "System.Runtime.Intrinsics (aspnet90)"); + } + return _SystemRuntimeIntrinsics; + } + } + + private static PortableExecutableReference? _SystemRuntimeLoader; + + /// + /// The for System.Runtime.Loader.dll + /// + public static PortableExecutableReference SystemRuntimeLoader + { + get + { + if (_SystemRuntimeLoader is null) + { + _SystemRuntimeLoader = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Loader")).GetReference(filePath: "System.Runtime.Loader.dll", display: "System.Runtime.Loader (aspnet90)"); + } + return _SystemRuntimeLoader; + } + } + + private static PortableExecutableReference? _SystemRuntimeNumerics; + + /// + /// The for System.Runtime.Numerics.dll + /// + public static PortableExecutableReference SystemRuntimeNumerics + { + get + { + if (_SystemRuntimeNumerics is null) + { + _SystemRuntimeNumerics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Numerics")).GetReference(filePath: "System.Runtime.Numerics.dll", display: "System.Runtime.Numerics (aspnet90)"); + } + return _SystemRuntimeNumerics; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerialization; + + /// + /// The for System.Runtime.Serialization.dll + /// + public static PortableExecutableReference SystemRuntimeSerialization + { + get + { + if (_SystemRuntimeSerialization is null) + { + _SystemRuntimeSerialization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Serialization")).GetReference(filePath: "System.Runtime.Serialization.dll", display: "System.Runtime.Serialization (aspnet90)"); + } + return _SystemRuntimeSerialization; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationFormatters; + + /// + /// The for System.Runtime.Serialization.Formatters.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationFormatters + { + get + { + if (_SystemRuntimeSerializationFormatters is null) + { + _SystemRuntimeSerializationFormatters = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Serialization.Formatters")).GetReference(filePath: "System.Runtime.Serialization.Formatters.dll", display: "System.Runtime.Serialization.Formatters (aspnet90)"); + } + return _SystemRuntimeSerializationFormatters; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationJson; + + /// + /// The for System.Runtime.Serialization.Json.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationJson + { + get + { + if (_SystemRuntimeSerializationJson is null) + { + _SystemRuntimeSerializationJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Serialization.Json")).GetReference(filePath: "System.Runtime.Serialization.Json.dll", display: "System.Runtime.Serialization.Json (aspnet90)"); + } + return _SystemRuntimeSerializationJson; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationPrimitives; + + /// + /// The for System.Runtime.Serialization.Primitives.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationPrimitives + { + get + { + if (_SystemRuntimeSerializationPrimitives is null) + { + _SystemRuntimeSerializationPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Serialization.Primitives")).GetReference(filePath: "System.Runtime.Serialization.Primitives.dll", display: "System.Runtime.Serialization.Primitives (aspnet90)"); + } + return _SystemRuntimeSerializationPrimitives; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationXml; + + /// + /// The for System.Runtime.Serialization.Xml.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationXml + { + get + { + if (_SystemRuntimeSerializationXml is null) + { + _SystemRuntimeSerializationXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Runtime.Serialization.Xml")).GetReference(filePath: "System.Runtime.Serialization.Xml.dll", display: "System.Runtime.Serialization.Xml (aspnet90)"); + } + return _SystemRuntimeSerializationXml; + } + } + + private static PortableExecutableReference? _SystemSecurityAccessControl; + + /// + /// The for System.Security.AccessControl.dll + /// + public static PortableExecutableReference SystemSecurityAccessControl + { + get + { + if (_SystemSecurityAccessControl is null) + { + _SystemSecurityAccessControl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.AccessControl")).GetReference(filePath: "System.Security.AccessControl.dll", display: "System.Security.AccessControl (aspnet90)"); + } + return _SystemSecurityAccessControl; + } + } + + private static PortableExecutableReference? _SystemSecurityClaims; + + /// + /// The for System.Security.Claims.dll + /// + public static PortableExecutableReference SystemSecurityClaims + { + get + { + if (_SystemSecurityClaims is null) + { + _SystemSecurityClaims = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Claims")).GetReference(filePath: "System.Security.Claims.dll", display: "System.Security.Claims (aspnet90)"); + } + return _SystemSecurityClaims; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyAlgorithms; + + /// + /// The for System.Security.Cryptography.Algorithms.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyAlgorithms + { + get + { + if (_SystemSecurityCryptographyAlgorithms is null) + { + _SystemSecurityCryptographyAlgorithms = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.Algorithms")).GetReference(filePath: "System.Security.Cryptography.Algorithms.dll", display: "System.Security.Cryptography.Algorithms (aspnet90)"); + } + return _SystemSecurityCryptographyAlgorithms; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyCng; + + /// + /// The for System.Security.Cryptography.Cng.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyCng + { + get + { + if (_SystemSecurityCryptographyCng is null) + { + _SystemSecurityCryptographyCng = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.Cng")).GetReference(filePath: "System.Security.Cryptography.Cng.dll", display: "System.Security.Cryptography.Cng (aspnet90)"); + } + return _SystemSecurityCryptographyCng; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyCsp; + + /// + /// The for System.Security.Cryptography.Csp.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyCsp + { + get + { + if (_SystemSecurityCryptographyCsp is null) + { + _SystemSecurityCryptographyCsp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.Csp")).GetReference(filePath: "System.Security.Cryptography.Csp.dll", display: "System.Security.Cryptography.Csp (aspnet90)"); + } + return _SystemSecurityCryptographyCsp; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptography; + + /// + /// The for System.Security.Cryptography.dll + /// + public static PortableExecutableReference SystemSecurityCryptography + { + get + { + if (_SystemSecurityCryptography is null) + { + _SystemSecurityCryptography = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography")).GetReference(filePath: "System.Security.Cryptography.dll", display: "System.Security.Cryptography (aspnet90)"); + } + return _SystemSecurityCryptography; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyEncoding; + + /// + /// The for System.Security.Cryptography.Encoding.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyEncoding + { + get + { + if (_SystemSecurityCryptographyEncoding is null) + { + _SystemSecurityCryptographyEncoding = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.Encoding")).GetReference(filePath: "System.Security.Cryptography.Encoding.dll", display: "System.Security.Cryptography.Encoding (aspnet90)"); + } + return _SystemSecurityCryptographyEncoding; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyOpenSsl; + + /// + /// The for System.Security.Cryptography.OpenSsl.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyOpenSsl + { + get + { + if (_SystemSecurityCryptographyOpenSsl is null) + { + _SystemSecurityCryptographyOpenSsl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.OpenSsl")).GetReference(filePath: "System.Security.Cryptography.OpenSsl.dll", display: "System.Security.Cryptography.OpenSsl (aspnet90)"); + } + return _SystemSecurityCryptographyOpenSsl; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyPrimitives; + + /// + /// The for System.Security.Cryptography.Primitives.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyPrimitives + { + get + { + if (_SystemSecurityCryptographyPrimitives is null) + { + _SystemSecurityCryptographyPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.Primitives")).GetReference(filePath: "System.Security.Cryptography.Primitives.dll", display: "System.Security.Cryptography.Primitives (aspnet90)"); + } + return _SystemSecurityCryptographyPrimitives; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyX509Certificates; + + /// + /// The for System.Security.Cryptography.X509Certificates.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyX509Certificates + { + get + { + if (_SystemSecurityCryptographyX509Certificates is null) + { + _SystemSecurityCryptographyX509Certificates = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.X509Certificates")).GetReference(filePath: "System.Security.Cryptography.X509Certificates.dll", display: "System.Security.Cryptography.X509Certificates (aspnet90)"); + } + return _SystemSecurityCryptographyX509Certificates; + } + } + + private static PortableExecutableReference? _SystemSecurity; + + /// + /// The for System.Security.dll + /// + public static PortableExecutableReference SystemSecurity + { + get + { + if (_SystemSecurity is null) + { + _SystemSecurity = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security")).GetReference(filePath: "System.Security.dll", display: "System.Security (aspnet90)"); + } + return _SystemSecurity; + } + } + + private static PortableExecutableReference? _SystemSecurityPrincipal; + + /// + /// The for System.Security.Principal.dll + /// + public static PortableExecutableReference SystemSecurityPrincipal + { + get + { + if (_SystemSecurityPrincipal is null) + { + _SystemSecurityPrincipal = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Principal")).GetReference(filePath: "System.Security.Principal.dll", display: "System.Security.Principal (aspnet90)"); + } + return _SystemSecurityPrincipal; + } + } + + private static PortableExecutableReference? _SystemSecurityPrincipalWindows; + + /// + /// The for System.Security.Principal.Windows.dll + /// + public static PortableExecutableReference SystemSecurityPrincipalWindows + { + get + { + if (_SystemSecurityPrincipalWindows is null) + { + _SystemSecurityPrincipalWindows = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Principal.Windows")).GetReference(filePath: "System.Security.Principal.Windows.dll", display: "System.Security.Principal.Windows (aspnet90)"); + } + return _SystemSecurityPrincipalWindows; + } + } + + private static PortableExecutableReference? _SystemSecuritySecureString; + + /// + /// The for System.Security.SecureString.dll + /// + public static PortableExecutableReference SystemSecuritySecureString + { + get + { + if (_SystemSecuritySecureString is null) + { + _SystemSecuritySecureString = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.SecureString")).GetReference(filePath: "System.Security.SecureString.dll", display: "System.Security.SecureString (aspnet90)"); + } + return _SystemSecuritySecureString; + } + } + + private static PortableExecutableReference? _SystemServiceModelWeb; + + /// + /// The for System.ServiceModel.Web.dll + /// + public static PortableExecutableReference SystemServiceModelWeb + { + get + { + if (_SystemServiceModelWeb is null) + { + _SystemServiceModelWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ServiceModel.Web")).GetReference(filePath: "System.ServiceModel.Web.dll", display: "System.ServiceModel.Web (aspnet90)"); + } + return _SystemServiceModelWeb; + } + } + + private static PortableExecutableReference? _SystemServiceProcess; + + /// + /// The for System.ServiceProcess.dll + /// + public static PortableExecutableReference SystemServiceProcess + { + get + { + if (_SystemServiceProcess is null) + { + _SystemServiceProcess = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ServiceProcess")).GetReference(filePath: "System.ServiceProcess.dll", display: "System.ServiceProcess (aspnet90)"); + } + return _SystemServiceProcess; + } + } + + private static PortableExecutableReference? _SystemTextEncodingCodePages; + + /// + /// The for System.Text.Encoding.CodePages.dll + /// + public static PortableExecutableReference SystemTextEncodingCodePages + { + get + { + if (_SystemTextEncodingCodePages is null) + { + _SystemTextEncodingCodePages = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Text.Encoding.CodePages")).GetReference(filePath: "System.Text.Encoding.CodePages.dll", display: "System.Text.Encoding.CodePages (aspnet90)"); + } + return _SystemTextEncodingCodePages; + } + } + + private static PortableExecutableReference? _SystemTextEncoding; + + /// + /// The for System.Text.Encoding.dll + /// + public static PortableExecutableReference SystemTextEncoding + { + get + { + if (_SystemTextEncoding is null) + { + _SystemTextEncoding = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Text.Encoding")).GetReference(filePath: "System.Text.Encoding.dll", display: "System.Text.Encoding (aspnet90)"); + } + return _SystemTextEncoding; + } + } + + private static PortableExecutableReference? _SystemTextEncodingExtensions; + + /// + /// The for System.Text.Encoding.Extensions.dll + /// + public static PortableExecutableReference SystemTextEncodingExtensions + { + get + { + if (_SystemTextEncodingExtensions is null) + { + _SystemTextEncodingExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Text.Encoding.Extensions")).GetReference(filePath: "System.Text.Encoding.Extensions.dll", display: "System.Text.Encoding.Extensions (aspnet90)"); + } + return _SystemTextEncodingExtensions; + } + } + + private static PortableExecutableReference? _SystemTextEncodingsWeb; + + /// + /// The for System.Text.Encodings.Web.dll + /// + public static PortableExecutableReference SystemTextEncodingsWeb + { + get + { + if (_SystemTextEncodingsWeb is null) + { + _SystemTextEncodingsWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Text.Encodings.Web")).GetReference(filePath: "System.Text.Encodings.Web.dll", display: "System.Text.Encodings.Web (aspnet90)"); + } + return _SystemTextEncodingsWeb; + } + } + + private static PortableExecutableReference? _SystemTextJson; + + /// + /// The for System.Text.Json.dll + /// + public static PortableExecutableReference SystemTextJson + { + get + { + if (_SystemTextJson is null) + { + _SystemTextJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Text.Json")).GetReference(filePath: "System.Text.Json.dll", display: "System.Text.Json (aspnet90)"); + } + return _SystemTextJson; + } + } + + private static PortableExecutableReference? _SystemTextRegularExpressions; + + /// + /// The for System.Text.RegularExpressions.dll + /// + public static PortableExecutableReference SystemTextRegularExpressions + { + get + { + if (_SystemTextRegularExpressions is null) + { + _SystemTextRegularExpressions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Text.RegularExpressions")).GetReference(filePath: "System.Text.RegularExpressions.dll", display: "System.Text.RegularExpressions (aspnet90)"); + } + return _SystemTextRegularExpressions; + } + } + + private static PortableExecutableReference? _SystemThreadingChannels; + + /// + /// The for System.Threading.Channels.dll + /// + public static PortableExecutableReference SystemThreadingChannels + { + get + { + if (_SystemThreadingChannels is null) + { + _SystemThreadingChannels = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Channels")).GetReference(filePath: "System.Threading.Channels.dll", display: "System.Threading.Channels (aspnet90)"); + } + return _SystemThreadingChannels; + } + } + + private static PortableExecutableReference? _SystemThreading; + + /// + /// The for System.Threading.dll + /// + public static PortableExecutableReference SystemThreading + { + get + { + if (_SystemThreading is null) + { + _SystemThreading = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading")).GetReference(filePath: "System.Threading.dll", display: "System.Threading (aspnet90)"); + } + return _SystemThreading; + } + } + + private static PortableExecutableReference? _SystemThreadingOverlapped; + + /// + /// The for System.Threading.Overlapped.dll + /// + public static PortableExecutableReference SystemThreadingOverlapped + { + get + { + if (_SystemThreadingOverlapped is null) + { + _SystemThreadingOverlapped = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Overlapped")).GetReference(filePath: "System.Threading.Overlapped.dll", display: "System.Threading.Overlapped (aspnet90)"); + } + return _SystemThreadingOverlapped; + } + } + + private static PortableExecutableReference? _SystemThreadingTasksDataflow; + + /// + /// The for System.Threading.Tasks.Dataflow.dll + /// + public static PortableExecutableReference SystemThreadingTasksDataflow + { + get + { + if (_SystemThreadingTasksDataflow is null) + { + _SystemThreadingTasksDataflow = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Tasks.Dataflow")).GetReference(filePath: "System.Threading.Tasks.Dataflow.dll", display: "System.Threading.Tasks.Dataflow (aspnet90)"); + } + return _SystemThreadingTasksDataflow; + } + } + + private static PortableExecutableReference? _SystemThreadingTasks; + + /// + /// The for System.Threading.Tasks.dll + /// + public static PortableExecutableReference SystemThreadingTasks + { + get + { + if (_SystemThreadingTasks is null) + { + _SystemThreadingTasks = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Tasks")).GetReference(filePath: "System.Threading.Tasks.dll", display: "System.Threading.Tasks (aspnet90)"); + } + return _SystemThreadingTasks; + } + } + + private static PortableExecutableReference? _SystemThreadingTasksExtensions; + + /// + /// The for System.Threading.Tasks.Extensions.dll + /// + public static PortableExecutableReference SystemThreadingTasksExtensions + { + get + { + if (_SystemThreadingTasksExtensions is null) + { + _SystemThreadingTasksExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Tasks.Extensions")).GetReference(filePath: "System.Threading.Tasks.Extensions.dll", display: "System.Threading.Tasks.Extensions (aspnet90)"); + } + return _SystemThreadingTasksExtensions; + } + } + + private static PortableExecutableReference? _SystemThreadingTasksParallel; + + /// + /// The for System.Threading.Tasks.Parallel.dll + /// + public static PortableExecutableReference SystemThreadingTasksParallel + { + get + { + if (_SystemThreadingTasksParallel is null) + { + _SystemThreadingTasksParallel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Tasks.Parallel")).GetReference(filePath: "System.Threading.Tasks.Parallel.dll", display: "System.Threading.Tasks.Parallel (aspnet90)"); + } + return _SystemThreadingTasksParallel; + } + } + + private static PortableExecutableReference? _SystemThreadingThread; + + /// + /// The for System.Threading.Thread.dll + /// + public static PortableExecutableReference SystemThreadingThread + { + get + { + if (_SystemThreadingThread is null) + { + _SystemThreadingThread = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Thread")).GetReference(filePath: "System.Threading.Thread.dll", display: "System.Threading.Thread (aspnet90)"); + } + return _SystemThreadingThread; + } + } + + private static PortableExecutableReference? _SystemThreadingThreadPool; + + /// + /// The for System.Threading.ThreadPool.dll + /// + public static PortableExecutableReference SystemThreadingThreadPool + { + get + { + if (_SystemThreadingThreadPool is null) + { + _SystemThreadingThreadPool = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.ThreadPool")).GetReference(filePath: "System.Threading.ThreadPool.dll", display: "System.Threading.ThreadPool (aspnet90)"); + } + return _SystemThreadingThreadPool; + } + } + + private static PortableExecutableReference? _SystemThreadingTimer; + + /// + /// The for System.Threading.Timer.dll + /// + public static PortableExecutableReference SystemThreadingTimer + { + get + { + if (_SystemThreadingTimer is null) + { + _SystemThreadingTimer = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.Timer")).GetReference(filePath: "System.Threading.Timer.dll", display: "System.Threading.Timer (aspnet90)"); + } + return _SystemThreadingTimer; + } + } + + private static PortableExecutableReference? _SystemTransactions; + + /// + /// The for System.Transactions.dll + /// + public static PortableExecutableReference SystemTransactions + { + get + { + if (_SystemTransactions is null) + { + _SystemTransactions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Transactions")).GetReference(filePath: "System.Transactions.dll", display: "System.Transactions (aspnet90)"); + } + return _SystemTransactions; + } + } + + private static PortableExecutableReference? _SystemTransactionsLocal; + + /// + /// The for System.Transactions.Local.dll + /// + public static PortableExecutableReference SystemTransactionsLocal + { + get + { + if (_SystemTransactionsLocal is null) + { + _SystemTransactionsLocal = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Transactions.Local")).GetReference(filePath: "System.Transactions.Local.dll", display: "System.Transactions.Local (aspnet90)"); + } + return _SystemTransactionsLocal; + } + } + + private static PortableExecutableReference? _SystemValueTuple; + + /// + /// The for System.ValueTuple.dll + /// + public static PortableExecutableReference SystemValueTuple + { + get + { + if (_SystemValueTuple is null) + { + _SystemValueTuple = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.ValueTuple")).GetReference(filePath: "System.ValueTuple.dll", display: "System.ValueTuple (aspnet90)"); + } + return _SystemValueTuple; + } + } + + private static PortableExecutableReference? _SystemWeb; + + /// + /// The for System.Web.dll + /// + public static PortableExecutableReference SystemWeb + { + get + { + if (_SystemWeb is null) + { + _SystemWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Web")).GetReference(filePath: "System.Web.dll", display: "System.Web (aspnet90)"); + } + return _SystemWeb; + } + } + + private static PortableExecutableReference? _SystemWebHttpUtility; + + /// + /// The for System.Web.HttpUtility.dll + /// + public static PortableExecutableReference SystemWebHttpUtility + { + get + { + if (_SystemWebHttpUtility is null) + { + _SystemWebHttpUtility = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Web.HttpUtility")).GetReference(filePath: "System.Web.HttpUtility.dll", display: "System.Web.HttpUtility (aspnet90)"); + } + return _SystemWebHttpUtility; + } + } + + private static PortableExecutableReference? _SystemWindows; + + /// + /// The for System.Windows.dll + /// + public static PortableExecutableReference SystemWindows + { + get + { + if (_SystemWindows is null) + { + _SystemWindows = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Windows")).GetReference(filePath: "System.Windows.dll", display: "System.Windows (aspnet90)"); + } + return _SystemWindows; + } + } + + private static PortableExecutableReference? _SystemXml; + + /// + /// The for System.Xml.dll + /// + public static PortableExecutableReference SystemXml + { + get + { + if (_SystemXml is null) + { + _SystemXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml")).GetReference(filePath: "System.Xml.dll", display: "System.Xml (aspnet90)"); + } + return _SystemXml; + } + } + + private static PortableExecutableReference? _SystemXmlLinq; + + /// + /// The for System.Xml.Linq.dll + /// + public static PortableExecutableReference SystemXmlLinq + { + get + { + if (_SystemXmlLinq is null) + { + _SystemXmlLinq = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.Linq")).GetReference(filePath: "System.Xml.Linq.dll", display: "System.Xml.Linq (aspnet90)"); + } + return _SystemXmlLinq; + } + } + + private static PortableExecutableReference? _SystemXmlReaderWriter; + + /// + /// The for System.Xml.ReaderWriter.dll + /// + public static PortableExecutableReference SystemXmlReaderWriter + { + get + { + if (_SystemXmlReaderWriter is null) + { + _SystemXmlReaderWriter = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.ReaderWriter")).GetReference(filePath: "System.Xml.ReaderWriter.dll", display: "System.Xml.ReaderWriter (aspnet90)"); + } + return _SystemXmlReaderWriter; + } + } + + private static PortableExecutableReference? _SystemXmlSerialization; + + /// + /// The for System.Xml.Serialization.dll + /// + public static PortableExecutableReference SystemXmlSerialization + { + get + { + if (_SystemXmlSerialization is null) + { + _SystemXmlSerialization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.Serialization")).GetReference(filePath: "System.Xml.Serialization.dll", display: "System.Xml.Serialization (aspnet90)"); + } + return _SystemXmlSerialization; + } + } + + private static PortableExecutableReference? _SystemXmlXDocument; + + /// + /// The for System.Xml.XDocument.dll + /// + public static PortableExecutableReference SystemXmlXDocument + { + get + { + if (_SystemXmlXDocument is null) + { + _SystemXmlXDocument = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.XDocument")).GetReference(filePath: "System.Xml.XDocument.dll", display: "System.Xml.XDocument (aspnet90)"); + } + return _SystemXmlXDocument; + } + } + + private static PortableExecutableReference? _SystemXmlXmlDocument; + + /// + /// The for System.Xml.XmlDocument.dll + /// + public static PortableExecutableReference SystemXmlXmlDocument + { + get + { + if (_SystemXmlXmlDocument is null) + { + _SystemXmlXmlDocument = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.XmlDocument")).GetReference(filePath: "System.Xml.XmlDocument.dll", display: "System.Xml.XmlDocument (aspnet90)"); + } + return _SystemXmlXmlDocument; + } + } + + private static PortableExecutableReference? _SystemXmlXmlSerializer; + + /// + /// The for System.Xml.XmlSerializer.dll + /// + public static PortableExecutableReference SystemXmlXmlSerializer + { + get + { + if (_SystemXmlXmlSerializer is null) + { + _SystemXmlXmlSerializer = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.XmlSerializer")).GetReference(filePath: "System.Xml.XmlSerializer.dll", display: "System.Xml.XmlSerializer (aspnet90)"); + } + return _SystemXmlXmlSerializer; + } + } + + private static PortableExecutableReference? _SystemXmlXPath; + + /// + /// The for System.Xml.XPath.dll + /// + public static PortableExecutableReference SystemXmlXPath + { + get + { + if (_SystemXmlXPath is null) + { + _SystemXmlXPath = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.XPath")).GetReference(filePath: "System.Xml.XPath.dll", display: "System.Xml.XPath (aspnet90)"); + } + return _SystemXmlXPath; + } + } + + private static PortableExecutableReference? _SystemXmlXPathXDocument; + + /// + /// The for System.Xml.XPath.XDocument.dll + /// + public static PortableExecutableReference SystemXmlXPathXDocument + { + get + { + if (_SystemXmlXPathXDocument is null) + { + _SystemXmlXPathXDocument = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Xml.XPath.XDocument")).GetReference(filePath: "System.Xml.XPath.XDocument.dll", display: "System.Xml.XPath.XDocument (aspnet90)"); + } + return _SystemXmlXPathXDocument; + } + } + + private static PortableExecutableReference? _WindowsBase; + + /// + /// The for WindowsBase.dll + /// + public static PortableExecutableReference WindowsBase + { + get + { + if (_WindowsBase is null) + { + _WindowsBase = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.WindowsBase")).GetReference(filePath: "WindowsBase.dll", display: "WindowsBase (aspnet90)"); + } + return _WindowsBase; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAntiforgery; + + /// + /// The for Microsoft.AspNetCore.Antiforgery.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAntiforgery + { + get + { + if (_MicrosoftAspNetCoreAntiforgery is null) + { + _MicrosoftAspNetCoreAntiforgery = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Antiforgery")).GetReference(filePath: "Microsoft.AspNetCore.Antiforgery.dll", display: "Microsoft.AspNetCore.Antiforgery (aspnet90)"); + } + return _MicrosoftAspNetCoreAntiforgery; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthenticationAbstractions; + + /// + /// The for Microsoft.AspNetCore.Authentication.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationAbstractions + { + get + { + if (_MicrosoftAspNetCoreAuthenticationAbstractions is null) + { + _MicrosoftAspNetCoreAuthenticationAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authentication.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Abstractions.dll", display: "Microsoft.AspNetCore.Authentication.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthenticationAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthenticationBearerToken; + + /// + /// The for Microsoft.AspNetCore.Authentication.BearerToken.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationBearerToken + { + get + { + if (_MicrosoftAspNetCoreAuthenticationBearerToken is null) + { + _MicrosoftAspNetCoreAuthenticationBearerToken = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authentication.BearerToken")).GetReference(filePath: "Microsoft.AspNetCore.Authentication.BearerToken.dll", display: "Microsoft.AspNetCore.Authentication.BearerToken (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthenticationBearerToken; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthenticationCookies; + + /// + /// The for Microsoft.AspNetCore.Authentication.Cookies.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationCookies + { + get + { + if (_MicrosoftAspNetCoreAuthenticationCookies is null) + { + _MicrosoftAspNetCoreAuthenticationCookies = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authentication.Cookies")).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Cookies.dll", display: "Microsoft.AspNetCore.Authentication.Cookies (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthenticationCookies; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthenticationCore; + + /// + /// The for Microsoft.AspNetCore.Authentication.Core.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationCore + { + get + { + if (_MicrosoftAspNetCoreAuthenticationCore is null) + { + _MicrosoftAspNetCoreAuthenticationCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authentication.Core")).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Core.dll", display: "Microsoft.AspNetCore.Authentication.Core (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthenticationCore; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthentication; + + /// + /// The for Microsoft.AspNetCore.Authentication.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthentication + { + get + { + if (_MicrosoftAspNetCoreAuthentication is null) + { + _MicrosoftAspNetCoreAuthentication = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authentication")).GetReference(filePath: "Microsoft.AspNetCore.Authentication.dll", display: "Microsoft.AspNetCore.Authentication (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthentication; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthenticationOAuth; + + /// + /// The for Microsoft.AspNetCore.Authentication.OAuth.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationOAuth + { + get + { + if (_MicrosoftAspNetCoreAuthenticationOAuth is null) + { + _MicrosoftAspNetCoreAuthenticationOAuth = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authentication.OAuth")).GetReference(filePath: "Microsoft.AspNetCore.Authentication.OAuth.dll", display: "Microsoft.AspNetCore.Authentication.OAuth (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthenticationOAuth; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthorization; + + /// + /// The for Microsoft.AspNetCore.Authorization.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthorization + { + get + { + if (_MicrosoftAspNetCoreAuthorization is null) + { + _MicrosoftAspNetCoreAuthorization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authorization")).GetReference(filePath: "Microsoft.AspNetCore.Authorization.dll", display: "Microsoft.AspNetCore.Authorization (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthorization; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreAuthorizationPolicy; + + /// + /// The for Microsoft.AspNetCore.Authorization.Policy.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreAuthorizationPolicy + { + get + { + if (_MicrosoftAspNetCoreAuthorizationPolicy is null) + { + _MicrosoftAspNetCoreAuthorizationPolicy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Authorization.Policy")).GetReference(filePath: "Microsoft.AspNetCore.Authorization.Policy.dll", display: "Microsoft.AspNetCore.Authorization.Policy (aspnet90)"); + } + return _MicrosoftAspNetCoreAuthorizationPolicy; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreComponentsAuthorization; + + /// + /// The for Microsoft.AspNetCore.Components.Authorization.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreComponentsAuthorization + { + get + { + if (_MicrosoftAspNetCoreComponentsAuthorization is null) + { + _MicrosoftAspNetCoreComponentsAuthorization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Components.Authorization")).GetReference(filePath: "Microsoft.AspNetCore.Components.Authorization.dll", display: "Microsoft.AspNetCore.Components.Authorization (aspnet90)"); + } + return _MicrosoftAspNetCoreComponentsAuthorization; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreComponents; + + /// + /// The for Microsoft.AspNetCore.Components.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreComponents + { + get + { + if (_MicrosoftAspNetCoreComponents is null) + { + _MicrosoftAspNetCoreComponents = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Components")).GetReference(filePath: "Microsoft.AspNetCore.Components.dll", display: "Microsoft.AspNetCore.Components (aspnet90)"); + } + return _MicrosoftAspNetCoreComponents; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreComponentsEndpoints; + + /// + /// The for Microsoft.AspNetCore.Components.Endpoints.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreComponentsEndpoints + { + get + { + if (_MicrosoftAspNetCoreComponentsEndpoints is null) + { + _MicrosoftAspNetCoreComponentsEndpoints = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Components.Endpoints")).GetReference(filePath: "Microsoft.AspNetCore.Components.Endpoints.dll", display: "Microsoft.AspNetCore.Components.Endpoints (aspnet90)"); + } + return _MicrosoftAspNetCoreComponentsEndpoints; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreComponentsForms; + + /// + /// The for Microsoft.AspNetCore.Components.Forms.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreComponentsForms + { + get + { + if (_MicrosoftAspNetCoreComponentsForms is null) + { + _MicrosoftAspNetCoreComponentsForms = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Components.Forms")).GetReference(filePath: "Microsoft.AspNetCore.Components.Forms.dll", display: "Microsoft.AspNetCore.Components.Forms (aspnet90)"); + } + return _MicrosoftAspNetCoreComponentsForms; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreComponentsServer; + + /// + /// The for Microsoft.AspNetCore.Components.Server.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreComponentsServer + { + get + { + if (_MicrosoftAspNetCoreComponentsServer is null) + { + _MicrosoftAspNetCoreComponentsServer = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Components.Server")).GetReference(filePath: "Microsoft.AspNetCore.Components.Server.dll", display: "Microsoft.AspNetCore.Components.Server (aspnet90)"); + } + return _MicrosoftAspNetCoreComponentsServer; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreComponentsWeb; + + /// + /// The for Microsoft.AspNetCore.Components.Web.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreComponentsWeb + { + get + { + if (_MicrosoftAspNetCoreComponentsWeb is null) + { + _MicrosoftAspNetCoreComponentsWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Components.Web")).GetReference(filePath: "Microsoft.AspNetCore.Components.Web.dll", display: "Microsoft.AspNetCore.Components.Web (aspnet90)"); + } + return _MicrosoftAspNetCoreComponentsWeb; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreConnectionsAbstractions; + + /// + /// The for Microsoft.AspNetCore.Connections.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreConnectionsAbstractions + { + get + { + if (_MicrosoftAspNetCoreConnectionsAbstractions is null) + { + _MicrosoftAspNetCoreConnectionsAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Connections.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Connections.Abstractions.dll", display: "Microsoft.AspNetCore.Connections.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreConnectionsAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreCookiePolicy; + + /// + /// The for Microsoft.AspNetCore.CookiePolicy.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreCookiePolicy + { + get + { + if (_MicrosoftAspNetCoreCookiePolicy is null) + { + _MicrosoftAspNetCoreCookiePolicy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.CookiePolicy")).GetReference(filePath: "Microsoft.AspNetCore.CookiePolicy.dll", display: "Microsoft.AspNetCore.CookiePolicy (aspnet90)"); + } + return _MicrosoftAspNetCoreCookiePolicy; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreCors; + + /// + /// The for Microsoft.AspNetCore.Cors.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreCors + { + get + { + if (_MicrosoftAspNetCoreCors is null) + { + _MicrosoftAspNetCoreCors = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Cors")).GetReference(filePath: "Microsoft.AspNetCore.Cors.dll", display: "Microsoft.AspNetCore.Cors (aspnet90)"); + } + return _MicrosoftAspNetCoreCors; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreCryptographyInternal; + + /// + /// The for Microsoft.AspNetCore.Cryptography.Internal.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreCryptographyInternal + { + get + { + if (_MicrosoftAspNetCoreCryptographyInternal is null) + { + _MicrosoftAspNetCoreCryptographyInternal = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Cryptography.Internal")).GetReference(filePath: "Microsoft.AspNetCore.Cryptography.Internal.dll", display: "Microsoft.AspNetCore.Cryptography.Internal (aspnet90)"); + } + return _MicrosoftAspNetCoreCryptographyInternal; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreCryptographyKeyDerivation; + + /// + /// The for Microsoft.AspNetCore.Cryptography.KeyDerivation.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreCryptographyKeyDerivation + { + get + { + if (_MicrosoftAspNetCoreCryptographyKeyDerivation is null) + { + _MicrosoftAspNetCoreCryptographyKeyDerivation = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Cryptography.KeyDerivation")).GetReference(filePath: "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", display: "Microsoft.AspNetCore.Cryptography.KeyDerivation (aspnet90)"); + } + return _MicrosoftAspNetCoreCryptographyKeyDerivation; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreDataProtectionAbstractions; + + /// + /// The for Microsoft.AspNetCore.DataProtection.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreDataProtectionAbstractions + { + get + { + if (_MicrosoftAspNetCoreDataProtectionAbstractions is null) + { + _MicrosoftAspNetCoreDataProtectionAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.DataProtection.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.Abstractions.dll", display: "Microsoft.AspNetCore.DataProtection.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreDataProtectionAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreDataProtection; + + /// + /// The for Microsoft.AspNetCore.DataProtection.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreDataProtection + { + get + { + if (_MicrosoftAspNetCoreDataProtection is null) + { + _MicrosoftAspNetCoreDataProtection = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.DataProtection")).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.dll", display: "Microsoft.AspNetCore.DataProtection (aspnet90)"); + } + return _MicrosoftAspNetCoreDataProtection; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreDataProtectionExtensions; + + /// + /// The for Microsoft.AspNetCore.DataProtection.Extensions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreDataProtectionExtensions + { + get + { + if (_MicrosoftAspNetCoreDataProtectionExtensions is null) + { + _MicrosoftAspNetCoreDataProtectionExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.DataProtection.Extensions")).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.Extensions.dll", display: "Microsoft.AspNetCore.DataProtection.Extensions (aspnet90)"); + } + return _MicrosoftAspNetCoreDataProtectionExtensions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreDiagnosticsAbstractions; + + /// + /// The for Microsoft.AspNetCore.Diagnostics.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreDiagnosticsAbstractions + { + get + { + if (_MicrosoftAspNetCoreDiagnosticsAbstractions is null) + { + _MicrosoftAspNetCoreDiagnosticsAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Diagnostics.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.Abstractions.dll", display: "Microsoft.AspNetCore.Diagnostics.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreDiagnosticsAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreDiagnostics; + + /// + /// The for Microsoft.AspNetCore.Diagnostics.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreDiagnostics + { + get + { + if (_MicrosoftAspNetCoreDiagnostics is null) + { + _MicrosoftAspNetCoreDiagnostics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Diagnostics")).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.dll", display: "Microsoft.AspNetCore.Diagnostics (aspnet90)"); + } + return _MicrosoftAspNetCoreDiagnostics; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreDiagnosticsHealthChecks; + + /// + /// The for Microsoft.AspNetCore.Diagnostics.HealthChecks.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreDiagnosticsHealthChecks + { + get + { + if (_MicrosoftAspNetCoreDiagnosticsHealthChecks is null) + { + _MicrosoftAspNetCoreDiagnosticsHealthChecks = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Diagnostics.HealthChecks")).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll", display: "Microsoft.AspNetCore.Diagnostics.HealthChecks (aspnet90)"); + } + return _MicrosoftAspNetCoreDiagnosticsHealthChecks; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCore; + + /// + /// The for Microsoft.AspNetCore.dll + /// + public static PortableExecutableReference MicrosoftAspNetCore + { + get + { + if (_MicrosoftAspNetCore is null) + { + _MicrosoftAspNetCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore")).GetReference(filePath: "Microsoft.AspNetCore.dll", display: "Microsoft.AspNetCore (aspnet90)"); + } + return _MicrosoftAspNetCore; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHostFiltering; + + /// + /// The for Microsoft.AspNetCore.HostFiltering.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHostFiltering + { + get + { + if (_MicrosoftAspNetCoreHostFiltering is null) + { + _MicrosoftAspNetCoreHostFiltering = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.HostFiltering")).GetReference(filePath: "Microsoft.AspNetCore.HostFiltering.dll", display: "Microsoft.AspNetCore.HostFiltering (aspnet90)"); + } + return _MicrosoftAspNetCoreHostFiltering; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHostingAbstractions; + + /// + /// The for Microsoft.AspNetCore.Hosting.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHostingAbstractions + { + get + { + if (_MicrosoftAspNetCoreHostingAbstractions is null) + { + _MicrosoftAspNetCoreHostingAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Hosting.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Hosting.Abstractions.dll", display: "Microsoft.AspNetCore.Hosting.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreHostingAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHosting; + + /// + /// The for Microsoft.AspNetCore.Hosting.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHosting + { + get + { + if (_MicrosoftAspNetCoreHosting is null) + { + _MicrosoftAspNetCoreHosting = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Hosting")).GetReference(filePath: "Microsoft.AspNetCore.Hosting.dll", display: "Microsoft.AspNetCore.Hosting (aspnet90)"); + } + return _MicrosoftAspNetCoreHosting; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHostingServerAbstractions; + + /// + /// The for Microsoft.AspNetCore.Hosting.Server.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHostingServerAbstractions + { + get + { + if (_MicrosoftAspNetCoreHostingServerAbstractions is null) + { + _MicrosoftAspNetCoreHostingServerAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Hosting.Server.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", display: "Microsoft.AspNetCore.Hosting.Server.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreHostingServerAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHtmlAbstractions; + + /// + /// The for Microsoft.AspNetCore.Html.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHtmlAbstractions + { + get + { + if (_MicrosoftAspNetCoreHtmlAbstractions is null) + { + _MicrosoftAspNetCoreHtmlAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Html.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Html.Abstractions.dll", display: "Microsoft.AspNetCore.Html.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreHtmlAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpAbstractions; + + /// + /// The for Microsoft.AspNetCore.Http.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpAbstractions + { + get + { + if (_MicrosoftAspNetCoreHttpAbstractions is null) + { + _MicrosoftAspNetCoreHttpAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Http.Abstractions.dll", display: "Microsoft.AspNetCore.Http.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpConnectionsCommon; + + /// + /// The for Microsoft.AspNetCore.Http.Connections.Common.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpConnectionsCommon + { + get + { + if (_MicrosoftAspNetCoreHttpConnectionsCommon is null) + { + _MicrosoftAspNetCoreHttpConnectionsCommon = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http.Connections.Common")).GetReference(filePath: "Microsoft.AspNetCore.Http.Connections.Common.dll", display: "Microsoft.AspNetCore.Http.Connections.Common (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpConnectionsCommon; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpConnections; + + /// + /// The for Microsoft.AspNetCore.Http.Connections.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpConnections + { + get + { + if (_MicrosoftAspNetCoreHttpConnections is null) + { + _MicrosoftAspNetCoreHttpConnections = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http.Connections")).GetReference(filePath: "Microsoft.AspNetCore.Http.Connections.dll", display: "Microsoft.AspNetCore.Http.Connections (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpConnections; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttp; + + /// + /// The for Microsoft.AspNetCore.Http.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttp + { + get + { + if (_MicrosoftAspNetCoreHttp is null) + { + _MicrosoftAspNetCoreHttp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http")).GetReference(filePath: "Microsoft.AspNetCore.Http.dll", display: "Microsoft.AspNetCore.Http (aspnet90)"); + } + return _MicrosoftAspNetCoreHttp; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpExtensions; + + /// + /// The for Microsoft.AspNetCore.Http.Extensions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpExtensions + { + get + { + if (_MicrosoftAspNetCoreHttpExtensions is null) + { + _MicrosoftAspNetCoreHttpExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http.Extensions")).GetReference(filePath: "Microsoft.AspNetCore.Http.Extensions.dll", display: "Microsoft.AspNetCore.Http.Extensions (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpExtensions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpFeatures; + + /// + /// The for Microsoft.AspNetCore.Http.Features.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpFeatures + { + get + { + if (_MicrosoftAspNetCoreHttpFeatures is null) + { + _MicrosoftAspNetCoreHttpFeatures = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http.Features")).GetReference(filePath: "Microsoft.AspNetCore.Http.Features.dll", display: "Microsoft.AspNetCore.Http.Features (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpFeatures; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpResults; + + /// + /// The for Microsoft.AspNetCore.Http.Results.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpResults + { + get + { + if (_MicrosoftAspNetCoreHttpResults is null) + { + _MicrosoftAspNetCoreHttpResults = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Http.Results")).GetReference(filePath: "Microsoft.AspNetCore.Http.Results.dll", display: "Microsoft.AspNetCore.Http.Results (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpResults; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpLogging; + + /// + /// The for Microsoft.AspNetCore.HttpLogging.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpLogging + { + get + { + if (_MicrosoftAspNetCoreHttpLogging is null) + { + _MicrosoftAspNetCoreHttpLogging = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.HttpLogging")).GetReference(filePath: "Microsoft.AspNetCore.HttpLogging.dll", display: "Microsoft.AspNetCore.HttpLogging (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpLogging; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpOverrides; + + /// + /// The for Microsoft.AspNetCore.HttpOverrides.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpOverrides + { + get + { + if (_MicrosoftAspNetCoreHttpOverrides is null) + { + _MicrosoftAspNetCoreHttpOverrides = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.HttpOverrides")).GetReference(filePath: "Microsoft.AspNetCore.HttpOverrides.dll", display: "Microsoft.AspNetCore.HttpOverrides (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpOverrides; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreHttpsPolicy; + + /// + /// The for Microsoft.AspNetCore.HttpsPolicy.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreHttpsPolicy + { + get + { + if (_MicrosoftAspNetCoreHttpsPolicy is null) + { + _MicrosoftAspNetCoreHttpsPolicy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.HttpsPolicy")).GetReference(filePath: "Microsoft.AspNetCore.HttpsPolicy.dll", display: "Microsoft.AspNetCore.HttpsPolicy (aspnet90)"); + } + return _MicrosoftAspNetCoreHttpsPolicy; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreIdentity; + + /// + /// The for Microsoft.AspNetCore.Identity.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreIdentity + { + get + { + if (_MicrosoftAspNetCoreIdentity is null) + { + _MicrosoftAspNetCoreIdentity = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Identity")).GetReference(filePath: "Microsoft.AspNetCore.Identity.dll", display: "Microsoft.AspNetCore.Identity (aspnet90)"); + } + return _MicrosoftAspNetCoreIdentity; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreLocalization; + + /// + /// The for Microsoft.AspNetCore.Localization.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreLocalization + { + get + { + if (_MicrosoftAspNetCoreLocalization is null) + { + _MicrosoftAspNetCoreLocalization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Localization")).GetReference(filePath: "Microsoft.AspNetCore.Localization.dll", display: "Microsoft.AspNetCore.Localization (aspnet90)"); + } + return _MicrosoftAspNetCoreLocalization; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreLocalizationRouting; + + /// + /// The for Microsoft.AspNetCore.Localization.Routing.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreLocalizationRouting + { + get + { + if (_MicrosoftAspNetCoreLocalizationRouting is null) + { + _MicrosoftAspNetCoreLocalizationRouting = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Localization.Routing")).GetReference(filePath: "Microsoft.AspNetCore.Localization.Routing.dll", display: "Microsoft.AspNetCore.Localization.Routing (aspnet90)"); + } + return _MicrosoftAspNetCoreLocalizationRouting; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMetadata; + + /// + /// The for Microsoft.AspNetCore.Metadata.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMetadata + { + get + { + if (_MicrosoftAspNetCoreMetadata is null) + { + _MicrosoftAspNetCoreMetadata = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Metadata")).GetReference(filePath: "Microsoft.AspNetCore.Metadata.dll", display: "Microsoft.AspNetCore.Metadata (aspnet90)"); + } + return _MicrosoftAspNetCoreMetadata; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcAbstractions; + + /// + /// The for Microsoft.AspNetCore.Mvc.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcAbstractions + { + get + { + if (_MicrosoftAspNetCoreMvcAbstractions is null) + { + _MicrosoftAspNetCoreMvcAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Abstractions.dll", display: "Microsoft.AspNetCore.Mvc.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcApiExplorer; + + /// + /// The for Microsoft.AspNetCore.Mvc.ApiExplorer.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcApiExplorer + { + get + { + if (_MicrosoftAspNetCoreMvcApiExplorer is null) + { + _MicrosoftAspNetCoreMvcApiExplorer = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.ApiExplorer")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.ApiExplorer.dll", display: "Microsoft.AspNetCore.Mvc.ApiExplorer (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcApiExplorer; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcCore; + + /// + /// The for Microsoft.AspNetCore.Mvc.Core.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcCore + { + get + { + if (_MicrosoftAspNetCoreMvcCore is null) + { + _MicrosoftAspNetCoreMvcCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Core")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Core.dll", display: "Microsoft.AspNetCore.Mvc.Core (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcCore; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcCors; + + /// + /// The for Microsoft.AspNetCore.Mvc.Cors.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcCors + { + get + { + if (_MicrosoftAspNetCoreMvcCors is null) + { + _MicrosoftAspNetCoreMvcCors = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Cors")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Cors.dll", display: "Microsoft.AspNetCore.Mvc.Cors (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcCors; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcDataAnnotations; + + /// + /// The for Microsoft.AspNetCore.Mvc.DataAnnotations.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcDataAnnotations + { + get + { + if (_MicrosoftAspNetCoreMvcDataAnnotations is null) + { + _MicrosoftAspNetCoreMvcDataAnnotations = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.DataAnnotations")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.DataAnnotations.dll", display: "Microsoft.AspNetCore.Mvc.DataAnnotations (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcDataAnnotations; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvc; + + /// + /// The for Microsoft.AspNetCore.Mvc.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvc + { + get + { + if (_MicrosoftAspNetCoreMvc is null) + { + _MicrosoftAspNetCoreMvc = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.dll", display: "Microsoft.AspNetCore.Mvc (aspnet90)"); + } + return _MicrosoftAspNetCoreMvc; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcFormattersJson; + + /// + /// The for Microsoft.AspNetCore.Mvc.Formatters.Json.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcFormattersJson + { + get + { + if (_MicrosoftAspNetCoreMvcFormattersJson is null) + { + _MicrosoftAspNetCoreMvcFormattersJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Formatters.Json")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Formatters.Json.dll", display: "Microsoft.AspNetCore.Mvc.Formatters.Json (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcFormattersJson; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcFormattersXml; + + /// + /// The for Microsoft.AspNetCore.Mvc.Formatters.Xml.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcFormattersXml + { + get + { + if (_MicrosoftAspNetCoreMvcFormattersXml is null) + { + _MicrosoftAspNetCoreMvcFormattersXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Formatters.Xml")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll", display: "Microsoft.AspNetCore.Mvc.Formatters.Xml (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcFormattersXml; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcLocalization; + + /// + /// The for Microsoft.AspNetCore.Mvc.Localization.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcLocalization + { + get + { + if (_MicrosoftAspNetCoreMvcLocalization is null) + { + _MicrosoftAspNetCoreMvcLocalization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Localization")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Localization.dll", display: "Microsoft.AspNetCore.Mvc.Localization (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcLocalization; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcRazor; + + /// + /// The for Microsoft.AspNetCore.Mvc.Razor.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcRazor + { + get + { + if (_MicrosoftAspNetCoreMvcRazor is null) + { + _MicrosoftAspNetCoreMvcRazor = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.Razor")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Razor.dll", display: "Microsoft.AspNetCore.Mvc.Razor (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcRazor; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcRazorPages; + + /// + /// The for Microsoft.AspNetCore.Mvc.RazorPages.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcRazorPages + { + get + { + if (_MicrosoftAspNetCoreMvcRazorPages is null) + { + _MicrosoftAspNetCoreMvcRazorPages = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.RazorPages")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.RazorPages.dll", display: "Microsoft.AspNetCore.Mvc.RazorPages (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcRazorPages; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcTagHelpers; + + /// + /// The for Microsoft.AspNetCore.Mvc.TagHelpers.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcTagHelpers + { + get + { + if (_MicrosoftAspNetCoreMvcTagHelpers is null) + { + _MicrosoftAspNetCoreMvcTagHelpers = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.TagHelpers")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.TagHelpers.dll", display: "Microsoft.AspNetCore.Mvc.TagHelpers (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcTagHelpers; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreMvcViewFeatures; + + /// + /// The for Microsoft.AspNetCore.Mvc.ViewFeatures.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreMvcViewFeatures + { + get + { + if (_MicrosoftAspNetCoreMvcViewFeatures is null) + { + _MicrosoftAspNetCoreMvcViewFeatures = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Mvc.ViewFeatures")).GetReference(filePath: "Microsoft.AspNetCore.Mvc.ViewFeatures.dll", display: "Microsoft.AspNetCore.Mvc.ViewFeatures (aspnet90)"); + } + return _MicrosoftAspNetCoreMvcViewFeatures; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreOutputCaching; + + /// + /// The for Microsoft.AspNetCore.OutputCaching.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreOutputCaching + { + get + { + if (_MicrosoftAspNetCoreOutputCaching is null) + { + _MicrosoftAspNetCoreOutputCaching = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.OutputCaching")).GetReference(filePath: "Microsoft.AspNetCore.OutputCaching.dll", display: "Microsoft.AspNetCore.OutputCaching (aspnet90)"); + } + return _MicrosoftAspNetCoreOutputCaching; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRateLimiting; + + /// + /// The for Microsoft.AspNetCore.RateLimiting.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRateLimiting + { + get + { + if (_MicrosoftAspNetCoreRateLimiting is null) + { + _MicrosoftAspNetCoreRateLimiting = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.RateLimiting")).GetReference(filePath: "Microsoft.AspNetCore.RateLimiting.dll", display: "Microsoft.AspNetCore.RateLimiting (aspnet90)"); + } + return _MicrosoftAspNetCoreRateLimiting; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRazor; + + /// + /// The for Microsoft.AspNetCore.Razor.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRazor + { + get + { + if (_MicrosoftAspNetCoreRazor is null) + { + _MicrosoftAspNetCoreRazor = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Razor")).GetReference(filePath: "Microsoft.AspNetCore.Razor.dll", display: "Microsoft.AspNetCore.Razor (aspnet90)"); + } + return _MicrosoftAspNetCoreRazor; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRazorRuntime; + + /// + /// The for Microsoft.AspNetCore.Razor.Runtime.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRazorRuntime + { + get + { + if (_MicrosoftAspNetCoreRazorRuntime is null) + { + _MicrosoftAspNetCoreRazorRuntime = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Razor.Runtime")).GetReference(filePath: "Microsoft.AspNetCore.Razor.Runtime.dll", display: "Microsoft.AspNetCore.Razor.Runtime (aspnet90)"); + } + return _MicrosoftAspNetCoreRazorRuntime; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRequestDecompression; + + /// + /// The for Microsoft.AspNetCore.RequestDecompression.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRequestDecompression + { + get + { + if (_MicrosoftAspNetCoreRequestDecompression is null) + { + _MicrosoftAspNetCoreRequestDecompression = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.RequestDecompression")).GetReference(filePath: "Microsoft.AspNetCore.RequestDecompression.dll", display: "Microsoft.AspNetCore.RequestDecompression (aspnet90)"); + } + return _MicrosoftAspNetCoreRequestDecompression; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreResponseCachingAbstractions; + + /// + /// The for Microsoft.AspNetCore.ResponseCaching.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreResponseCachingAbstractions + { + get + { + if (_MicrosoftAspNetCoreResponseCachingAbstractions is null) + { + _MicrosoftAspNetCoreResponseCachingAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.ResponseCaching.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", display: "Microsoft.AspNetCore.ResponseCaching.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreResponseCachingAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreResponseCaching; + + /// + /// The for Microsoft.AspNetCore.ResponseCaching.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreResponseCaching + { + get + { + if (_MicrosoftAspNetCoreResponseCaching is null) + { + _MicrosoftAspNetCoreResponseCaching = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.ResponseCaching")).GetReference(filePath: "Microsoft.AspNetCore.ResponseCaching.dll", display: "Microsoft.AspNetCore.ResponseCaching (aspnet90)"); + } + return _MicrosoftAspNetCoreResponseCaching; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreResponseCompression; + + /// + /// The for Microsoft.AspNetCore.ResponseCompression.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreResponseCompression + { + get + { + if (_MicrosoftAspNetCoreResponseCompression is null) + { + _MicrosoftAspNetCoreResponseCompression = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.ResponseCompression")).GetReference(filePath: "Microsoft.AspNetCore.ResponseCompression.dll", display: "Microsoft.AspNetCore.ResponseCompression (aspnet90)"); + } + return _MicrosoftAspNetCoreResponseCompression; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRewrite; + + /// + /// The for Microsoft.AspNetCore.Rewrite.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRewrite + { + get + { + if (_MicrosoftAspNetCoreRewrite is null) + { + _MicrosoftAspNetCoreRewrite = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Rewrite")).GetReference(filePath: "Microsoft.AspNetCore.Rewrite.dll", display: "Microsoft.AspNetCore.Rewrite (aspnet90)"); + } + return _MicrosoftAspNetCoreRewrite; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRoutingAbstractions; + + /// + /// The for Microsoft.AspNetCore.Routing.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRoutingAbstractions + { + get + { + if (_MicrosoftAspNetCoreRoutingAbstractions is null) + { + _MicrosoftAspNetCoreRoutingAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Routing.Abstractions")).GetReference(filePath: "Microsoft.AspNetCore.Routing.Abstractions.dll", display: "Microsoft.AspNetCore.Routing.Abstractions (aspnet90)"); + } + return _MicrosoftAspNetCoreRoutingAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreRouting; + + /// + /// The for Microsoft.AspNetCore.Routing.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreRouting + { + get + { + if (_MicrosoftAspNetCoreRouting is null) + { + _MicrosoftAspNetCoreRouting = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Routing")).GetReference(filePath: "Microsoft.AspNetCore.Routing.dll", display: "Microsoft.AspNetCore.Routing (aspnet90)"); + } + return _MicrosoftAspNetCoreRouting; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerHttpSys; + + /// + /// The for Microsoft.AspNetCore.Server.HttpSys.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerHttpSys + { + get + { + if (_MicrosoftAspNetCoreServerHttpSys is null) + { + _MicrosoftAspNetCoreServerHttpSys = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.HttpSys")).GetReference(filePath: "Microsoft.AspNetCore.Server.HttpSys.dll", display: "Microsoft.AspNetCore.Server.HttpSys (aspnet90)"); + } + return _MicrosoftAspNetCoreServerHttpSys; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerIIS; + + /// + /// The for Microsoft.AspNetCore.Server.IIS.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerIIS + { + get + { + if (_MicrosoftAspNetCoreServerIIS is null) + { + _MicrosoftAspNetCoreServerIIS = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.IIS")).GetReference(filePath: "Microsoft.AspNetCore.Server.IIS.dll", display: "Microsoft.AspNetCore.Server.IIS (aspnet90)"); + } + return _MicrosoftAspNetCoreServerIIS; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerIISIntegration; + + /// + /// The for Microsoft.AspNetCore.Server.IISIntegration.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerIISIntegration + { + get + { + if (_MicrosoftAspNetCoreServerIISIntegration is null) + { + _MicrosoftAspNetCoreServerIISIntegration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.IISIntegration")).GetReference(filePath: "Microsoft.AspNetCore.Server.IISIntegration.dll", display: "Microsoft.AspNetCore.Server.IISIntegration (aspnet90)"); + } + return _MicrosoftAspNetCoreServerIISIntegration; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerKestrelCore; + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Core.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelCore + { + get + { + if (_MicrosoftAspNetCoreServerKestrelCore is null) + { + _MicrosoftAspNetCoreServerKestrelCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.Kestrel.Core")).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Core.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Core (aspnet90)"); + } + return _MicrosoftAspNetCoreServerKestrelCore; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerKestrel; + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerKestrel + { + get + { + if (_MicrosoftAspNetCoreServerKestrel is null) + { + _MicrosoftAspNetCoreServerKestrel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.Kestrel")).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.dll", display: "Microsoft.AspNetCore.Server.Kestrel (aspnet90)"); + } + return _MicrosoftAspNetCoreServerKestrel; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerKestrelTransportNamedPipes; + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelTransportNamedPipes + { + get + { + if (_MicrosoftAspNetCoreServerKestrelTransportNamedPipes is null) + { + _MicrosoftAspNetCoreServerKestrelTransportNamedPipes = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes")).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (aspnet90)"); + } + return _MicrosoftAspNetCoreServerKestrelTransportNamedPipes; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerKestrelTransportQuic; + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelTransportQuic + { + get + { + if (_MicrosoftAspNetCoreServerKestrelTransportQuic is null) + { + _MicrosoftAspNetCoreServerKestrelTransportQuic = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.Quic")).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (aspnet90)"); + } + return _MicrosoftAspNetCoreServerKestrelTransportQuic; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreServerKestrelTransportSockets; + + /// + /// The for Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelTransportSockets + { + get + { + if (_MicrosoftAspNetCoreServerKestrelTransportSockets is null) + { + _MicrosoftAspNetCoreServerKestrelTransportSockets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets")).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (aspnet90)"); + } + return _MicrosoftAspNetCoreServerKestrelTransportSockets; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreSession; + + /// + /// The for Microsoft.AspNetCore.Session.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreSession + { + get + { + if (_MicrosoftAspNetCoreSession is null) + { + _MicrosoftAspNetCoreSession = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.Session")).GetReference(filePath: "Microsoft.AspNetCore.Session.dll", display: "Microsoft.AspNetCore.Session (aspnet90)"); + } + return _MicrosoftAspNetCoreSession; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreSignalRCommon; + + /// + /// The for Microsoft.AspNetCore.SignalR.Common.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreSignalRCommon + { + get + { + if (_MicrosoftAspNetCoreSignalRCommon is null) + { + _MicrosoftAspNetCoreSignalRCommon = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.SignalR.Common")).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Common.dll", display: "Microsoft.AspNetCore.SignalR.Common (aspnet90)"); + } + return _MicrosoftAspNetCoreSignalRCommon; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreSignalRCore; + + /// + /// The for Microsoft.AspNetCore.SignalR.Core.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreSignalRCore + { + get + { + if (_MicrosoftAspNetCoreSignalRCore is null) + { + _MicrosoftAspNetCoreSignalRCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.SignalR.Core")).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Core.dll", display: "Microsoft.AspNetCore.SignalR.Core (aspnet90)"); + } + return _MicrosoftAspNetCoreSignalRCore; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreSignalR; + + /// + /// The for Microsoft.AspNetCore.SignalR.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreSignalR + { + get + { + if (_MicrosoftAspNetCoreSignalR is null) + { + _MicrosoftAspNetCoreSignalR = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.SignalR")).GetReference(filePath: "Microsoft.AspNetCore.SignalR.dll", display: "Microsoft.AspNetCore.SignalR (aspnet90)"); + } + return _MicrosoftAspNetCoreSignalR; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreSignalRProtocolsJson; + + /// + /// The for Microsoft.AspNetCore.SignalR.Protocols.Json.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreSignalRProtocolsJson + { + get + { + if (_MicrosoftAspNetCoreSignalRProtocolsJson is null) + { + _MicrosoftAspNetCoreSignalRProtocolsJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.SignalR.Protocols.Json")).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Protocols.Json.dll", display: "Microsoft.AspNetCore.SignalR.Protocols.Json (aspnet90)"); + } + return _MicrosoftAspNetCoreSignalRProtocolsJson; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreStaticAssets; + + /// + /// The for Microsoft.AspNetCore.StaticAssets.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreStaticAssets + { + get + { + if (_MicrosoftAspNetCoreStaticAssets is null) + { + _MicrosoftAspNetCoreStaticAssets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.StaticAssets")).GetReference(filePath: "Microsoft.AspNetCore.StaticAssets.dll", display: "Microsoft.AspNetCore.StaticAssets (aspnet90)"); + } + return _MicrosoftAspNetCoreStaticAssets; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreStaticFiles; + + /// + /// The for Microsoft.AspNetCore.StaticFiles.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreStaticFiles + { + get + { + if (_MicrosoftAspNetCoreStaticFiles is null) + { + _MicrosoftAspNetCoreStaticFiles = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.StaticFiles")).GetReference(filePath: "Microsoft.AspNetCore.StaticFiles.dll", display: "Microsoft.AspNetCore.StaticFiles (aspnet90)"); + } + return _MicrosoftAspNetCoreStaticFiles; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreWebSockets; + + /// + /// The for Microsoft.AspNetCore.WebSockets.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreWebSockets + { + get + { + if (_MicrosoftAspNetCoreWebSockets is null) + { + _MicrosoftAspNetCoreWebSockets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.WebSockets")).GetReference(filePath: "Microsoft.AspNetCore.WebSockets.dll", display: "Microsoft.AspNetCore.WebSockets (aspnet90)"); + } + return _MicrosoftAspNetCoreWebSockets; + } + } + + private static PortableExecutableReference? _MicrosoftAspNetCoreWebUtilities; + + /// + /// The for Microsoft.AspNetCore.WebUtilities.dll + /// + public static PortableExecutableReference MicrosoftAspNetCoreWebUtilities + { + get + { + if (_MicrosoftAspNetCoreWebUtilities is null) + { + _MicrosoftAspNetCoreWebUtilities = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.AspNetCore.WebUtilities")).GetReference(filePath: "Microsoft.AspNetCore.WebUtilities.dll", display: "Microsoft.AspNetCore.WebUtilities (aspnet90)"); + } + return _MicrosoftAspNetCoreWebUtilities; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsCachingAbstractions; + + /// + /// The for Microsoft.Extensions.Caching.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsCachingAbstractions + { + get + { + if (_MicrosoftExtensionsCachingAbstractions is null) + { + _MicrosoftExtensionsCachingAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Caching.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Caching.Abstractions.dll", display: "Microsoft.Extensions.Caching.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsCachingAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsCachingMemory; + + /// + /// The for Microsoft.Extensions.Caching.Memory.dll + /// + public static PortableExecutableReference MicrosoftExtensionsCachingMemory + { + get + { + if (_MicrosoftExtensionsCachingMemory is null) + { + _MicrosoftExtensionsCachingMemory = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Caching.Memory")).GetReference(filePath: "Microsoft.Extensions.Caching.Memory.dll", display: "Microsoft.Extensions.Caching.Memory (aspnet90)"); + } + return _MicrosoftExtensionsCachingMemory; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationAbstractions; + + /// + /// The for Microsoft.Extensions.Configuration.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationAbstractions + { + get + { + if (_MicrosoftExtensionsConfigurationAbstractions is null) + { + _MicrosoftExtensionsConfigurationAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Configuration.Abstractions.dll", display: "Microsoft.Extensions.Configuration.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationBinder; + + /// + /// The for Microsoft.Extensions.Configuration.Binder.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationBinder + { + get + { + if (_MicrosoftExtensionsConfigurationBinder is null) + { + _MicrosoftExtensionsConfigurationBinder = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.Binder")).GetReference(filePath: "Microsoft.Extensions.Configuration.Binder.dll", display: "Microsoft.Extensions.Configuration.Binder (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationBinder; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationCommandLine; + + /// + /// The for Microsoft.Extensions.Configuration.CommandLine.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationCommandLine + { + get + { + if (_MicrosoftExtensionsConfigurationCommandLine is null) + { + _MicrosoftExtensionsConfigurationCommandLine = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.CommandLine")).GetReference(filePath: "Microsoft.Extensions.Configuration.CommandLine.dll", display: "Microsoft.Extensions.Configuration.CommandLine (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationCommandLine; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfiguration; + + /// + /// The for Microsoft.Extensions.Configuration.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfiguration + { + get + { + if (_MicrosoftExtensionsConfiguration is null) + { + _MicrosoftExtensionsConfiguration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration")).GetReference(filePath: "Microsoft.Extensions.Configuration.dll", display: "Microsoft.Extensions.Configuration (aspnet90)"); + } + return _MicrosoftExtensionsConfiguration; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationEnvironmentVariables; + + /// + /// The for Microsoft.Extensions.Configuration.EnvironmentVariables.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationEnvironmentVariables + { + get + { + if (_MicrosoftExtensionsConfigurationEnvironmentVariables is null) + { + _MicrosoftExtensionsConfigurationEnvironmentVariables = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.EnvironmentVariables")).GetReference(filePath: "Microsoft.Extensions.Configuration.EnvironmentVariables.dll", display: "Microsoft.Extensions.Configuration.EnvironmentVariables (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationEnvironmentVariables; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationFileExtensions; + + /// + /// The for Microsoft.Extensions.Configuration.FileExtensions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationFileExtensions + { + get + { + if (_MicrosoftExtensionsConfigurationFileExtensions is null) + { + _MicrosoftExtensionsConfigurationFileExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.FileExtensions")).GetReference(filePath: "Microsoft.Extensions.Configuration.FileExtensions.dll", display: "Microsoft.Extensions.Configuration.FileExtensions (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationFileExtensions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationIni; + + /// + /// The for Microsoft.Extensions.Configuration.Ini.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationIni + { + get + { + if (_MicrosoftExtensionsConfigurationIni is null) + { + _MicrosoftExtensionsConfigurationIni = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.Ini")).GetReference(filePath: "Microsoft.Extensions.Configuration.Ini.dll", display: "Microsoft.Extensions.Configuration.Ini (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationIni; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationJson; + + /// + /// The for Microsoft.Extensions.Configuration.Json.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationJson + { + get + { + if (_MicrosoftExtensionsConfigurationJson is null) + { + _MicrosoftExtensionsConfigurationJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.Json")).GetReference(filePath: "Microsoft.Extensions.Configuration.Json.dll", display: "Microsoft.Extensions.Configuration.Json (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationJson; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationKeyPerFile; + + /// + /// The for Microsoft.Extensions.Configuration.KeyPerFile.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationKeyPerFile + { + get + { + if (_MicrosoftExtensionsConfigurationKeyPerFile is null) + { + _MicrosoftExtensionsConfigurationKeyPerFile = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.KeyPerFile")).GetReference(filePath: "Microsoft.Extensions.Configuration.KeyPerFile.dll", display: "Microsoft.Extensions.Configuration.KeyPerFile (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationKeyPerFile; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationUserSecrets; + + /// + /// The for Microsoft.Extensions.Configuration.UserSecrets.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationUserSecrets + { + get + { + if (_MicrosoftExtensionsConfigurationUserSecrets is null) + { + _MicrosoftExtensionsConfigurationUserSecrets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.UserSecrets")).GetReference(filePath: "Microsoft.Extensions.Configuration.UserSecrets.dll", display: "Microsoft.Extensions.Configuration.UserSecrets (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationUserSecrets; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsConfigurationXml; + + /// + /// The for Microsoft.Extensions.Configuration.Xml.dll + /// + public static PortableExecutableReference MicrosoftExtensionsConfigurationXml + { + get + { + if (_MicrosoftExtensionsConfigurationXml is null) + { + _MicrosoftExtensionsConfigurationXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Configuration.Xml")).GetReference(filePath: "Microsoft.Extensions.Configuration.Xml.dll", display: "Microsoft.Extensions.Configuration.Xml (aspnet90)"); + } + return _MicrosoftExtensionsConfigurationXml; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsDependencyInjectionAbstractions; + + /// + /// The for Microsoft.Extensions.DependencyInjection.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsDependencyInjectionAbstractions + { + get + { + if (_MicrosoftExtensionsDependencyInjectionAbstractions is null) + { + _MicrosoftExtensionsDependencyInjectionAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.DependencyInjection.Abstractions")).GetReference(filePath: "Microsoft.Extensions.DependencyInjection.Abstractions.dll", display: "Microsoft.Extensions.DependencyInjection.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsDependencyInjectionAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsDependencyInjection; + + /// + /// The for Microsoft.Extensions.DependencyInjection.dll + /// + public static PortableExecutableReference MicrosoftExtensionsDependencyInjection + { + get + { + if (_MicrosoftExtensionsDependencyInjection is null) + { + _MicrosoftExtensionsDependencyInjection = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.DependencyInjection")).GetReference(filePath: "Microsoft.Extensions.DependencyInjection.dll", display: "Microsoft.Extensions.DependencyInjection (aspnet90)"); + } + return _MicrosoftExtensionsDependencyInjection; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsDiagnosticsAbstractions; + + /// + /// The for Microsoft.Extensions.Diagnostics.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsDiagnosticsAbstractions + { + get + { + if (_MicrosoftExtensionsDiagnosticsAbstractions is null) + { + _MicrosoftExtensionsDiagnosticsAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Diagnostics.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Diagnostics.Abstractions.dll", display: "Microsoft.Extensions.Diagnostics.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsDiagnosticsAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsDiagnostics; + + /// + /// The for Microsoft.Extensions.Diagnostics.dll + /// + public static PortableExecutableReference MicrosoftExtensionsDiagnostics + { + get + { + if (_MicrosoftExtensionsDiagnostics is null) + { + _MicrosoftExtensionsDiagnostics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Diagnostics")).GetReference(filePath: "Microsoft.Extensions.Diagnostics.dll", display: "Microsoft.Extensions.Diagnostics (aspnet90)"); + } + return _MicrosoftExtensionsDiagnostics; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions; + + /// + /// The for Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsDiagnosticsHealthChecksAbstractions + { + get + { + if (_MicrosoftExtensionsDiagnosticsHealthChecksAbstractions is null) + { + _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", display: "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsDiagnosticsHealthChecks; + + /// + /// The for Microsoft.Extensions.Diagnostics.HealthChecks.dll + /// + public static PortableExecutableReference MicrosoftExtensionsDiagnosticsHealthChecks + { + get + { + if (_MicrosoftExtensionsDiagnosticsHealthChecks is null) + { + _MicrosoftExtensionsDiagnosticsHealthChecks = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Diagnostics.HealthChecks")).GetReference(filePath: "Microsoft.Extensions.Diagnostics.HealthChecks.dll", display: "Microsoft.Extensions.Diagnostics.HealthChecks (aspnet90)"); + } + return _MicrosoftExtensionsDiagnosticsHealthChecks; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsFeatures; + + /// + /// The for Microsoft.Extensions.Features.dll + /// + public static PortableExecutableReference MicrosoftExtensionsFeatures + { + get + { + if (_MicrosoftExtensionsFeatures is null) + { + _MicrosoftExtensionsFeatures = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Features")).GetReference(filePath: "Microsoft.Extensions.Features.dll", display: "Microsoft.Extensions.Features (aspnet90)"); + } + return _MicrosoftExtensionsFeatures; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsFileProvidersAbstractions; + + /// + /// The for Microsoft.Extensions.FileProviders.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsFileProvidersAbstractions + { + get + { + if (_MicrosoftExtensionsFileProvidersAbstractions is null) + { + _MicrosoftExtensionsFileProvidersAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.FileProviders.Abstractions")).GetReference(filePath: "Microsoft.Extensions.FileProviders.Abstractions.dll", display: "Microsoft.Extensions.FileProviders.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsFileProvidersAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsFileProvidersComposite; + + /// + /// The for Microsoft.Extensions.FileProviders.Composite.dll + /// + public static PortableExecutableReference MicrosoftExtensionsFileProvidersComposite + { + get + { + if (_MicrosoftExtensionsFileProvidersComposite is null) + { + _MicrosoftExtensionsFileProvidersComposite = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.FileProviders.Composite")).GetReference(filePath: "Microsoft.Extensions.FileProviders.Composite.dll", display: "Microsoft.Extensions.FileProviders.Composite (aspnet90)"); + } + return _MicrosoftExtensionsFileProvidersComposite; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsFileProvidersEmbedded; + + /// + /// The for Microsoft.Extensions.FileProviders.Embedded.dll + /// + public static PortableExecutableReference MicrosoftExtensionsFileProvidersEmbedded + { + get + { + if (_MicrosoftExtensionsFileProvidersEmbedded is null) + { + _MicrosoftExtensionsFileProvidersEmbedded = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.FileProviders.Embedded")).GetReference(filePath: "Microsoft.Extensions.FileProviders.Embedded.dll", display: "Microsoft.Extensions.FileProviders.Embedded (aspnet90)"); + } + return _MicrosoftExtensionsFileProvidersEmbedded; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsFileProvidersPhysical; + + /// + /// The for Microsoft.Extensions.FileProviders.Physical.dll + /// + public static PortableExecutableReference MicrosoftExtensionsFileProvidersPhysical + { + get + { + if (_MicrosoftExtensionsFileProvidersPhysical is null) + { + _MicrosoftExtensionsFileProvidersPhysical = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.FileProviders.Physical")).GetReference(filePath: "Microsoft.Extensions.FileProviders.Physical.dll", display: "Microsoft.Extensions.FileProviders.Physical (aspnet90)"); + } + return _MicrosoftExtensionsFileProvidersPhysical; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsFileSystemGlobbing; + + /// + /// The for Microsoft.Extensions.FileSystemGlobbing.dll + /// + public static PortableExecutableReference MicrosoftExtensionsFileSystemGlobbing + { + get + { + if (_MicrosoftExtensionsFileSystemGlobbing is null) + { + _MicrosoftExtensionsFileSystemGlobbing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.FileSystemGlobbing")).GetReference(filePath: "Microsoft.Extensions.FileSystemGlobbing.dll", display: "Microsoft.Extensions.FileSystemGlobbing (aspnet90)"); + } + return _MicrosoftExtensionsFileSystemGlobbing; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsHostingAbstractions; + + /// + /// The for Microsoft.Extensions.Hosting.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsHostingAbstractions + { + get + { + if (_MicrosoftExtensionsHostingAbstractions is null) + { + _MicrosoftExtensionsHostingAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Hosting.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Hosting.Abstractions.dll", display: "Microsoft.Extensions.Hosting.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsHostingAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsHosting; + + /// + /// The for Microsoft.Extensions.Hosting.dll + /// + public static PortableExecutableReference MicrosoftExtensionsHosting + { + get + { + if (_MicrosoftExtensionsHosting is null) + { + _MicrosoftExtensionsHosting = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Hosting")).GetReference(filePath: "Microsoft.Extensions.Hosting.dll", display: "Microsoft.Extensions.Hosting (aspnet90)"); + } + return _MicrosoftExtensionsHosting; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsHttp; + + /// + /// The for Microsoft.Extensions.Http.dll + /// + public static PortableExecutableReference MicrosoftExtensionsHttp + { + get + { + if (_MicrosoftExtensionsHttp is null) + { + _MicrosoftExtensionsHttp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Http")).GetReference(filePath: "Microsoft.Extensions.Http.dll", display: "Microsoft.Extensions.Http (aspnet90)"); + } + return _MicrosoftExtensionsHttp; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsIdentityCore; + + /// + /// The for Microsoft.Extensions.Identity.Core.dll + /// + public static PortableExecutableReference MicrosoftExtensionsIdentityCore + { + get + { + if (_MicrosoftExtensionsIdentityCore is null) + { + _MicrosoftExtensionsIdentityCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Identity.Core")).GetReference(filePath: "Microsoft.Extensions.Identity.Core.dll", display: "Microsoft.Extensions.Identity.Core (aspnet90)"); + } + return _MicrosoftExtensionsIdentityCore; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsIdentityStores; + + /// + /// The for Microsoft.Extensions.Identity.Stores.dll + /// + public static PortableExecutableReference MicrosoftExtensionsIdentityStores + { + get + { + if (_MicrosoftExtensionsIdentityStores is null) + { + _MicrosoftExtensionsIdentityStores = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Identity.Stores")).GetReference(filePath: "Microsoft.Extensions.Identity.Stores.dll", display: "Microsoft.Extensions.Identity.Stores (aspnet90)"); + } + return _MicrosoftExtensionsIdentityStores; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLocalizationAbstractions; + + /// + /// The for Microsoft.Extensions.Localization.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLocalizationAbstractions + { + get + { + if (_MicrosoftExtensionsLocalizationAbstractions is null) + { + _MicrosoftExtensionsLocalizationAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Localization.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Localization.Abstractions.dll", display: "Microsoft.Extensions.Localization.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsLocalizationAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLocalization; + + /// + /// The for Microsoft.Extensions.Localization.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLocalization + { + get + { + if (_MicrosoftExtensionsLocalization is null) + { + _MicrosoftExtensionsLocalization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Localization")).GetReference(filePath: "Microsoft.Extensions.Localization.dll", display: "Microsoft.Extensions.Localization (aspnet90)"); + } + return _MicrosoftExtensionsLocalization; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingAbstractions; + + /// + /// The for Microsoft.Extensions.Logging.Abstractions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingAbstractions + { + get + { + if (_MicrosoftExtensionsLoggingAbstractions is null) + { + _MicrosoftExtensionsLoggingAbstractions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.Abstractions")).GetReference(filePath: "Microsoft.Extensions.Logging.Abstractions.dll", display: "Microsoft.Extensions.Logging.Abstractions (aspnet90)"); + } + return _MicrosoftExtensionsLoggingAbstractions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingConfiguration; + + /// + /// The for Microsoft.Extensions.Logging.Configuration.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingConfiguration + { + get + { + if (_MicrosoftExtensionsLoggingConfiguration is null) + { + _MicrosoftExtensionsLoggingConfiguration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.Configuration")).GetReference(filePath: "Microsoft.Extensions.Logging.Configuration.dll", display: "Microsoft.Extensions.Logging.Configuration (aspnet90)"); + } + return _MicrosoftExtensionsLoggingConfiguration; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingConsole; + + /// + /// The for Microsoft.Extensions.Logging.Console.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingConsole + { + get + { + if (_MicrosoftExtensionsLoggingConsole is null) + { + _MicrosoftExtensionsLoggingConsole = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.Console")).GetReference(filePath: "Microsoft.Extensions.Logging.Console.dll", display: "Microsoft.Extensions.Logging.Console (aspnet90)"); + } + return _MicrosoftExtensionsLoggingConsole; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingDebug; + + /// + /// The for Microsoft.Extensions.Logging.Debug.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingDebug + { + get + { + if (_MicrosoftExtensionsLoggingDebug is null) + { + _MicrosoftExtensionsLoggingDebug = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.Debug")).GetReference(filePath: "Microsoft.Extensions.Logging.Debug.dll", display: "Microsoft.Extensions.Logging.Debug (aspnet90)"); + } + return _MicrosoftExtensionsLoggingDebug; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLogging; + + /// + /// The for Microsoft.Extensions.Logging.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLogging + { + get + { + if (_MicrosoftExtensionsLogging is null) + { + _MicrosoftExtensionsLogging = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging")).GetReference(filePath: "Microsoft.Extensions.Logging.dll", display: "Microsoft.Extensions.Logging (aspnet90)"); + } + return _MicrosoftExtensionsLogging; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingEventLog; + + /// + /// The for Microsoft.Extensions.Logging.EventLog.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingEventLog + { + get + { + if (_MicrosoftExtensionsLoggingEventLog is null) + { + _MicrosoftExtensionsLoggingEventLog = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.EventLog")).GetReference(filePath: "Microsoft.Extensions.Logging.EventLog.dll", display: "Microsoft.Extensions.Logging.EventLog (aspnet90)"); + } + return _MicrosoftExtensionsLoggingEventLog; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingEventSource; + + /// + /// The for Microsoft.Extensions.Logging.EventSource.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingEventSource + { + get + { + if (_MicrosoftExtensionsLoggingEventSource is null) + { + _MicrosoftExtensionsLoggingEventSource = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.EventSource")).GetReference(filePath: "Microsoft.Extensions.Logging.EventSource.dll", display: "Microsoft.Extensions.Logging.EventSource (aspnet90)"); + } + return _MicrosoftExtensionsLoggingEventSource; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsLoggingTraceSource; + + /// + /// The for Microsoft.Extensions.Logging.TraceSource.dll + /// + public static PortableExecutableReference MicrosoftExtensionsLoggingTraceSource + { + get + { + if (_MicrosoftExtensionsLoggingTraceSource is null) + { + _MicrosoftExtensionsLoggingTraceSource = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Logging.TraceSource")).GetReference(filePath: "Microsoft.Extensions.Logging.TraceSource.dll", display: "Microsoft.Extensions.Logging.TraceSource (aspnet90)"); + } + return _MicrosoftExtensionsLoggingTraceSource; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsObjectPool; + + /// + /// The for Microsoft.Extensions.ObjectPool.dll + /// + public static PortableExecutableReference MicrosoftExtensionsObjectPool + { + get + { + if (_MicrosoftExtensionsObjectPool is null) + { + _MicrosoftExtensionsObjectPool = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.ObjectPool")).GetReference(filePath: "Microsoft.Extensions.ObjectPool.dll", display: "Microsoft.Extensions.ObjectPool (aspnet90)"); + } + return _MicrosoftExtensionsObjectPool; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsOptionsConfigurationExtensions; + + /// + /// The for Microsoft.Extensions.Options.ConfigurationExtensions.dll + /// + public static PortableExecutableReference MicrosoftExtensionsOptionsConfigurationExtensions + { + get + { + if (_MicrosoftExtensionsOptionsConfigurationExtensions is null) + { + _MicrosoftExtensionsOptionsConfigurationExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Options.ConfigurationExtensions")).GetReference(filePath: "Microsoft.Extensions.Options.ConfigurationExtensions.dll", display: "Microsoft.Extensions.Options.ConfigurationExtensions (aspnet90)"); + } + return _MicrosoftExtensionsOptionsConfigurationExtensions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsOptionsDataAnnotations; + + /// + /// The for Microsoft.Extensions.Options.DataAnnotations.dll + /// + public static PortableExecutableReference MicrosoftExtensionsOptionsDataAnnotations + { + get + { + if (_MicrosoftExtensionsOptionsDataAnnotations is null) + { + _MicrosoftExtensionsOptionsDataAnnotations = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Options.DataAnnotations")).GetReference(filePath: "Microsoft.Extensions.Options.DataAnnotations.dll", display: "Microsoft.Extensions.Options.DataAnnotations (aspnet90)"); + } + return _MicrosoftExtensionsOptionsDataAnnotations; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsOptions; + + /// + /// The for Microsoft.Extensions.Options.dll + /// + public static PortableExecutableReference MicrosoftExtensionsOptions + { + get + { + if (_MicrosoftExtensionsOptions is null) + { + _MicrosoftExtensionsOptions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Options")).GetReference(filePath: "Microsoft.Extensions.Options.dll", display: "Microsoft.Extensions.Options (aspnet90)"); + } + return _MicrosoftExtensionsOptions; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsPrimitives; + + /// + /// The for Microsoft.Extensions.Primitives.dll + /// + public static PortableExecutableReference MicrosoftExtensionsPrimitives + { + get + { + if (_MicrosoftExtensionsPrimitives is null) + { + _MicrosoftExtensionsPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.Primitives")).GetReference(filePath: "Microsoft.Extensions.Primitives.dll", display: "Microsoft.Extensions.Primitives (aspnet90)"); + } + return _MicrosoftExtensionsPrimitives; + } + } + + private static PortableExecutableReference? _MicrosoftExtensionsWebEncoders; + + /// + /// The for Microsoft.Extensions.WebEncoders.dll + /// + public static PortableExecutableReference MicrosoftExtensionsWebEncoders + { + get + { + if (_MicrosoftExtensionsWebEncoders is null) + { + _MicrosoftExtensionsWebEncoders = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Extensions.WebEncoders")).GetReference(filePath: "Microsoft.Extensions.WebEncoders.dll", display: "Microsoft.Extensions.WebEncoders (aspnet90)"); + } + return _MicrosoftExtensionsWebEncoders; + } + } + + private static PortableExecutableReference? _MicrosoftJSInterop; + + /// + /// The for Microsoft.JSInterop.dll + /// + public static PortableExecutableReference MicrosoftJSInterop + { + get + { + if (_MicrosoftJSInterop is null) + { + _MicrosoftJSInterop = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.JSInterop")).GetReference(filePath: "Microsoft.JSInterop.dll", display: "Microsoft.JSInterop (aspnet90)"); + } + return _MicrosoftJSInterop; + } + } + + private static PortableExecutableReference? _MicrosoftNetHttpHeaders; + + /// + /// The for Microsoft.Net.Http.Headers.dll + /// + public static PortableExecutableReference MicrosoftNetHttpHeaders + { + get + { + if (_MicrosoftNetHttpHeaders is null) + { + _MicrosoftNetHttpHeaders = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.Microsoft.Net.Http.Headers")).GetReference(filePath: "Microsoft.Net.Http.Headers.dll", display: "Microsoft.Net.Http.Headers (aspnet90)"); + } + return _MicrosoftNetHttpHeaders; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsEventLog; + + /// + /// The for System.Diagnostics.EventLog.dll + /// + public static PortableExecutableReference SystemDiagnosticsEventLog + { + get + { + if (_SystemDiagnosticsEventLog is null) + { + _SystemDiagnosticsEventLog = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Diagnostics.EventLog")).GetReference(filePath: "System.Diagnostics.EventLog.dll", display: "System.Diagnostics.EventLog (aspnet90)"); + } + return _SystemDiagnosticsEventLog; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyXml; + + /// + /// The for System.Security.Cryptography.Xml.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyXml + { + get + { + if (_SystemSecurityCryptographyXml is null) + { + _SystemSecurityCryptographyXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Security.Cryptography.Xml")).GetReference(filePath: "System.Security.Cryptography.Xml.dll", display: "System.Security.Cryptography.Xml (aspnet90)"); + } + return _SystemSecurityCryptographyXml; + } + } + + private static PortableExecutableReference? _SystemThreadingRateLimiting; + + /// + /// The for System.Threading.RateLimiting.dll + /// + public static PortableExecutableReference SystemThreadingRateLimiting + { + get + { + if (_SystemThreadingRateLimiting is null) + { + _SystemThreadingRateLimiting = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("aspnet90.System.Threading.RateLimiting")).GetReference(filePath: "System.Threading.RateLimiting.dll", display: "System.Threading.RateLimiting (aspnet90)"); + } + return _SystemThreadingRateLimiting; + } + } + + private static ImmutableArray _all; + public static ImmutableArray All + { + get + { + if (_all.IsDefault) + { + _all = + [ + MicrosoftCSharp, + MicrosoftVisualBasicCore, + MicrosoftVisualBasic, + MicrosoftWin32Primitives, + MicrosoftWin32Registry, + mscorlib, + netstandard, + SystemAppContext, + SystemBuffers, + SystemCollectionsConcurrent, + SystemCollections, + SystemCollectionsImmutable, + SystemCollectionsNonGeneric, + SystemCollectionsSpecialized, + SystemComponentModelAnnotations, + SystemComponentModelDataAnnotations, + SystemComponentModel, + SystemComponentModelEventBasedAsync, + SystemComponentModelPrimitives, + SystemComponentModelTypeConverter, + SystemConfiguration, + SystemConsole, + SystemCore, + SystemDataCommon, + SystemDataDataSetExtensions, + SystemData, + SystemDiagnosticsContracts, + SystemDiagnosticsDebug, + SystemDiagnosticsDiagnosticSource, + SystemDiagnosticsFileVersionInfo, + SystemDiagnosticsProcess, + SystemDiagnosticsStackTrace, + SystemDiagnosticsTextWriterTraceListener, + SystemDiagnosticsTools, + SystemDiagnosticsTraceSource, + SystemDiagnosticsTracing, + System, + SystemDrawing, + SystemDrawingPrimitives, + SystemDynamicRuntime, + SystemFormatsAsn1, + SystemFormatsTar, + SystemGlobalizationCalendars, + SystemGlobalization, + SystemGlobalizationExtensions, + SystemIOCompressionBrotli, + SystemIOCompression, + SystemIOCompressionFileSystem, + SystemIOCompressionZipFile, + SystemIO, + SystemIOFileSystemAccessControl, + SystemIOFileSystem, + SystemIOFileSystemDriveInfo, + SystemIOFileSystemPrimitives, + SystemIOFileSystemWatcher, + SystemIOIsolatedStorage, + SystemIOMemoryMappedFiles, + SystemIOPipelines, + SystemIOPipesAccessControl, + SystemIOPipes, + SystemIOUnmanagedMemoryStream, + SystemLinq, + SystemLinqExpressions, + SystemLinqParallel, + SystemLinqQueryable, + SystemMemory, + SystemNet, + SystemNetHttp, + SystemNetHttpJson, + SystemNetHttpListener, + SystemNetMail, + SystemNetNameResolution, + SystemNetNetworkInformation, + SystemNetPing, + SystemNetPrimitives, + SystemNetQuic, + SystemNetRequests, + SystemNetSecurity, + SystemNetServicePoint, + SystemNetSockets, + SystemNetWebClient, + SystemNetWebHeaderCollection, + SystemNetWebProxy, + SystemNetWebSocketsClient, + SystemNetWebSockets, + SystemNumerics, + SystemNumericsVectors, + SystemObjectModel, + SystemReflectionDispatchProxy, + SystemReflection, + SystemReflectionEmit, + SystemReflectionEmitILGeneration, + SystemReflectionEmitLightweight, + SystemReflectionExtensions, + SystemReflectionMetadata, + SystemReflectionPrimitives, + SystemReflectionTypeExtensions, + SystemResourcesReader, + SystemResourcesResourceManager, + SystemResourcesWriter, + SystemRuntimeCompilerServicesUnsafe, + SystemRuntimeCompilerServicesVisualC, + SystemRuntime, + SystemRuntimeExtensions, + SystemRuntimeHandles, + SystemRuntimeInteropServices, + SystemRuntimeInteropServicesJavaScript, + SystemRuntimeInteropServicesRuntimeInformation, + SystemRuntimeIntrinsics, + SystemRuntimeLoader, + SystemRuntimeNumerics, + SystemRuntimeSerialization, + SystemRuntimeSerializationFormatters, + SystemRuntimeSerializationJson, + SystemRuntimeSerializationPrimitives, + SystemRuntimeSerializationXml, + SystemSecurityAccessControl, + SystemSecurityClaims, + SystemSecurityCryptographyAlgorithms, + SystemSecurityCryptographyCng, + SystemSecurityCryptographyCsp, + SystemSecurityCryptography, + SystemSecurityCryptographyEncoding, + SystemSecurityCryptographyOpenSsl, + SystemSecurityCryptographyPrimitives, + SystemSecurityCryptographyX509Certificates, + SystemSecurity, + SystemSecurityPrincipal, + SystemSecurityPrincipalWindows, + SystemSecuritySecureString, + SystemServiceModelWeb, + SystemServiceProcess, + SystemTextEncodingCodePages, + SystemTextEncoding, + SystemTextEncodingExtensions, + SystemTextEncodingsWeb, + SystemTextJson, + SystemTextRegularExpressions, + SystemThreadingChannels, + SystemThreading, + SystemThreadingOverlapped, + SystemThreadingTasksDataflow, + SystemThreadingTasks, + SystemThreadingTasksExtensions, + SystemThreadingTasksParallel, + SystemThreadingThread, + SystemThreadingThreadPool, + SystemThreadingTimer, + SystemTransactions, + SystemTransactionsLocal, + SystemValueTuple, + SystemWeb, + SystemWebHttpUtility, + SystemWindows, + SystemXml, + SystemXmlLinq, + SystemXmlReaderWriter, + SystemXmlSerialization, + SystemXmlXDocument, + SystemXmlXmlDocument, + SystemXmlXmlSerializer, + SystemXmlXPath, + SystemXmlXPathXDocument, + WindowsBase, + MicrosoftAspNetCoreAntiforgery, + MicrosoftAspNetCoreAuthenticationAbstractions, + MicrosoftAspNetCoreAuthenticationBearerToken, + MicrosoftAspNetCoreAuthenticationCookies, + MicrosoftAspNetCoreAuthenticationCore, + MicrosoftAspNetCoreAuthentication, + MicrosoftAspNetCoreAuthenticationOAuth, + MicrosoftAspNetCoreAuthorization, + MicrosoftAspNetCoreAuthorizationPolicy, + MicrosoftAspNetCoreComponentsAuthorization, + MicrosoftAspNetCoreComponents, + MicrosoftAspNetCoreComponentsEndpoints, + MicrosoftAspNetCoreComponentsForms, + MicrosoftAspNetCoreComponentsServer, + MicrosoftAspNetCoreComponentsWeb, + MicrosoftAspNetCoreConnectionsAbstractions, + MicrosoftAspNetCoreCookiePolicy, + MicrosoftAspNetCoreCors, + MicrosoftAspNetCoreCryptographyInternal, + MicrosoftAspNetCoreCryptographyKeyDerivation, + MicrosoftAspNetCoreDataProtectionAbstractions, + MicrosoftAspNetCoreDataProtection, + MicrosoftAspNetCoreDataProtectionExtensions, + MicrosoftAspNetCoreDiagnosticsAbstractions, + MicrosoftAspNetCoreDiagnostics, + MicrosoftAspNetCoreDiagnosticsHealthChecks, + MicrosoftAspNetCore, + MicrosoftAspNetCoreHostFiltering, + MicrosoftAspNetCoreHostingAbstractions, + MicrosoftAspNetCoreHosting, + MicrosoftAspNetCoreHostingServerAbstractions, + MicrosoftAspNetCoreHtmlAbstractions, + MicrosoftAspNetCoreHttpAbstractions, + MicrosoftAspNetCoreHttpConnectionsCommon, + MicrosoftAspNetCoreHttpConnections, + MicrosoftAspNetCoreHttp, + MicrosoftAspNetCoreHttpExtensions, + MicrosoftAspNetCoreHttpFeatures, + MicrosoftAspNetCoreHttpResults, + MicrosoftAspNetCoreHttpLogging, + MicrosoftAspNetCoreHttpOverrides, + MicrosoftAspNetCoreHttpsPolicy, + MicrosoftAspNetCoreIdentity, + MicrosoftAspNetCoreLocalization, + MicrosoftAspNetCoreLocalizationRouting, + MicrosoftAspNetCoreMetadata, + MicrosoftAspNetCoreMvcAbstractions, + MicrosoftAspNetCoreMvcApiExplorer, + MicrosoftAspNetCoreMvcCore, + MicrosoftAspNetCoreMvcCors, + MicrosoftAspNetCoreMvcDataAnnotations, + MicrosoftAspNetCoreMvc, + MicrosoftAspNetCoreMvcFormattersJson, + MicrosoftAspNetCoreMvcFormattersXml, + MicrosoftAspNetCoreMvcLocalization, + MicrosoftAspNetCoreMvcRazor, + MicrosoftAspNetCoreMvcRazorPages, + MicrosoftAspNetCoreMvcTagHelpers, + MicrosoftAspNetCoreMvcViewFeatures, + MicrosoftAspNetCoreOutputCaching, + MicrosoftAspNetCoreRateLimiting, + MicrosoftAspNetCoreRazor, + MicrosoftAspNetCoreRazorRuntime, + MicrosoftAspNetCoreRequestDecompression, + MicrosoftAspNetCoreResponseCachingAbstractions, + MicrosoftAspNetCoreResponseCaching, + MicrosoftAspNetCoreResponseCompression, + MicrosoftAspNetCoreRewrite, + MicrosoftAspNetCoreRoutingAbstractions, + MicrosoftAspNetCoreRouting, + MicrosoftAspNetCoreServerHttpSys, + MicrosoftAspNetCoreServerIIS, + MicrosoftAspNetCoreServerIISIntegration, + MicrosoftAspNetCoreServerKestrelCore, + MicrosoftAspNetCoreServerKestrel, + MicrosoftAspNetCoreServerKestrelTransportNamedPipes, + MicrosoftAspNetCoreServerKestrelTransportQuic, + MicrosoftAspNetCoreServerKestrelTransportSockets, + MicrosoftAspNetCoreSession, + MicrosoftAspNetCoreSignalRCommon, + MicrosoftAspNetCoreSignalRCore, + MicrosoftAspNetCoreSignalR, + MicrosoftAspNetCoreSignalRProtocolsJson, + MicrosoftAspNetCoreStaticAssets, + MicrosoftAspNetCoreStaticFiles, + MicrosoftAspNetCoreWebSockets, + MicrosoftAspNetCoreWebUtilities, + MicrosoftExtensionsCachingAbstractions, + MicrosoftExtensionsCachingMemory, + MicrosoftExtensionsConfigurationAbstractions, + MicrosoftExtensionsConfigurationBinder, + MicrosoftExtensionsConfigurationCommandLine, + MicrosoftExtensionsConfiguration, + MicrosoftExtensionsConfigurationEnvironmentVariables, + MicrosoftExtensionsConfigurationFileExtensions, + MicrosoftExtensionsConfigurationIni, + MicrosoftExtensionsConfigurationJson, + MicrosoftExtensionsConfigurationKeyPerFile, + MicrosoftExtensionsConfigurationUserSecrets, + MicrosoftExtensionsConfigurationXml, + MicrosoftExtensionsDependencyInjectionAbstractions, + MicrosoftExtensionsDependencyInjection, + MicrosoftExtensionsDiagnosticsAbstractions, + MicrosoftExtensionsDiagnostics, + MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, + MicrosoftExtensionsDiagnosticsHealthChecks, + MicrosoftExtensionsFeatures, + MicrosoftExtensionsFileProvidersAbstractions, + MicrosoftExtensionsFileProvidersComposite, + MicrosoftExtensionsFileProvidersEmbedded, + MicrosoftExtensionsFileProvidersPhysical, + MicrosoftExtensionsFileSystemGlobbing, + MicrosoftExtensionsHostingAbstractions, + MicrosoftExtensionsHosting, + MicrosoftExtensionsHttp, + MicrosoftExtensionsIdentityCore, + MicrosoftExtensionsIdentityStores, + MicrosoftExtensionsLocalizationAbstractions, + MicrosoftExtensionsLocalization, + MicrosoftExtensionsLoggingAbstractions, + MicrosoftExtensionsLoggingConfiguration, + MicrosoftExtensionsLoggingConsole, + MicrosoftExtensionsLoggingDebug, + MicrosoftExtensionsLogging, + MicrosoftExtensionsLoggingEventLog, + MicrosoftExtensionsLoggingEventSource, + MicrosoftExtensionsLoggingTraceSource, + MicrosoftExtensionsObjectPool, + MicrosoftExtensionsOptionsConfigurationExtensions, + MicrosoftExtensionsOptionsDataAnnotations, + MicrosoftExtensionsOptions, + MicrosoftExtensionsPrimitives, + MicrosoftExtensionsWebEncoders, + MicrosoftJSInterop, + MicrosoftNetHttpHeaders, + SystemDiagnosticsEventLog, + SystemSecurityCryptographyXml, + SystemThreadingRateLimiting, + ]; + } + return _all; + } + } + } +} + +public static partial class AspNet90 +{ + public static class Resources + { + /// + /// The image bytes for Microsoft.CSharp.dll + /// + public static byte[] MicrosoftCSharp => ResourceLoader.GetOrCreateResource(ref _MicrosoftCSharp, "aspnet90.Microsoft.CSharp"); + private static byte[]? _MicrosoftCSharp; + + /// + /// The image bytes for Microsoft.VisualBasic.Core.dll + /// + public static byte[] MicrosoftVisualBasicCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasicCore, "aspnet90.Microsoft.VisualBasic.Core"); + private static byte[]? _MicrosoftVisualBasicCore; + + /// + /// The image bytes for Microsoft.VisualBasic.dll + /// + public static byte[] MicrosoftVisualBasic => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasic, "aspnet90.Microsoft.VisualBasic"); + private static byte[]? _MicrosoftVisualBasic; + + /// + /// The image bytes for Microsoft.Win32.Primitives.dll + /// + public static byte[] MicrosoftWin32Primitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Primitives, "aspnet90.Microsoft.Win32.Primitives"); + private static byte[]? _MicrosoftWin32Primitives; + + /// + /// The image bytes for Microsoft.Win32.Registry.dll + /// + public static byte[] MicrosoftWin32Registry => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Registry, "aspnet90.Microsoft.Win32.Registry"); + private static byte[]? _MicrosoftWin32Registry; + + /// + /// The image bytes for mscorlib.dll + /// + public static byte[] mscorlib => ResourceLoader.GetOrCreateResource(ref _mscorlib, "aspnet90.mscorlib"); + private static byte[]? _mscorlib; + + /// + /// The image bytes for netstandard.dll + /// + public static byte[] netstandard => ResourceLoader.GetOrCreateResource(ref _netstandard, "aspnet90.netstandard"); + private static byte[]? _netstandard; + + /// + /// The image bytes for System.AppContext.dll + /// + public static byte[] SystemAppContext => ResourceLoader.GetOrCreateResource(ref _SystemAppContext, "aspnet90.System.AppContext"); + private static byte[]? _SystemAppContext; + + /// + /// The image bytes for System.Buffers.dll + /// + public static byte[] SystemBuffers => ResourceLoader.GetOrCreateResource(ref _SystemBuffers, "aspnet90.System.Buffers"); + private static byte[]? _SystemBuffers; + + /// + /// The image bytes for System.Collections.Concurrent.dll + /// + public static byte[] SystemCollectionsConcurrent => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsConcurrent, "aspnet90.System.Collections.Concurrent"); + private static byte[]? _SystemCollectionsConcurrent; + + /// + /// The image bytes for System.Collections.dll + /// + public static byte[] SystemCollections => ResourceLoader.GetOrCreateResource(ref _SystemCollections, "aspnet90.System.Collections"); + private static byte[]? _SystemCollections; + + /// + /// The image bytes for System.Collections.Immutable.dll + /// + public static byte[] SystemCollectionsImmutable => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsImmutable, "aspnet90.System.Collections.Immutable"); + private static byte[]? _SystemCollectionsImmutable; + + /// + /// The image bytes for System.Collections.NonGeneric.dll + /// + public static byte[] SystemCollectionsNonGeneric => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsNonGeneric, "aspnet90.System.Collections.NonGeneric"); + private static byte[]? _SystemCollectionsNonGeneric; + + /// + /// The image bytes for System.Collections.Specialized.dll + /// + public static byte[] SystemCollectionsSpecialized => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsSpecialized, "aspnet90.System.Collections.Specialized"); + private static byte[]? _SystemCollectionsSpecialized; + + /// + /// The image bytes for System.ComponentModel.Annotations.dll + /// + public static byte[] SystemComponentModelAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelAnnotations, "aspnet90.System.ComponentModel.Annotations"); + private static byte[]? _SystemComponentModelAnnotations; + + /// + /// The image bytes for System.ComponentModel.DataAnnotations.dll + /// + public static byte[] SystemComponentModelDataAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelDataAnnotations, "aspnet90.System.ComponentModel.DataAnnotations"); + private static byte[]? _SystemComponentModelDataAnnotations; + + /// + /// The image bytes for System.ComponentModel.dll + /// + public static byte[] SystemComponentModel => ResourceLoader.GetOrCreateResource(ref _SystemComponentModel, "aspnet90.System.ComponentModel"); + private static byte[]? _SystemComponentModel; + + /// + /// The image bytes for System.ComponentModel.EventBasedAsync.dll + /// + public static byte[] SystemComponentModelEventBasedAsync => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelEventBasedAsync, "aspnet90.System.ComponentModel.EventBasedAsync"); + private static byte[]? _SystemComponentModelEventBasedAsync; + + /// + /// The image bytes for System.ComponentModel.Primitives.dll + /// + public static byte[] SystemComponentModelPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelPrimitives, "aspnet90.System.ComponentModel.Primitives"); + private static byte[]? _SystemComponentModelPrimitives; + + /// + /// The image bytes for System.ComponentModel.TypeConverter.dll + /// + public static byte[] SystemComponentModelTypeConverter => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelTypeConverter, "aspnet90.System.ComponentModel.TypeConverter"); + private static byte[]? _SystemComponentModelTypeConverter; + + /// + /// The image bytes for System.Configuration.dll + /// + public static byte[] SystemConfiguration => ResourceLoader.GetOrCreateResource(ref _SystemConfiguration, "aspnet90.System.Configuration"); + private static byte[]? _SystemConfiguration; + + /// + /// The image bytes for System.Console.dll + /// + public static byte[] SystemConsole => ResourceLoader.GetOrCreateResource(ref _SystemConsole, "aspnet90.System.Console"); + private static byte[]? _SystemConsole; + + /// + /// The image bytes for System.Core.dll + /// + public static byte[] SystemCore => ResourceLoader.GetOrCreateResource(ref _SystemCore, "aspnet90.System.Core"); + private static byte[]? _SystemCore; + + /// + /// The image bytes for System.Data.Common.dll + /// + public static byte[] SystemDataCommon => ResourceLoader.GetOrCreateResource(ref _SystemDataCommon, "aspnet90.System.Data.Common"); + private static byte[]? _SystemDataCommon; + + /// + /// The image bytes for System.Data.DataSetExtensions.dll + /// + public static byte[] SystemDataDataSetExtensions => ResourceLoader.GetOrCreateResource(ref _SystemDataDataSetExtensions, "aspnet90.System.Data.DataSetExtensions"); + private static byte[]? _SystemDataDataSetExtensions; + + /// + /// The image bytes for System.Data.dll + /// + public static byte[] SystemData => ResourceLoader.GetOrCreateResource(ref _SystemData, "aspnet90.System.Data"); + private static byte[]? _SystemData; + + /// + /// The image bytes for System.Diagnostics.Contracts.dll + /// + public static byte[] SystemDiagnosticsContracts => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsContracts, "aspnet90.System.Diagnostics.Contracts"); + private static byte[]? _SystemDiagnosticsContracts; + + /// + /// The image bytes for System.Diagnostics.Debug.dll + /// + public static byte[] SystemDiagnosticsDebug => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDebug, "aspnet90.System.Diagnostics.Debug"); + private static byte[]? _SystemDiagnosticsDebug; + + /// + /// The image bytes for System.Diagnostics.DiagnosticSource.dll + /// + public static byte[] SystemDiagnosticsDiagnosticSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDiagnosticSource, "aspnet90.System.Diagnostics.DiagnosticSource"); + private static byte[]? _SystemDiagnosticsDiagnosticSource; + + /// + /// The image bytes for System.Diagnostics.FileVersionInfo.dll + /// + public static byte[] SystemDiagnosticsFileVersionInfo => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsFileVersionInfo, "aspnet90.System.Diagnostics.FileVersionInfo"); + private static byte[]? _SystemDiagnosticsFileVersionInfo; + + /// + /// The image bytes for System.Diagnostics.Process.dll + /// + public static byte[] SystemDiagnosticsProcess => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsProcess, "aspnet90.System.Diagnostics.Process"); + private static byte[]? _SystemDiagnosticsProcess; + + /// + /// The image bytes for System.Diagnostics.StackTrace.dll + /// + public static byte[] SystemDiagnosticsStackTrace => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsStackTrace, "aspnet90.System.Diagnostics.StackTrace"); + private static byte[]? _SystemDiagnosticsStackTrace; + + /// + /// The image bytes for System.Diagnostics.TextWriterTraceListener.dll + /// + public static byte[] SystemDiagnosticsTextWriterTraceListener => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTextWriterTraceListener, "aspnet90.System.Diagnostics.TextWriterTraceListener"); + private static byte[]? _SystemDiagnosticsTextWriterTraceListener; + + /// + /// The image bytes for System.Diagnostics.Tools.dll + /// + public static byte[] SystemDiagnosticsTools => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTools, "aspnet90.System.Diagnostics.Tools"); + private static byte[]? _SystemDiagnosticsTools; + + /// + /// The image bytes for System.Diagnostics.TraceSource.dll + /// + public static byte[] SystemDiagnosticsTraceSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTraceSource, "aspnet90.System.Diagnostics.TraceSource"); + private static byte[]? _SystemDiagnosticsTraceSource; + + /// + /// The image bytes for System.Diagnostics.Tracing.dll + /// + public static byte[] SystemDiagnosticsTracing => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTracing, "aspnet90.System.Diagnostics.Tracing"); + private static byte[]? _SystemDiagnosticsTracing; + + /// + /// The image bytes for System.dll + /// + public static byte[] System => ResourceLoader.GetOrCreateResource(ref _System, "aspnet90.System"); + private static byte[]? _System; + + /// + /// The image bytes for System.Drawing.dll + /// + public static byte[] SystemDrawing => ResourceLoader.GetOrCreateResource(ref _SystemDrawing, "aspnet90.System.Drawing"); + private static byte[]? _SystemDrawing; + + /// + /// The image bytes for System.Drawing.Primitives.dll + /// + public static byte[] SystemDrawingPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemDrawingPrimitives, "aspnet90.System.Drawing.Primitives"); + private static byte[]? _SystemDrawingPrimitives; + + /// + /// The image bytes for System.Dynamic.Runtime.dll + /// + public static byte[] SystemDynamicRuntime => ResourceLoader.GetOrCreateResource(ref _SystemDynamicRuntime, "aspnet90.System.Dynamic.Runtime"); + private static byte[]? _SystemDynamicRuntime; + + /// + /// The image bytes for System.Formats.Asn1.dll + /// + public static byte[] SystemFormatsAsn1 => ResourceLoader.GetOrCreateResource(ref _SystemFormatsAsn1, "aspnet90.System.Formats.Asn1"); + private static byte[]? _SystemFormatsAsn1; + + /// + /// The image bytes for System.Formats.Tar.dll + /// + public static byte[] SystemFormatsTar => ResourceLoader.GetOrCreateResource(ref _SystemFormatsTar, "aspnet90.System.Formats.Tar"); + private static byte[]? _SystemFormatsTar; + + /// + /// The image bytes for System.Globalization.Calendars.dll + /// + public static byte[] SystemGlobalizationCalendars => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationCalendars, "aspnet90.System.Globalization.Calendars"); + private static byte[]? _SystemGlobalizationCalendars; + + /// + /// The image bytes for System.Globalization.dll + /// + public static byte[] SystemGlobalization => ResourceLoader.GetOrCreateResource(ref _SystemGlobalization, "aspnet90.System.Globalization"); + private static byte[]? _SystemGlobalization; + + /// + /// The image bytes for System.Globalization.Extensions.dll + /// + public static byte[] SystemGlobalizationExtensions => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationExtensions, "aspnet90.System.Globalization.Extensions"); + private static byte[]? _SystemGlobalizationExtensions; + + /// + /// The image bytes for System.IO.Compression.Brotli.dll + /// + public static byte[] SystemIOCompressionBrotli => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionBrotli, "aspnet90.System.IO.Compression.Brotli"); + private static byte[]? _SystemIOCompressionBrotli; + + /// + /// The image bytes for System.IO.Compression.dll + /// + public static byte[] SystemIOCompression => ResourceLoader.GetOrCreateResource(ref _SystemIOCompression, "aspnet90.System.IO.Compression"); + private static byte[]? _SystemIOCompression; + + /// + /// The image bytes for System.IO.Compression.FileSystem.dll + /// + public static byte[] SystemIOCompressionFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionFileSystem, "aspnet90.System.IO.Compression.FileSystem"); + private static byte[]? _SystemIOCompressionFileSystem; + + /// + /// The image bytes for System.IO.Compression.ZipFile.dll + /// + public static byte[] SystemIOCompressionZipFile => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionZipFile, "aspnet90.System.IO.Compression.ZipFile"); + private static byte[]? _SystemIOCompressionZipFile; + + /// + /// The image bytes for System.IO.dll + /// + public static byte[] SystemIO => ResourceLoader.GetOrCreateResource(ref _SystemIO, "aspnet90.System.IO"); + private static byte[]? _SystemIO; + + /// + /// The image bytes for System.IO.FileSystem.AccessControl.dll + /// + public static byte[] SystemIOFileSystemAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemAccessControl, "aspnet90.System.IO.FileSystem.AccessControl"); + private static byte[]? _SystemIOFileSystemAccessControl; + + /// + /// The image bytes for System.IO.FileSystem.dll + /// + public static byte[] SystemIOFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystem, "aspnet90.System.IO.FileSystem"); + private static byte[]? _SystemIOFileSystem; + + /// + /// The image bytes for System.IO.FileSystem.DriveInfo.dll + /// + public static byte[] SystemIOFileSystemDriveInfo => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemDriveInfo, "aspnet90.System.IO.FileSystem.DriveInfo"); + private static byte[]? _SystemIOFileSystemDriveInfo; + + /// + /// The image bytes for System.IO.FileSystem.Primitives.dll + /// + public static byte[] SystemIOFileSystemPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemPrimitives, "aspnet90.System.IO.FileSystem.Primitives"); + private static byte[]? _SystemIOFileSystemPrimitives; + + /// + /// The image bytes for System.IO.FileSystem.Watcher.dll + /// + public static byte[] SystemIOFileSystemWatcher => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemWatcher, "aspnet90.System.IO.FileSystem.Watcher"); + private static byte[]? _SystemIOFileSystemWatcher; + + /// + /// The image bytes for System.IO.IsolatedStorage.dll + /// + public static byte[] SystemIOIsolatedStorage => ResourceLoader.GetOrCreateResource(ref _SystemIOIsolatedStorage, "aspnet90.System.IO.IsolatedStorage"); + private static byte[]? _SystemIOIsolatedStorage; + + /// + /// The image bytes for System.IO.MemoryMappedFiles.dll + /// + public static byte[] SystemIOMemoryMappedFiles => ResourceLoader.GetOrCreateResource(ref _SystemIOMemoryMappedFiles, "aspnet90.System.IO.MemoryMappedFiles"); + private static byte[]? _SystemIOMemoryMappedFiles; + + /// + /// The image bytes for System.IO.Pipelines.dll + /// + public static byte[] SystemIOPipelines => ResourceLoader.GetOrCreateResource(ref _SystemIOPipelines, "aspnet90.System.IO.Pipelines"); + private static byte[]? _SystemIOPipelines; + + /// + /// The image bytes for System.IO.Pipes.AccessControl.dll + /// + public static byte[] SystemIOPipesAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemIOPipesAccessControl, "aspnet90.System.IO.Pipes.AccessControl"); + private static byte[]? _SystemIOPipesAccessControl; + + /// + /// The image bytes for System.IO.Pipes.dll + /// + public static byte[] SystemIOPipes => ResourceLoader.GetOrCreateResource(ref _SystemIOPipes, "aspnet90.System.IO.Pipes"); + private static byte[]? _SystemIOPipes; + + /// + /// The image bytes for System.IO.UnmanagedMemoryStream.dll + /// + public static byte[] SystemIOUnmanagedMemoryStream => ResourceLoader.GetOrCreateResource(ref _SystemIOUnmanagedMemoryStream, "aspnet90.System.IO.UnmanagedMemoryStream"); + private static byte[]? _SystemIOUnmanagedMemoryStream; + + /// + /// The image bytes for System.Linq.dll + /// + public static byte[] SystemLinq => ResourceLoader.GetOrCreateResource(ref _SystemLinq, "aspnet90.System.Linq"); + private static byte[]? _SystemLinq; + + /// + /// The image bytes for System.Linq.Expressions.dll + /// + public static byte[] SystemLinqExpressions => ResourceLoader.GetOrCreateResource(ref _SystemLinqExpressions, "aspnet90.System.Linq.Expressions"); + private static byte[]? _SystemLinqExpressions; + + /// + /// The image bytes for System.Linq.Parallel.dll + /// + public static byte[] SystemLinqParallel => ResourceLoader.GetOrCreateResource(ref _SystemLinqParallel, "aspnet90.System.Linq.Parallel"); + private static byte[]? _SystemLinqParallel; + + /// + /// The image bytes for System.Linq.Queryable.dll + /// + public static byte[] SystemLinqQueryable => ResourceLoader.GetOrCreateResource(ref _SystemLinqQueryable, "aspnet90.System.Linq.Queryable"); + private static byte[]? _SystemLinqQueryable; + + /// + /// The image bytes for System.Memory.dll + /// + public static byte[] SystemMemory => ResourceLoader.GetOrCreateResource(ref _SystemMemory, "aspnet90.System.Memory"); + private static byte[]? _SystemMemory; + + /// + /// The image bytes for System.Net.dll + /// + public static byte[] SystemNet => ResourceLoader.GetOrCreateResource(ref _SystemNet, "aspnet90.System.Net"); + private static byte[]? _SystemNet; + + /// + /// The image bytes for System.Net.Http.dll + /// + public static byte[] SystemNetHttp => ResourceLoader.GetOrCreateResource(ref _SystemNetHttp, "aspnet90.System.Net.Http"); + private static byte[]? _SystemNetHttp; + + /// + /// The image bytes for System.Net.Http.Json.dll + /// + public static byte[] SystemNetHttpJson => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpJson, "aspnet90.System.Net.Http.Json"); + private static byte[]? _SystemNetHttpJson; + + /// + /// The image bytes for System.Net.HttpListener.dll + /// + public static byte[] SystemNetHttpListener => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpListener, "aspnet90.System.Net.HttpListener"); + private static byte[]? _SystemNetHttpListener; + + /// + /// The image bytes for System.Net.Mail.dll + /// + public static byte[] SystemNetMail => ResourceLoader.GetOrCreateResource(ref _SystemNetMail, "aspnet90.System.Net.Mail"); + private static byte[]? _SystemNetMail; + + /// + /// The image bytes for System.Net.NameResolution.dll + /// + public static byte[] SystemNetNameResolution => ResourceLoader.GetOrCreateResource(ref _SystemNetNameResolution, "aspnet90.System.Net.NameResolution"); + private static byte[]? _SystemNetNameResolution; + + /// + /// The image bytes for System.Net.NetworkInformation.dll + /// + public static byte[] SystemNetNetworkInformation => ResourceLoader.GetOrCreateResource(ref _SystemNetNetworkInformation, "aspnet90.System.Net.NetworkInformation"); + private static byte[]? _SystemNetNetworkInformation; + + /// + /// The image bytes for System.Net.Ping.dll + /// + public static byte[] SystemNetPing => ResourceLoader.GetOrCreateResource(ref _SystemNetPing, "aspnet90.System.Net.Ping"); + private static byte[]? _SystemNetPing; + + /// + /// The image bytes for System.Net.Primitives.dll + /// + public static byte[] SystemNetPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemNetPrimitives, "aspnet90.System.Net.Primitives"); + private static byte[]? _SystemNetPrimitives; + + /// + /// The image bytes for System.Net.Quic.dll + /// + public static byte[] SystemNetQuic => ResourceLoader.GetOrCreateResource(ref _SystemNetQuic, "aspnet90.System.Net.Quic"); + private static byte[]? _SystemNetQuic; + + /// + /// The image bytes for System.Net.Requests.dll + /// + public static byte[] SystemNetRequests => ResourceLoader.GetOrCreateResource(ref _SystemNetRequests, "aspnet90.System.Net.Requests"); + private static byte[]? _SystemNetRequests; + + /// + /// The image bytes for System.Net.Security.dll + /// + public static byte[] SystemNetSecurity => ResourceLoader.GetOrCreateResource(ref _SystemNetSecurity, "aspnet90.System.Net.Security"); + private static byte[]? _SystemNetSecurity; + + /// + /// The image bytes for System.Net.ServicePoint.dll + /// + public static byte[] SystemNetServicePoint => ResourceLoader.GetOrCreateResource(ref _SystemNetServicePoint, "aspnet90.System.Net.ServicePoint"); + private static byte[]? _SystemNetServicePoint; + + /// + /// The image bytes for System.Net.Sockets.dll + /// + public static byte[] SystemNetSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetSockets, "aspnet90.System.Net.Sockets"); + private static byte[]? _SystemNetSockets; + + /// + /// The image bytes for System.Net.WebClient.dll + /// + public static byte[] SystemNetWebClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebClient, "aspnet90.System.Net.WebClient"); + private static byte[]? _SystemNetWebClient; + + /// + /// The image bytes for System.Net.WebHeaderCollection.dll + /// + public static byte[] SystemNetWebHeaderCollection => ResourceLoader.GetOrCreateResource(ref _SystemNetWebHeaderCollection, "aspnet90.System.Net.WebHeaderCollection"); + private static byte[]? _SystemNetWebHeaderCollection; + + /// + /// The image bytes for System.Net.WebProxy.dll + /// + public static byte[] SystemNetWebProxy => ResourceLoader.GetOrCreateResource(ref _SystemNetWebProxy, "aspnet90.System.Net.WebProxy"); + private static byte[]? _SystemNetWebProxy; + + /// + /// The image bytes for System.Net.WebSockets.Client.dll + /// + public static byte[] SystemNetWebSocketsClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSocketsClient, "aspnet90.System.Net.WebSockets.Client"); + private static byte[]? _SystemNetWebSocketsClient; + + /// + /// The image bytes for System.Net.WebSockets.dll + /// + public static byte[] SystemNetWebSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSockets, "aspnet90.System.Net.WebSockets"); + private static byte[]? _SystemNetWebSockets; + + /// + /// The image bytes for System.Numerics.dll + /// + public static byte[] SystemNumerics => ResourceLoader.GetOrCreateResource(ref _SystemNumerics, "aspnet90.System.Numerics"); + private static byte[]? _SystemNumerics; + + /// + /// The image bytes for System.Numerics.Vectors.dll + /// + public static byte[] SystemNumericsVectors => ResourceLoader.GetOrCreateResource(ref _SystemNumericsVectors, "aspnet90.System.Numerics.Vectors"); + private static byte[]? _SystemNumericsVectors; + + /// + /// The image bytes for System.ObjectModel.dll + /// + public static byte[] SystemObjectModel => ResourceLoader.GetOrCreateResource(ref _SystemObjectModel, "aspnet90.System.ObjectModel"); + private static byte[]? _SystemObjectModel; + + /// + /// The image bytes for System.Reflection.DispatchProxy.dll + /// + public static byte[] SystemReflectionDispatchProxy => ResourceLoader.GetOrCreateResource(ref _SystemReflectionDispatchProxy, "aspnet90.System.Reflection.DispatchProxy"); + private static byte[]? _SystemReflectionDispatchProxy; + + /// + /// The image bytes for System.Reflection.dll + /// + public static byte[] SystemReflection => ResourceLoader.GetOrCreateResource(ref _SystemReflection, "aspnet90.System.Reflection"); + private static byte[]? _SystemReflection; + + /// + /// The image bytes for System.Reflection.Emit.dll + /// + public static byte[] SystemReflectionEmit => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmit, "aspnet90.System.Reflection.Emit"); + private static byte[]? _SystemReflectionEmit; + + /// + /// The image bytes for System.Reflection.Emit.ILGeneration.dll + /// + public static byte[] SystemReflectionEmitILGeneration => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitILGeneration, "aspnet90.System.Reflection.Emit.ILGeneration"); + private static byte[]? _SystemReflectionEmitILGeneration; + + /// + /// The image bytes for System.Reflection.Emit.Lightweight.dll + /// + public static byte[] SystemReflectionEmitLightweight => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitLightweight, "aspnet90.System.Reflection.Emit.Lightweight"); + private static byte[]? _SystemReflectionEmitLightweight; + + /// + /// The image bytes for System.Reflection.Extensions.dll + /// + public static byte[] SystemReflectionExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionExtensions, "aspnet90.System.Reflection.Extensions"); + private static byte[]? _SystemReflectionExtensions; + + /// + /// The image bytes for System.Reflection.Metadata.dll + /// + public static byte[] SystemReflectionMetadata => ResourceLoader.GetOrCreateResource(ref _SystemReflectionMetadata, "aspnet90.System.Reflection.Metadata"); + private static byte[]? _SystemReflectionMetadata; + + /// + /// The image bytes for System.Reflection.Primitives.dll + /// + public static byte[] SystemReflectionPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemReflectionPrimitives, "aspnet90.System.Reflection.Primitives"); + private static byte[]? _SystemReflectionPrimitives; + + /// + /// The image bytes for System.Reflection.TypeExtensions.dll + /// + public static byte[] SystemReflectionTypeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionTypeExtensions, "aspnet90.System.Reflection.TypeExtensions"); + private static byte[]? _SystemReflectionTypeExtensions; + + /// + /// The image bytes for System.Resources.Reader.dll + /// + public static byte[] SystemResourcesReader => ResourceLoader.GetOrCreateResource(ref _SystemResourcesReader, "aspnet90.System.Resources.Reader"); + private static byte[]? _SystemResourcesReader; + + /// + /// The image bytes for System.Resources.ResourceManager.dll + /// + public static byte[] SystemResourcesResourceManager => ResourceLoader.GetOrCreateResource(ref _SystemResourcesResourceManager, "aspnet90.System.Resources.ResourceManager"); + private static byte[]? _SystemResourcesResourceManager; + + /// + /// The image bytes for System.Resources.Writer.dll + /// + public static byte[] SystemResourcesWriter => ResourceLoader.GetOrCreateResource(ref _SystemResourcesWriter, "aspnet90.System.Resources.Writer"); + private static byte[]? _SystemResourcesWriter; + + /// + /// The image bytes for System.Runtime.CompilerServices.Unsafe.dll + /// + public static byte[] SystemRuntimeCompilerServicesUnsafe => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesUnsafe, "aspnet90.System.Runtime.CompilerServices.Unsafe"); + private static byte[]? _SystemRuntimeCompilerServicesUnsafe; + + /// + /// The image bytes for System.Runtime.CompilerServices.VisualC.dll + /// + public static byte[] SystemRuntimeCompilerServicesVisualC => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesVisualC, "aspnet90.System.Runtime.CompilerServices.VisualC"); + private static byte[]? _SystemRuntimeCompilerServicesVisualC; + + /// + /// The image bytes for System.Runtime.dll + /// + public static byte[] SystemRuntime => ResourceLoader.GetOrCreateResource(ref _SystemRuntime, "aspnet90.System.Runtime"); + private static byte[]? _SystemRuntime; + + /// + /// The image bytes for System.Runtime.Extensions.dll + /// + public static byte[] SystemRuntimeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeExtensions, "aspnet90.System.Runtime.Extensions"); + private static byte[]? _SystemRuntimeExtensions; + + /// + /// The image bytes for System.Runtime.Handles.dll + /// + public static byte[] SystemRuntimeHandles => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeHandles, "aspnet90.System.Runtime.Handles"); + private static byte[]? _SystemRuntimeHandles; + + /// + /// The image bytes for System.Runtime.InteropServices.dll + /// + public static byte[] SystemRuntimeInteropServices => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServices, "aspnet90.System.Runtime.InteropServices"); + private static byte[]? _SystemRuntimeInteropServices; + + /// + /// The image bytes for System.Runtime.InteropServices.JavaScript.dll + /// + public static byte[] SystemRuntimeInteropServicesJavaScript => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServicesJavaScript, "aspnet90.System.Runtime.InteropServices.JavaScript"); + private static byte[]? _SystemRuntimeInteropServicesJavaScript; + + /// + /// The image bytes for System.Runtime.InteropServices.RuntimeInformation.dll + /// + public static byte[] SystemRuntimeInteropServicesRuntimeInformation => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServicesRuntimeInformation, "aspnet90.System.Runtime.InteropServices.RuntimeInformation"); + private static byte[]? _SystemRuntimeInteropServicesRuntimeInformation; + + /// + /// The image bytes for System.Runtime.Intrinsics.dll + /// + public static byte[] SystemRuntimeIntrinsics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeIntrinsics, "aspnet90.System.Runtime.Intrinsics"); + private static byte[]? _SystemRuntimeIntrinsics; + + /// + /// The image bytes for System.Runtime.Loader.dll + /// + public static byte[] SystemRuntimeLoader => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeLoader, "aspnet90.System.Runtime.Loader"); + private static byte[]? _SystemRuntimeLoader; + + /// + /// The image bytes for System.Runtime.Numerics.dll + /// + public static byte[] SystemRuntimeNumerics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeNumerics, "aspnet90.System.Runtime.Numerics"); + private static byte[]? _SystemRuntimeNumerics; + + /// + /// The image bytes for System.Runtime.Serialization.dll + /// + public static byte[] SystemRuntimeSerialization => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerialization, "aspnet90.System.Runtime.Serialization"); + private static byte[]? _SystemRuntimeSerialization; + + /// + /// The image bytes for System.Runtime.Serialization.Formatters.dll + /// + public static byte[] SystemRuntimeSerializationFormatters => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationFormatters, "aspnet90.System.Runtime.Serialization.Formatters"); + private static byte[]? _SystemRuntimeSerializationFormatters; + + /// + /// The image bytes for System.Runtime.Serialization.Json.dll + /// + public static byte[] SystemRuntimeSerializationJson => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationJson, "aspnet90.System.Runtime.Serialization.Json"); + private static byte[]? _SystemRuntimeSerializationJson; + + /// + /// The image bytes for System.Runtime.Serialization.Primitives.dll + /// + public static byte[] SystemRuntimeSerializationPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationPrimitives, "aspnet90.System.Runtime.Serialization.Primitives"); + private static byte[]? _SystemRuntimeSerializationPrimitives; + + /// + /// The image bytes for System.Runtime.Serialization.Xml.dll + /// + public static byte[] SystemRuntimeSerializationXml => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationXml, "aspnet90.System.Runtime.Serialization.Xml"); + private static byte[]? _SystemRuntimeSerializationXml; + + /// + /// The image bytes for System.Security.AccessControl.dll + /// + public static byte[] SystemSecurityAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemSecurityAccessControl, "aspnet90.System.Security.AccessControl"); + private static byte[]? _SystemSecurityAccessControl; + + /// + /// The image bytes for System.Security.Claims.dll + /// + public static byte[] SystemSecurityClaims => ResourceLoader.GetOrCreateResource(ref _SystemSecurityClaims, "aspnet90.System.Security.Claims"); + private static byte[]? _SystemSecurityClaims; + + /// + /// The image bytes for System.Security.Cryptography.Algorithms.dll + /// + public static byte[] SystemSecurityCryptographyAlgorithms => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyAlgorithms, "aspnet90.System.Security.Cryptography.Algorithms"); + private static byte[]? _SystemSecurityCryptographyAlgorithms; + + /// + /// The image bytes for System.Security.Cryptography.Cng.dll + /// + public static byte[] SystemSecurityCryptographyCng => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCng, "aspnet90.System.Security.Cryptography.Cng"); + private static byte[]? _SystemSecurityCryptographyCng; + + /// + /// The image bytes for System.Security.Cryptography.Csp.dll + /// + public static byte[] SystemSecurityCryptographyCsp => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCsp, "aspnet90.System.Security.Cryptography.Csp"); + private static byte[]? _SystemSecurityCryptographyCsp; + + /// + /// The image bytes for System.Security.Cryptography.dll + /// + public static byte[] SystemSecurityCryptography => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptography, "aspnet90.System.Security.Cryptography"); + private static byte[]? _SystemSecurityCryptography; + + /// + /// The image bytes for System.Security.Cryptography.Encoding.dll + /// + public static byte[] SystemSecurityCryptographyEncoding => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyEncoding, "aspnet90.System.Security.Cryptography.Encoding"); + private static byte[]? _SystemSecurityCryptographyEncoding; + + /// + /// The image bytes for System.Security.Cryptography.OpenSsl.dll + /// + public static byte[] SystemSecurityCryptographyOpenSsl => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyOpenSsl, "aspnet90.System.Security.Cryptography.OpenSsl"); + private static byte[]? _SystemSecurityCryptographyOpenSsl; + + /// + /// The image bytes for System.Security.Cryptography.Primitives.dll + /// + public static byte[] SystemSecurityCryptographyPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyPrimitives, "aspnet90.System.Security.Cryptography.Primitives"); + private static byte[]? _SystemSecurityCryptographyPrimitives; + + /// + /// The image bytes for System.Security.Cryptography.X509Certificates.dll + /// + public static byte[] SystemSecurityCryptographyX509Certificates => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyX509Certificates, "aspnet90.System.Security.Cryptography.X509Certificates"); + private static byte[]? _SystemSecurityCryptographyX509Certificates; + + /// + /// The image bytes for System.Security.dll + /// + public static byte[] SystemSecurity => ResourceLoader.GetOrCreateResource(ref _SystemSecurity, "aspnet90.System.Security"); + private static byte[]? _SystemSecurity; + + /// + /// The image bytes for System.Security.Principal.dll + /// + public static byte[] SystemSecurityPrincipal => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipal, "aspnet90.System.Security.Principal"); + private static byte[]? _SystemSecurityPrincipal; + + /// + /// The image bytes for System.Security.Principal.Windows.dll + /// + public static byte[] SystemSecurityPrincipalWindows => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipalWindows, "aspnet90.System.Security.Principal.Windows"); + private static byte[]? _SystemSecurityPrincipalWindows; + + /// + /// The image bytes for System.Security.SecureString.dll + /// + public static byte[] SystemSecuritySecureString => ResourceLoader.GetOrCreateResource(ref _SystemSecuritySecureString, "aspnet90.System.Security.SecureString"); + private static byte[]? _SystemSecuritySecureString; + + /// + /// The image bytes for System.ServiceModel.Web.dll + /// + public static byte[] SystemServiceModelWeb => ResourceLoader.GetOrCreateResource(ref _SystemServiceModelWeb, "aspnet90.System.ServiceModel.Web"); + private static byte[]? _SystemServiceModelWeb; + + /// + /// The image bytes for System.ServiceProcess.dll + /// + public static byte[] SystemServiceProcess => ResourceLoader.GetOrCreateResource(ref _SystemServiceProcess, "aspnet90.System.ServiceProcess"); + private static byte[]? _SystemServiceProcess; + + /// + /// The image bytes for System.Text.Encoding.CodePages.dll + /// + public static byte[] SystemTextEncodingCodePages => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingCodePages, "aspnet90.System.Text.Encoding.CodePages"); + private static byte[]? _SystemTextEncodingCodePages; + + /// + /// The image bytes for System.Text.Encoding.dll + /// + public static byte[] SystemTextEncoding => ResourceLoader.GetOrCreateResource(ref _SystemTextEncoding, "aspnet90.System.Text.Encoding"); + private static byte[]? _SystemTextEncoding; + + /// + /// The image bytes for System.Text.Encoding.Extensions.dll + /// + public static byte[] SystemTextEncodingExtensions => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingExtensions, "aspnet90.System.Text.Encoding.Extensions"); + private static byte[]? _SystemTextEncodingExtensions; + + /// + /// The image bytes for System.Text.Encodings.Web.dll + /// + public static byte[] SystemTextEncodingsWeb => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingsWeb, "aspnet90.System.Text.Encodings.Web"); + private static byte[]? _SystemTextEncodingsWeb; + + /// + /// The image bytes for System.Text.Json.dll + /// + public static byte[] SystemTextJson => ResourceLoader.GetOrCreateResource(ref _SystemTextJson, "aspnet90.System.Text.Json"); + private static byte[]? _SystemTextJson; + + /// + /// The image bytes for System.Text.RegularExpressions.dll + /// + public static byte[] SystemTextRegularExpressions => ResourceLoader.GetOrCreateResource(ref _SystemTextRegularExpressions, "aspnet90.System.Text.RegularExpressions"); + private static byte[]? _SystemTextRegularExpressions; + + /// + /// The image bytes for System.Threading.Channels.dll + /// + public static byte[] SystemThreadingChannels => ResourceLoader.GetOrCreateResource(ref _SystemThreadingChannels, "aspnet90.System.Threading.Channels"); + private static byte[]? _SystemThreadingChannels; + + /// + /// The image bytes for System.Threading.dll + /// + public static byte[] SystemThreading => ResourceLoader.GetOrCreateResource(ref _SystemThreading, "aspnet90.System.Threading"); + private static byte[]? _SystemThreading; + + /// + /// The image bytes for System.Threading.Overlapped.dll + /// + public static byte[] SystemThreadingOverlapped => ResourceLoader.GetOrCreateResource(ref _SystemThreadingOverlapped, "aspnet90.System.Threading.Overlapped"); + private static byte[]? _SystemThreadingOverlapped; + + /// + /// The image bytes for System.Threading.Tasks.Dataflow.dll + /// + public static byte[] SystemThreadingTasksDataflow => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksDataflow, "aspnet90.System.Threading.Tasks.Dataflow"); + private static byte[]? _SystemThreadingTasksDataflow; + + /// + /// The image bytes for System.Threading.Tasks.dll + /// + public static byte[] SystemThreadingTasks => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasks, "aspnet90.System.Threading.Tasks"); + private static byte[]? _SystemThreadingTasks; + + /// + /// The image bytes for System.Threading.Tasks.Extensions.dll + /// + public static byte[] SystemThreadingTasksExtensions => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksExtensions, "aspnet90.System.Threading.Tasks.Extensions"); + private static byte[]? _SystemThreadingTasksExtensions; + + /// + /// The image bytes for System.Threading.Tasks.Parallel.dll + /// + public static byte[] SystemThreadingTasksParallel => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksParallel, "aspnet90.System.Threading.Tasks.Parallel"); + private static byte[]? _SystemThreadingTasksParallel; + + /// + /// The image bytes for System.Threading.Thread.dll + /// + public static byte[] SystemThreadingThread => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThread, "aspnet90.System.Threading.Thread"); + private static byte[]? _SystemThreadingThread; + + /// + /// The image bytes for System.Threading.ThreadPool.dll + /// + public static byte[] SystemThreadingThreadPool => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThreadPool, "aspnet90.System.Threading.ThreadPool"); + private static byte[]? _SystemThreadingThreadPool; + + /// + /// The image bytes for System.Threading.Timer.dll + /// + public static byte[] SystemThreadingTimer => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTimer, "aspnet90.System.Threading.Timer"); + private static byte[]? _SystemThreadingTimer; + + /// + /// The image bytes for System.Transactions.dll + /// + public static byte[] SystemTransactions => ResourceLoader.GetOrCreateResource(ref _SystemTransactions, "aspnet90.System.Transactions"); + private static byte[]? _SystemTransactions; + + /// + /// The image bytes for System.Transactions.Local.dll + /// + public static byte[] SystemTransactionsLocal => ResourceLoader.GetOrCreateResource(ref _SystemTransactionsLocal, "aspnet90.System.Transactions.Local"); + private static byte[]? _SystemTransactionsLocal; + + /// + /// The image bytes for System.ValueTuple.dll + /// + public static byte[] SystemValueTuple => ResourceLoader.GetOrCreateResource(ref _SystemValueTuple, "aspnet90.System.ValueTuple"); + private static byte[]? _SystemValueTuple; + + /// + /// The image bytes for System.Web.dll + /// + public static byte[] SystemWeb => ResourceLoader.GetOrCreateResource(ref _SystemWeb, "aspnet90.System.Web"); + private static byte[]? _SystemWeb; + + /// + /// The image bytes for System.Web.HttpUtility.dll + /// + public static byte[] SystemWebHttpUtility => ResourceLoader.GetOrCreateResource(ref _SystemWebHttpUtility, "aspnet90.System.Web.HttpUtility"); + private static byte[]? _SystemWebHttpUtility; + + /// + /// The image bytes for System.Windows.dll + /// + public static byte[] SystemWindows => ResourceLoader.GetOrCreateResource(ref _SystemWindows, "aspnet90.System.Windows"); + private static byte[]? _SystemWindows; + + /// + /// The image bytes for System.Xml.dll + /// + public static byte[] SystemXml => ResourceLoader.GetOrCreateResource(ref _SystemXml, "aspnet90.System.Xml"); + private static byte[]? _SystemXml; + + /// + /// The image bytes for System.Xml.Linq.dll + /// + public static byte[] SystemXmlLinq => ResourceLoader.GetOrCreateResource(ref _SystemXmlLinq, "aspnet90.System.Xml.Linq"); + private static byte[]? _SystemXmlLinq; + + /// + /// The image bytes for System.Xml.ReaderWriter.dll + /// + public static byte[] SystemXmlReaderWriter => ResourceLoader.GetOrCreateResource(ref _SystemXmlReaderWriter, "aspnet90.System.Xml.ReaderWriter"); + private static byte[]? _SystemXmlReaderWriter; + + /// + /// The image bytes for System.Xml.Serialization.dll + /// + public static byte[] SystemXmlSerialization => ResourceLoader.GetOrCreateResource(ref _SystemXmlSerialization, "aspnet90.System.Xml.Serialization"); + private static byte[]? _SystemXmlSerialization; + + /// + /// The image bytes for System.Xml.XDocument.dll + /// + public static byte[] SystemXmlXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXDocument, "aspnet90.System.Xml.XDocument"); + private static byte[]? _SystemXmlXDocument; + + /// + /// The image bytes for System.Xml.XmlDocument.dll + /// + public static byte[] SystemXmlXmlDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlDocument, "aspnet90.System.Xml.XmlDocument"); + private static byte[]? _SystemXmlXmlDocument; + + /// + /// The image bytes for System.Xml.XmlSerializer.dll + /// + public static byte[] SystemXmlXmlSerializer => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlSerializer, "aspnet90.System.Xml.XmlSerializer"); + private static byte[]? _SystemXmlXmlSerializer; + + /// + /// The image bytes for System.Xml.XPath.dll + /// + public static byte[] SystemXmlXPath => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPath, "aspnet90.System.Xml.XPath"); + private static byte[]? _SystemXmlXPath; + + /// + /// The image bytes for System.Xml.XPath.XDocument.dll + /// + public static byte[] SystemXmlXPathXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPathXDocument, "aspnet90.System.Xml.XPath.XDocument"); + private static byte[]? _SystemXmlXPathXDocument; + + /// + /// The image bytes for WindowsBase.dll + /// + public static byte[] WindowsBase => ResourceLoader.GetOrCreateResource(ref _WindowsBase, "aspnet90.WindowsBase"); + private static byte[]? _WindowsBase; + + /// + /// The image bytes for Microsoft.AspNetCore.Antiforgery.dll + /// + public static byte[] MicrosoftAspNetCoreAntiforgery => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAntiforgery, "aspnet90.Microsoft.AspNetCore.Antiforgery"); + private static byte[]? _MicrosoftAspNetCoreAntiforgery; + + /// + /// The image bytes for Microsoft.AspNetCore.Authentication.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreAuthenticationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationAbstractions, "aspnet90.Microsoft.AspNetCore.Authentication.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreAuthenticationAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Authentication.BearerToken.dll + /// + public static byte[] MicrosoftAspNetCoreAuthenticationBearerToken => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationBearerToken, "aspnet90.Microsoft.AspNetCore.Authentication.BearerToken"); + private static byte[]? _MicrosoftAspNetCoreAuthenticationBearerToken; + + /// + /// The image bytes for Microsoft.AspNetCore.Authentication.Cookies.dll + /// + public static byte[] MicrosoftAspNetCoreAuthenticationCookies => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationCookies, "aspnet90.Microsoft.AspNetCore.Authentication.Cookies"); + private static byte[]? _MicrosoftAspNetCoreAuthenticationCookies; + + /// + /// The image bytes for Microsoft.AspNetCore.Authentication.Core.dll + /// + public static byte[] MicrosoftAspNetCoreAuthenticationCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationCore, "aspnet90.Microsoft.AspNetCore.Authentication.Core"); + private static byte[]? _MicrosoftAspNetCoreAuthenticationCore; + + /// + /// The image bytes for Microsoft.AspNetCore.Authentication.dll + /// + public static byte[] MicrosoftAspNetCoreAuthentication => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthentication, "aspnet90.Microsoft.AspNetCore.Authentication"); + private static byte[]? _MicrosoftAspNetCoreAuthentication; + + /// + /// The image bytes for Microsoft.AspNetCore.Authentication.OAuth.dll + /// + public static byte[] MicrosoftAspNetCoreAuthenticationOAuth => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationOAuth, "aspnet90.Microsoft.AspNetCore.Authentication.OAuth"); + private static byte[]? _MicrosoftAspNetCoreAuthenticationOAuth; + + /// + /// The image bytes for Microsoft.AspNetCore.Authorization.dll + /// + public static byte[] MicrosoftAspNetCoreAuthorization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthorization, "aspnet90.Microsoft.AspNetCore.Authorization"); + private static byte[]? _MicrosoftAspNetCoreAuthorization; + + /// + /// The image bytes for Microsoft.AspNetCore.Authorization.Policy.dll + /// + public static byte[] MicrosoftAspNetCoreAuthorizationPolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthorizationPolicy, "aspnet90.Microsoft.AspNetCore.Authorization.Policy"); + private static byte[]? _MicrosoftAspNetCoreAuthorizationPolicy; + + /// + /// The image bytes for Microsoft.AspNetCore.Components.Authorization.dll + /// + public static byte[] MicrosoftAspNetCoreComponentsAuthorization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsAuthorization, "aspnet90.Microsoft.AspNetCore.Components.Authorization"); + private static byte[]? _MicrosoftAspNetCoreComponentsAuthorization; + + /// + /// The image bytes for Microsoft.AspNetCore.Components.dll + /// + public static byte[] MicrosoftAspNetCoreComponents => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponents, "aspnet90.Microsoft.AspNetCore.Components"); + private static byte[]? _MicrosoftAspNetCoreComponents; + + /// + /// The image bytes for Microsoft.AspNetCore.Components.Endpoints.dll + /// + public static byte[] MicrosoftAspNetCoreComponentsEndpoints => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsEndpoints, "aspnet90.Microsoft.AspNetCore.Components.Endpoints"); + private static byte[]? _MicrosoftAspNetCoreComponentsEndpoints; + + /// + /// The image bytes for Microsoft.AspNetCore.Components.Forms.dll + /// + public static byte[] MicrosoftAspNetCoreComponentsForms => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsForms, "aspnet90.Microsoft.AspNetCore.Components.Forms"); + private static byte[]? _MicrosoftAspNetCoreComponentsForms; + + /// + /// The image bytes for Microsoft.AspNetCore.Components.Server.dll + /// + public static byte[] MicrosoftAspNetCoreComponentsServer => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsServer, "aspnet90.Microsoft.AspNetCore.Components.Server"); + private static byte[]? _MicrosoftAspNetCoreComponentsServer; + + /// + /// The image bytes for Microsoft.AspNetCore.Components.Web.dll + /// + public static byte[] MicrosoftAspNetCoreComponentsWeb => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsWeb, "aspnet90.Microsoft.AspNetCore.Components.Web"); + private static byte[]? _MicrosoftAspNetCoreComponentsWeb; + + /// + /// The image bytes for Microsoft.AspNetCore.Connections.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreConnectionsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreConnectionsAbstractions, "aspnet90.Microsoft.AspNetCore.Connections.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreConnectionsAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.CookiePolicy.dll + /// + public static byte[] MicrosoftAspNetCoreCookiePolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCookiePolicy, "aspnet90.Microsoft.AspNetCore.CookiePolicy"); + private static byte[]? _MicrosoftAspNetCoreCookiePolicy; + + /// + /// The image bytes for Microsoft.AspNetCore.Cors.dll + /// + public static byte[] MicrosoftAspNetCoreCors => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCors, "aspnet90.Microsoft.AspNetCore.Cors"); + private static byte[]? _MicrosoftAspNetCoreCors; + + /// + /// The image bytes for Microsoft.AspNetCore.Cryptography.Internal.dll + /// + public static byte[] MicrosoftAspNetCoreCryptographyInternal => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCryptographyInternal, "aspnet90.Microsoft.AspNetCore.Cryptography.Internal"); + private static byte[]? _MicrosoftAspNetCoreCryptographyInternal; + + /// + /// The image bytes for Microsoft.AspNetCore.Cryptography.KeyDerivation.dll + /// + public static byte[] MicrosoftAspNetCoreCryptographyKeyDerivation => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCryptographyKeyDerivation, "aspnet90.Microsoft.AspNetCore.Cryptography.KeyDerivation"); + private static byte[]? _MicrosoftAspNetCoreCryptographyKeyDerivation; + + /// + /// The image bytes for Microsoft.AspNetCore.DataProtection.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreDataProtectionAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtectionAbstractions, "aspnet90.Microsoft.AspNetCore.DataProtection.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreDataProtectionAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.DataProtection.dll + /// + public static byte[] MicrosoftAspNetCoreDataProtection => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtection, "aspnet90.Microsoft.AspNetCore.DataProtection"); + private static byte[]? _MicrosoftAspNetCoreDataProtection; + + /// + /// The image bytes for Microsoft.AspNetCore.DataProtection.Extensions.dll + /// + public static byte[] MicrosoftAspNetCoreDataProtectionExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtectionExtensions, "aspnet90.Microsoft.AspNetCore.DataProtection.Extensions"); + private static byte[]? _MicrosoftAspNetCoreDataProtectionExtensions; + + /// + /// The image bytes for Microsoft.AspNetCore.Diagnostics.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreDiagnosticsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnosticsAbstractions, "aspnet90.Microsoft.AspNetCore.Diagnostics.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreDiagnosticsAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Diagnostics.dll + /// + public static byte[] MicrosoftAspNetCoreDiagnostics => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnostics, "aspnet90.Microsoft.AspNetCore.Diagnostics"); + private static byte[]? _MicrosoftAspNetCoreDiagnostics; + + /// + /// The image bytes for Microsoft.AspNetCore.Diagnostics.HealthChecks.dll + /// + public static byte[] MicrosoftAspNetCoreDiagnosticsHealthChecks => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnosticsHealthChecks, "aspnet90.Microsoft.AspNetCore.Diagnostics.HealthChecks"); + private static byte[]? _MicrosoftAspNetCoreDiagnosticsHealthChecks; + + /// + /// The image bytes for Microsoft.AspNetCore.dll + /// + public static byte[] MicrosoftAspNetCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCore, "aspnet90.Microsoft.AspNetCore"); + private static byte[]? _MicrosoftAspNetCore; + + /// + /// The image bytes for Microsoft.AspNetCore.HostFiltering.dll + /// + public static byte[] MicrosoftAspNetCoreHostFiltering => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostFiltering, "aspnet90.Microsoft.AspNetCore.HostFiltering"); + private static byte[]? _MicrosoftAspNetCoreHostFiltering; + + /// + /// The image bytes for Microsoft.AspNetCore.Hosting.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreHostingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostingAbstractions, "aspnet90.Microsoft.AspNetCore.Hosting.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreHostingAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Hosting.dll + /// + public static byte[] MicrosoftAspNetCoreHosting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHosting, "aspnet90.Microsoft.AspNetCore.Hosting"); + private static byte[]? _MicrosoftAspNetCoreHosting; + + /// + /// The image bytes for Microsoft.AspNetCore.Hosting.Server.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreHostingServerAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostingServerAbstractions, "aspnet90.Microsoft.AspNetCore.Hosting.Server.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreHostingServerAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Html.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreHtmlAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHtmlAbstractions, "aspnet90.Microsoft.AspNetCore.Html.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreHtmlAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreHttpAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpAbstractions, "aspnet90.Microsoft.AspNetCore.Http.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreHttpAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.Connections.Common.dll + /// + public static byte[] MicrosoftAspNetCoreHttpConnectionsCommon => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpConnectionsCommon, "aspnet90.Microsoft.AspNetCore.Http.Connections.Common"); + private static byte[]? _MicrosoftAspNetCoreHttpConnectionsCommon; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.Connections.dll + /// + public static byte[] MicrosoftAspNetCoreHttpConnections => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpConnections, "aspnet90.Microsoft.AspNetCore.Http.Connections"); + private static byte[]? _MicrosoftAspNetCoreHttpConnections; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.dll + /// + public static byte[] MicrosoftAspNetCoreHttp => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttp, "aspnet90.Microsoft.AspNetCore.Http"); + private static byte[]? _MicrosoftAspNetCoreHttp; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.Extensions.dll + /// + public static byte[] MicrosoftAspNetCoreHttpExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpExtensions, "aspnet90.Microsoft.AspNetCore.Http.Extensions"); + private static byte[]? _MicrosoftAspNetCoreHttpExtensions; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.Features.dll + /// + public static byte[] MicrosoftAspNetCoreHttpFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpFeatures, "aspnet90.Microsoft.AspNetCore.Http.Features"); + private static byte[]? _MicrosoftAspNetCoreHttpFeatures; + + /// + /// The image bytes for Microsoft.AspNetCore.Http.Results.dll + /// + public static byte[] MicrosoftAspNetCoreHttpResults => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpResults, "aspnet90.Microsoft.AspNetCore.Http.Results"); + private static byte[]? _MicrosoftAspNetCoreHttpResults; + + /// + /// The image bytes for Microsoft.AspNetCore.HttpLogging.dll + /// + public static byte[] MicrosoftAspNetCoreHttpLogging => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpLogging, "aspnet90.Microsoft.AspNetCore.HttpLogging"); + private static byte[]? _MicrosoftAspNetCoreHttpLogging; + + /// + /// The image bytes for Microsoft.AspNetCore.HttpOverrides.dll + /// + public static byte[] MicrosoftAspNetCoreHttpOverrides => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpOverrides, "aspnet90.Microsoft.AspNetCore.HttpOverrides"); + private static byte[]? _MicrosoftAspNetCoreHttpOverrides; + + /// + /// The image bytes for Microsoft.AspNetCore.HttpsPolicy.dll + /// + public static byte[] MicrosoftAspNetCoreHttpsPolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpsPolicy, "aspnet90.Microsoft.AspNetCore.HttpsPolicy"); + private static byte[]? _MicrosoftAspNetCoreHttpsPolicy; + + /// + /// The image bytes for Microsoft.AspNetCore.Identity.dll + /// + public static byte[] MicrosoftAspNetCoreIdentity => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreIdentity, "aspnet90.Microsoft.AspNetCore.Identity"); + private static byte[]? _MicrosoftAspNetCoreIdentity; + + /// + /// The image bytes for Microsoft.AspNetCore.Localization.dll + /// + public static byte[] MicrosoftAspNetCoreLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreLocalization, "aspnet90.Microsoft.AspNetCore.Localization"); + private static byte[]? _MicrosoftAspNetCoreLocalization; + + /// + /// The image bytes for Microsoft.AspNetCore.Localization.Routing.dll + /// + public static byte[] MicrosoftAspNetCoreLocalizationRouting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreLocalizationRouting, "aspnet90.Microsoft.AspNetCore.Localization.Routing"); + private static byte[]? _MicrosoftAspNetCoreLocalizationRouting; + + /// + /// The image bytes for Microsoft.AspNetCore.Metadata.dll + /// + public static byte[] MicrosoftAspNetCoreMetadata => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMetadata, "aspnet90.Microsoft.AspNetCore.Metadata"); + private static byte[]? _MicrosoftAspNetCoreMetadata; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreMvcAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcAbstractions, "aspnet90.Microsoft.AspNetCore.Mvc.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreMvcAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.ApiExplorer.dll + /// + public static byte[] MicrosoftAspNetCoreMvcApiExplorer => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcApiExplorer, "aspnet90.Microsoft.AspNetCore.Mvc.ApiExplorer"); + private static byte[]? _MicrosoftAspNetCoreMvcApiExplorer; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Core.dll + /// + public static byte[] MicrosoftAspNetCoreMvcCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcCore, "aspnet90.Microsoft.AspNetCore.Mvc.Core"); + private static byte[]? _MicrosoftAspNetCoreMvcCore; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Cors.dll + /// + public static byte[] MicrosoftAspNetCoreMvcCors => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcCors, "aspnet90.Microsoft.AspNetCore.Mvc.Cors"); + private static byte[]? _MicrosoftAspNetCoreMvcCors; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.DataAnnotations.dll + /// + public static byte[] MicrosoftAspNetCoreMvcDataAnnotations => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcDataAnnotations, "aspnet90.Microsoft.AspNetCore.Mvc.DataAnnotations"); + private static byte[]? _MicrosoftAspNetCoreMvcDataAnnotations; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.dll + /// + public static byte[] MicrosoftAspNetCoreMvc => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvc, "aspnet90.Microsoft.AspNetCore.Mvc"); + private static byte[]? _MicrosoftAspNetCoreMvc; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Formatters.Json.dll + /// + public static byte[] MicrosoftAspNetCoreMvcFormattersJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcFormattersJson, "aspnet90.Microsoft.AspNetCore.Mvc.Formatters.Json"); + private static byte[]? _MicrosoftAspNetCoreMvcFormattersJson; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Formatters.Xml.dll + /// + public static byte[] MicrosoftAspNetCoreMvcFormattersXml => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcFormattersXml, "aspnet90.Microsoft.AspNetCore.Mvc.Formatters.Xml"); + private static byte[]? _MicrosoftAspNetCoreMvcFormattersXml; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Localization.dll + /// + public static byte[] MicrosoftAspNetCoreMvcLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcLocalization, "aspnet90.Microsoft.AspNetCore.Mvc.Localization"); + private static byte[]? _MicrosoftAspNetCoreMvcLocalization; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.Razor.dll + /// + public static byte[] MicrosoftAspNetCoreMvcRazor => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcRazor, "aspnet90.Microsoft.AspNetCore.Mvc.Razor"); + private static byte[]? _MicrosoftAspNetCoreMvcRazor; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.RazorPages.dll + /// + public static byte[] MicrosoftAspNetCoreMvcRazorPages => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcRazorPages, "aspnet90.Microsoft.AspNetCore.Mvc.RazorPages"); + private static byte[]? _MicrosoftAspNetCoreMvcRazorPages; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.TagHelpers.dll + /// + public static byte[] MicrosoftAspNetCoreMvcTagHelpers => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcTagHelpers, "aspnet90.Microsoft.AspNetCore.Mvc.TagHelpers"); + private static byte[]? _MicrosoftAspNetCoreMvcTagHelpers; + + /// + /// The image bytes for Microsoft.AspNetCore.Mvc.ViewFeatures.dll + /// + public static byte[] MicrosoftAspNetCoreMvcViewFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcViewFeatures, "aspnet90.Microsoft.AspNetCore.Mvc.ViewFeatures"); + private static byte[]? _MicrosoftAspNetCoreMvcViewFeatures; + + /// + /// The image bytes for Microsoft.AspNetCore.OutputCaching.dll + /// + public static byte[] MicrosoftAspNetCoreOutputCaching => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreOutputCaching, "aspnet90.Microsoft.AspNetCore.OutputCaching"); + private static byte[]? _MicrosoftAspNetCoreOutputCaching; + + /// + /// The image bytes for Microsoft.AspNetCore.RateLimiting.dll + /// + public static byte[] MicrosoftAspNetCoreRateLimiting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRateLimiting, "aspnet90.Microsoft.AspNetCore.RateLimiting"); + private static byte[]? _MicrosoftAspNetCoreRateLimiting; + + /// + /// The image bytes for Microsoft.AspNetCore.Razor.dll + /// + public static byte[] MicrosoftAspNetCoreRazor => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRazor, "aspnet90.Microsoft.AspNetCore.Razor"); + private static byte[]? _MicrosoftAspNetCoreRazor; + + /// + /// The image bytes for Microsoft.AspNetCore.Razor.Runtime.dll + /// + public static byte[] MicrosoftAspNetCoreRazorRuntime => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRazorRuntime, "aspnet90.Microsoft.AspNetCore.Razor.Runtime"); + private static byte[]? _MicrosoftAspNetCoreRazorRuntime; + + /// + /// The image bytes for Microsoft.AspNetCore.RequestDecompression.dll + /// + public static byte[] MicrosoftAspNetCoreRequestDecompression => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRequestDecompression, "aspnet90.Microsoft.AspNetCore.RequestDecompression"); + private static byte[]? _MicrosoftAspNetCoreRequestDecompression; + + /// + /// The image bytes for Microsoft.AspNetCore.ResponseCaching.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreResponseCachingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCachingAbstractions, "aspnet90.Microsoft.AspNetCore.ResponseCaching.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreResponseCachingAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.ResponseCaching.dll + /// + public static byte[] MicrosoftAspNetCoreResponseCaching => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCaching, "aspnet90.Microsoft.AspNetCore.ResponseCaching"); + private static byte[]? _MicrosoftAspNetCoreResponseCaching; + + /// + /// The image bytes for Microsoft.AspNetCore.ResponseCompression.dll + /// + public static byte[] MicrosoftAspNetCoreResponseCompression => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCompression, "aspnet90.Microsoft.AspNetCore.ResponseCompression"); + private static byte[]? _MicrosoftAspNetCoreResponseCompression; + + /// + /// The image bytes for Microsoft.AspNetCore.Rewrite.dll + /// + public static byte[] MicrosoftAspNetCoreRewrite => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRewrite, "aspnet90.Microsoft.AspNetCore.Rewrite"); + private static byte[]? _MicrosoftAspNetCoreRewrite; + + /// + /// The image bytes for Microsoft.AspNetCore.Routing.Abstractions.dll + /// + public static byte[] MicrosoftAspNetCoreRoutingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRoutingAbstractions, "aspnet90.Microsoft.AspNetCore.Routing.Abstractions"); + private static byte[]? _MicrosoftAspNetCoreRoutingAbstractions; + + /// + /// The image bytes for Microsoft.AspNetCore.Routing.dll + /// + public static byte[] MicrosoftAspNetCoreRouting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRouting, "aspnet90.Microsoft.AspNetCore.Routing"); + private static byte[]? _MicrosoftAspNetCoreRouting; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.HttpSys.dll + /// + public static byte[] MicrosoftAspNetCoreServerHttpSys => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerHttpSys, "aspnet90.Microsoft.AspNetCore.Server.HttpSys"); + private static byte[]? _MicrosoftAspNetCoreServerHttpSys; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.IIS.dll + /// + public static byte[] MicrosoftAspNetCoreServerIIS => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerIIS, "aspnet90.Microsoft.AspNetCore.Server.IIS"); + private static byte[]? _MicrosoftAspNetCoreServerIIS; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.IISIntegration.dll + /// + public static byte[] MicrosoftAspNetCoreServerIISIntegration => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerIISIntegration, "aspnet90.Microsoft.AspNetCore.Server.IISIntegration"); + private static byte[]? _MicrosoftAspNetCoreServerIISIntegration; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.Kestrel.Core.dll + /// + public static byte[] MicrosoftAspNetCoreServerKestrelCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelCore, "aspnet90.Microsoft.AspNetCore.Server.Kestrel.Core"); + private static byte[]? _MicrosoftAspNetCoreServerKestrelCore; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.Kestrel.dll + /// + public static byte[] MicrosoftAspNetCoreServerKestrel => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrel, "aspnet90.Microsoft.AspNetCore.Server.Kestrel"); + private static byte[]? _MicrosoftAspNetCoreServerKestrel; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll + /// + public static byte[] MicrosoftAspNetCoreServerKestrelTransportNamedPipes => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelTransportNamedPipes, "aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes"); + private static byte[]? _MicrosoftAspNetCoreServerKestrelTransportNamedPipes; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll + /// + public static byte[] MicrosoftAspNetCoreServerKestrelTransportQuic => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelTransportQuic, "aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.Quic"); + private static byte[]? _MicrosoftAspNetCoreServerKestrelTransportQuic; + + /// + /// The image bytes for Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll + /// + public static byte[] MicrosoftAspNetCoreServerKestrelTransportSockets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelTransportSockets, "aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets"); + private static byte[]? _MicrosoftAspNetCoreServerKestrelTransportSockets; + + /// + /// The image bytes for Microsoft.AspNetCore.Session.dll + /// + public static byte[] MicrosoftAspNetCoreSession => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSession, "aspnet90.Microsoft.AspNetCore.Session"); + private static byte[]? _MicrosoftAspNetCoreSession; + + /// + /// The image bytes for Microsoft.AspNetCore.SignalR.Common.dll + /// + public static byte[] MicrosoftAspNetCoreSignalRCommon => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRCommon, "aspnet90.Microsoft.AspNetCore.SignalR.Common"); + private static byte[]? _MicrosoftAspNetCoreSignalRCommon; + + /// + /// The image bytes for Microsoft.AspNetCore.SignalR.Core.dll + /// + public static byte[] MicrosoftAspNetCoreSignalRCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRCore, "aspnet90.Microsoft.AspNetCore.SignalR.Core"); + private static byte[]? _MicrosoftAspNetCoreSignalRCore; + + /// + /// The image bytes for Microsoft.AspNetCore.SignalR.dll + /// + public static byte[] MicrosoftAspNetCoreSignalR => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalR, "aspnet90.Microsoft.AspNetCore.SignalR"); + private static byte[]? _MicrosoftAspNetCoreSignalR; + + /// + /// The image bytes for Microsoft.AspNetCore.SignalR.Protocols.Json.dll + /// + public static byte[] MicrosoftAspNetCoreSignalRProtocolsJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRProtocolsJson, "aspnet90.Microsoft.AspNetCore.SignalR.Protocols.Json"); + private static byte[]? _MicrosoftAspNetCoreSignalRProtocolsJson; + + /// + /// The image bytes for Microsoft.AspNetCore.StaticAssets.dll + /// + public static byte[] MicrosoftAspNetCoreStaticAssets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreStaticAssets, "aspnet90.Microsoft.AspNetCore.StaticAssets"); + private static byte[]? _MicrosoftAspNetCoreStaticAssets; + + /// + /// The image bytes for Microsoft.AspNetCore.StaticFiles.dll + /// + public static byte[] MicrosoftAspNetCoreStaticFiles => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreStaticFiles, "aspnet90.Microsoft.AspNetCore.StaticFiles"); + private static byte[]? _MicrosoftAspNetCoreStaticFiles; + + /// + /// The image bytes for Microsoft.AspNetCore.WebSockets.dll + /// + public static byte[] MicrosoftAspNetCoreWebSockets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreWebSockets, "aspnet90.Microsoft.AspNetCore.WebSockets"); + private static byte[]? _MicrosoftAspNetCoreWebSockets; + + /// + /// The image bytes for Microsoft.AspNetCore.WebUtilities.dll + /// + public static byte[] MicrosoftAspNetCoreWebUtilities => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreWebUtilities, "aspnet90.Microsoft.AspNetCore.WebUtilities"); + private static byte[]? _MicrosoftAspNetCoreWebUtilities; + + /// + /// The image bytes for Microsoft.Extensions.Caching.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsCachingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsCachingAbstractions, "aspnet90.Microsoft.Extensions.Caching.Abstractions"); + private static byte[]? _MicrosoftExtensionsCachingAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Caching.Memory.dll + /// + public static byte[] MicrosoftExtensionsCachingMemory => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsCachingMemory, "aspnet90.Microsoft.Extensions.Caching.Memory"); + private static byte[]? _MicrosoftExtensionsCachingMemory; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsConfigurationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationAbstractions, "aspnet90.Microsoft.Extensions.Configuration.Abstractions"); + private static byte[]? _MicrosoftExtensionsConfigurationAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.Binder.dll + /// + public static byte[] MicrosoftExtensionsConfigurationBinder => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationBinder, "aspnet90.Microsoft.Extensions.Configuration.Binder"); + private static byte[]? _MicrosoftExtensionsConfigurationBinder; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.CommandLine.dll + /// + public static byte[] MicrosoftExtensionsConfigurationCommandLine => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationCommandLine, "aspnet90.Microsoft.Extensions.Configuration.CommandLine"); + private static byte[]? _MicrosoftExtensionsConfigurationCommandLine; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.dll + /// + public static byte[] MicrosoftExtensionsConfiguration => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfiguration, "aspnet90.Microsoft.Extensions.Configuration"); + private static byte[]? _MicrosoftExtensionsConfiguration; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.EnvironmentVariables.dll + /// + public static byte[] MicrosoftExtensionsConfigurationEnvironmentVariables => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationEnvironmentVariables, "aspnet90.Microsoft.Extensions.Configuration.EnvironmentVariables"); + private static byte[]? _MicrosoftExtensionsConfigurationEnvironmentVariables; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.FileExtensions.dll + /// + public static byte[] MicrosoftExtensionsConfigurationFileExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationFileExtensions, "aspnet90.Microsoft.Extensions.Configuration.FileExtensions"); + private static byte[]? _MicrosoftExtensionsConfigurationFileExtensions; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.Ini.dll + /// + public static byte[] MicrosoftExtensionsConfigurationIni => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationIni, "aspnet90.Microsoft.Extensions.Configuration.Ini"); + private static byte[]? _MicrosoftExtensionsConfigurationIni; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.Json.dll + /// + public static byte[] MicrosoftExtensionsConfigurationJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationJson, "aspnet90.Microsoft.Extensions.Configuration.Json"); + private static byte[]? _MicrosoftExtensionsConfigurationJson; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.KeyPerFile.dll + /// + public static byte[] MicrosoftExtensionsConfigurationKeyPerFile => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationKeyPerFile, "aspnet90.Microsoft.Extensions.Configuration.KeyPerFile"); + private static byte[]? _MicrosoftExtensionsConfigurationKeyPerFile; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.UserSecrets.dll + /// + public static byte[] MicrosoftExtensionsConfigurationUserSecrets => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationUserSecrets, "aspnet90.Microsoft.Extensions.Configuration.UserSecrets"); + private static byte[]? _MicrosoftExtensionsConfigurationUserSecrets; + + /// + /// The image bytes for Microsoft.Extensions.Configuration.Xml.dll + /// + public static byte[] MicrosoftExtensionsConfigurationXml => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationXml, "aspnet90.Microsoft.Extensions.Configuration.Xml"); + private static byte[]? _MicrosoftExtensionsConfigurationXml; + + /// + /// The image bytes for Microsoft.Extensions.DependencyInjection.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsDependencyInjectionAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDependencyInjectionAbstractions, "aspnet90.Microsoft.Extensions.DependencyInjection.Abstractions"); + private static byte[]? _MicrosoftExtensionsDependencyInjectionAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.DependencyInjection.dll + /// + public static byte[] MicrosoftExtensionsDependencyInjection => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDependencyInjection, "aspnet90.Microsoft.Extensions.DependencyInjection"); + private static byte[]? _MicrosoftExtensionsDependencyInjection; + + /// + /// The image bytes for Microsoft.Extensions.Diagnostics.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsDiagnosticsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsAbstractions, "aspnet90.Microsoft.Extensions.Diagnostics.Abstractions"); + private static byte[]? _MicrosoftExtensionsDiagnosticsAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Diagnostics.dll + /// + public static byte[] MicrosoftExtensionsDiagnostics => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnostics, "aspnet90.Microsoft.Extensions.Diagnostics"); + private static byte[]? _MicrosoftExtensionsDiagnostics; + + /// + /// The image bytes for Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsDiagnosticsHealthChecksAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, "aspnet90.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions"); + private static byte[]? _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Diagnostics.HealthChecks.dll + /// + public static byte[] MicrosoftExtensionsDiagnosticsHealthChecks => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsHealthChecks, "aspnet90.Microsoft.Extensions.Diagnostics.HealthChecks"); + private static byte[]? _MicrosoftExtensionsDiagnosticsHealthChecks; + + /// + /// The image bytes for Microsoft.Extensions.Features.dll + /// + public static byte[] MicrosoftExtensionsFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFeatures, "aspnet90.Microsoft.Extensions.Features"); + private static byte[]? _MicrosoftExtensionsFeatures; + + /// + /// The image bytes for Microsoft.Extensions.FileProviders.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsFileProvidersAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersAbstractions, "aspnet90.Microsoft.Extensions.FileProviders.Abstractions"); + private static byte[]? _MicrosoftExtensionsFileProvidersAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.FileProviders.Composite.dll + /// + public static byte[] MicrosoftExtensionsFileProvidersComposite => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersComposite, "aspnet90.Microsoft.Extensions.FileProviders.Composite"); + private static byte[]? _MicrosoftExtensionsFileProvidersComposite; + + /// + /// The image bytes for Microsoft.Extensions.FileProviders.Embedded.dll + /// + public static byte[] MicrosoftExtensionsFileProvidersEmbedded => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersEmbedded, "aspnet90.Microsoft.Extensions.FileProviders.Embedded"); + private static byte[]? _MicrosoftExtensionsFileProvidersEmbedded; + + /// + /// The image bytes for Microsoft.Extensions.FileProviders.Physical.dll + /// + public static byte[] MicrosoftExtensionsFileProvidersPhysical => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersPhysical, "aspnet90.Microsoft.Extensions.FileProviders.Physical"); + private static byte[]? _MicrosoftExtensionsFileProvidersPhysical; + + /// + /// The image bytes for Microsoft.Extensions.FileSystemGlobbing.dll + /// + public static byte[] MicrosoftExtensionsFileSystemGlobbing => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileSystemGlobbing, "aspnet90.Microsoft.Extensions.FileSystemGlobbing"); + private static byte[]? _MicrosoftExtensionsFileSystemGlobbing; + + /// + /// The image bytes for Microsoft.Extensions.Hosting.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsHostingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHostingAbstractions, "aspnet90.Microsoft.Extensions.Hosting.Abstractions"); + private static byte[]? _MicrosoftExtensionsHostingAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Hosting.dll + /// + public static byte[] MicrosoftExtensionsHosting => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHosting, "aspnet90.Microsoft.Extensions.Hosting"); + private static byte[]? _MicrosoftExtensionsHosting; + + /// + /// The image bytes for Microsoft.Extensions.Http.dll + /// + public static byte[] MicrosoftExtensionsHttp => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHttp, "aspnet90.Microsoft.Extensions.Http"); + private static byte[]? _MicrosoftExtensionsHttp; + + /// + /// The image bytes for Microsoft.Extensions.Identity.Core.dll + /// + public static byte[] MicrosoftExtensionsIdentityCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsIdentityCore, "aspnet90.Microsoft.Extensions.Identity.Core"); + private static byte[]? _MicrosoftExtensionsIdentityCore; + + /// + /// The image bytes for Microsoft.Extensions.Identity.Stores.dll + /// + public static byte[] MicrosoftExtensionsIdentityStores => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsIdentityStores, "aspnet90.Microsoft.Extensions.Identity.Stores"); + private static byte[]? _MicrosoftExtensionsIdentityStores; + + /// + /// The image bytes for Microsoft.Extensions.Localization.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsLocalizationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLocalizationAbstractions, "aspnet90.Microsoft.Extensions.Localization.Abstractions"); + private static byte[]? _MicrosoftExtensionsLocalizationAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Localization.dll + /// + public static byte[] MicrosoftExtensionsLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLocalization, "aspnet90.Microsoft.Extensions.Localization"); + private static byte[]? _MicrosoftExtensionsLocalization; + + /// + /// The image bytes for Microsoft.Extensions.Logging.Abstractions.dll + /// + public static byte[] MicrosoftExtensionsLoggingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingAbstractions, "aspnet90.Microsoft.Extensions.Logging.Abstractions"); + private static byte[]? _MicrosoftExtensionsLoggingAbstractions; + + /// + /// The image bytes for Microsoft.Extensions.Logging.Configuration.dll + /// + public static byte[] MicrosoftExtensionsLoggingConfiguration => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingConfiguration, "aspnet90.Microsoft.Extensions.Logging.Configuration"); + private static byte[]? _MicrosoftExtensionsLoggingConfiguration; + + /// + /// The image bytes for Microsoft.Extensions.Logging.Console.dll + /// + public static byte[] MicrosoftExtensionsLoggingConsole => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingConsole, "aspnet90.Microsoft.Extensions.Logging.Console"); + private static byte[]? _MicrosoftExtensionsLoggingConsole; + + /// + /// The image bytes for Microsoft.Extensions.Logging.Debug.dll + /// + public static byte[] MicrosoftExtensionsLoggingDebug => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingDebug, "aspnet90.Microsoft.Extensions.Logging.Debug"); + private static byte[]? _MicrosoftExtensionsLoggingDebug; + + /// + /// The image bytes for Microsoft.Extensions.Logging.dll + /// + public static byte[] MicrosoftExtensionsLogging => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLogging, "aspnet90.Microsoft.Extensions.Logging"); + private static byte[]? _MicrosoftExtensionsLogging; + + /// + /// The image bytes for Microsoft.Extensions.Logging.EventLog.dll + /// + public static byte[] MicrosoftExtensionsLoggingEventLog => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingEventLog, "aspnet90.Microsoft.Extensions.Logging.EventLog"); + private static byte[]? _MicrosoftExtensionsLoggingEventLog; + + /// + /// The image bytes for Microsoft.Extensions.Logging.EventSource.dll + /// + public static byte[] MicrosoftExtensionsLoggingEventSource => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingEventSource, "aspnet90.Microsoft.Extensions.Logging.EventSource"); + private static byte[]? _MicrosoftExtensionsLoggingEventSource; + + /// + /// The image bytes for Microsoft.Extensions.Logging.TraceSource.dll + /// + public static byte[] MicrosoftExtensionsLoggingTraceSource => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingTraceSource, "aspnet90.Microsoft.Extensions.Logging.TraceSource"); + private static byte[]? _MicrosoftExtensionsLoggingTraceSource; + + /// + /// The image bytes for Microsoft.Extensions.ObjectPool.dll + /// + public static byte[] MicrosoftExtensionsObjectPool => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsObjectPool, "aspnet90.Microsoft.Extensions.ObjectPool"); + private static byte[]? _MicrosoftExtensionsObjectPool; + + /// + /// The image bytes for Microsoft.Extensions.Options.ConfigurationExtensions.dll + /// + public static byte[] MicrosoftExtensionsOptionsConfigurationExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptionsConfigurationExtensions, "aspnet90.Microsoft.Extensions.Options.ConfigurationExtensions"); + private static byte[]? _MicrosoftExtensionsOptionsConfigurationExtensions; + + /// + /// The image bytes for Microsoft.Extensions.Options.DataAnnotations.dll + /// + public static byte[] MicrosoftExtensionsOptionsDataAnnotations => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptionsDataAnnotations, "aspnet90.Microsoft.Extensions.Options.DataAnnotations"); + private static byte[]? _MicrosoftExtensionsOptionsDataAnnotations; + + /// + /// The image bytes for Microsoft.Extensions.Options.dll + /// + public static byte[] MicrosoftExtensionsOptions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptions, "aspnet90.Microsoft.Extensions.Options"); + private static byte[]? _MicrosoftExtensionsOptions; + + /// + /// The image bytes for Microsoft.Extensions.Primitives.dll + /// + public static byte[] MicrosoftExtensionsPrimitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsPrimitives, "aspnet90.Microsoft.Extensions.Primitives"); + private static byte[]? _MicrosoftExtensionsPrimitives; + + /// + /// The image bytes for Microsoft.Extensions.WebEncoders.dll + /// + public static byte[] MicrosoftExtensionsWebEncoders => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsWebEncoders, "aspnet90.Microsoft.Extensions.WebEncoders"); + private static byte[]? _MicrosoftExtensionsWebEncoders; + + /// + /// The image bytes for Microsoft.JSInterop.dll + /// + public static byte[] MicrosoftJSInterop => ResourceLoader.GetOrCreateResource(ref _MicrosoftJSInterop, "aspnet90.Microsoft.JSInterop"); + private static byte[]? _MicrosoftJSInterop; + + /// + /// The image bytes for Microsoft.Net.Http.Headers.dll + /// + public static byte[] MicrosoftNetHttpHeaders => ResourceLoader.GetOrCreateResource(ref _MicrosoftNetHttpHeaders, "aspnet90.Microsoft.Net.Http.Headers"); + private static byte[]? _MicrosoftNetHttpHeaders; + + /// + /// The image bytes for System.Diagnostics.EventLog.dll + /// + public static byte[] SystemDiagnosticsEventLog => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsEventLog, "aspnet90.System.Diagnostics.EventLog"); + private static byte[]? _SystemDiagnosticsEventLog; + + /// + /// The image bytes for System.Security.Cryptography.Xml.dll + /// + public static byte[] SystemSecurityCryptographyXml => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyXml, "aspnet90.System.Security.Cryptography.Xml"); + private static byte[]? _SystemSecurityCryptographyXml; + + /// + /// The image bytes for System.Threading.RateLimiting.dll + /// + public static byte[] SystemThreadingRateLimiting => ResourceLoader.GetOrCreateResource(ref _SystemThreadingRateLimiting, "aspnet90.System.Threading.RateLimiting"); + private static byte[]? _SystemThreadingRateLimiting; + + + } +} + +#if !BASIC_REFERENCE_ASSEMBLIES_COMBINED + public static partial class AspNet90 + { + + /// + /// Contains different properties of a reference that are interesting for use in testing. + /// + public readonly struct ReferenceInfo + { + /// + /// The file name of the reference. + /// + public string FileName { get; } + + /// + /// The image bytes of the reference + /// + public byte[] ImageBytes { get; } + + /// + /// The reference loaded as a + /// + public PortableExecutableReference Reference { get; } + + /// + /// The MVID of this reference + /// + public Guid Mvid { get; } + + public ReferenceInfo(string fileName, byte[] imageBytes, PortableExecutableReference reference, Guid mvid) + { + FileName = fileName; + ImageBytes = imageBytes; + Reference = reference; + Mvid = mvid; + } + + public void Deconstruct(out string fileName, out byte[] imageBytes, out PortableExecutableReference reference, out Guid mvid) + { + fileName = FileName; + imageBytes = ImageBytes; + reference = Reference; + mvid = Mvid; + } + + public (string FileName, byte[] ImageBytes, PortableExecutableReference Reference, Guid Mvid) AsTuple() => + (FileName, ImageBytes, Reference, Mvid); + } + } +#endif diff --git a/Src/Basic.Reference.Assemblies.AspNet100/Generated.targets b/Src/Basic.Reference.Assemblies.AspNet100/Generated.targets new file mode 100644 index 0000000..e89c885 --- /dev/null +++ b/Src/Basic.Reference.Assemblies.AspNet100/Generated.targets @@ -0,0 +1,1212 @@ + + + + aspnet90.Microsoft.CSharp + Resources\aspnet90\Microsoft.CSharp.dll + + + aspnet90.Microsoft.VisualBasic.Core + Resources\aspnet90\Microsoft.VisualBasic.Core.dll + + + aspnet90.Microsoft.VisualBasic + Resources\aspnet90\Microsoft.VisualBasic.dll + + + aspnet90.Microsoft.Win32.Primitives + Resources\aspnet90\Microsoft.Win32.Primitives.dll + + + aspnet90.Microsoft.Win32.Registry + Resources\aspnet90\Microsoft.Win32.Registry.dll + + + aspnet90.mscorlib + Resources\aspnet90\mscorlib.dll + + + aspnet90.netstandard + Resources\aspnet90\netstandard.dll + + + aspnet90.System.AppContext + Resources\aspnet90\System.AppContext.dll + + + aspnet90.System.Buffers + Resources\aspnet90\System.Buffers.dll + + + aspnet90.System.Collections.Concurrent + Resources\aspnet90\System.Collections.Concurrent.dll + + + aspnet90.System.Collections + Resources\aspnet90\System.Collections.dll + + + aspnet90.System.Collections.Immutable + Resources\aspnet90\System.Collections.Immutable.dll + + + aspnet90.System.Collections.NonGeneric + Resources\aspnet90\System.Collections.NonGeneric.dll + + + aspnet90.System.Collections.Specialized + Resources\aspnet90\System.Collections.Specialized.dll + + + aspnet90.System.ComponentModel.Annotations + Resources\aspnet90\System.ComponentModel.Annotations.dll + + + aspnet90.System.ComponentModel.DataAnnotations + Resources\aspnet90\System.ComponentModel.DataAnnotations.dll + + + aspnet90.System.ComponentModel + Resources\aspnet90\System.ComponentModel.dll + + + aspnet90.System.ComponentModel.EventBasedAsync + Resources\aspnet90\System.ComponentModel.EventBasedAsync.dll + + + aspnet90.System.ComponentModel.Primitives + Resources\aspnet90\System.ComponentModel.Primitives.dll + + + aspnet90.System.ComponentModel.TypeConverter + Resources\aspnet90\System.ComponentModel.TypeConverter.dll + + + aspnet90.System.Configuration + Resources\aspnet90\System.Configuration.dll + + + aspnet90.System.Console + Resources\aspnet90\System.Console.dll + + + aspnet90.System.Core + Resources\aspnet90\System.Core.dll + + + aspnet90.System.Data.Common + Resources\aspnet90\System.Data.Common.dll + + + aspnet90.System.Data.DataSetExtensions + Resources\aspnet90\System.Data.DataSetExtensions.dll + + + aspnet90.System.Data + Resources\aspnet90\System.Data.dll + + + aspnet90.System.Diagnostics.Contracts + Resources\aspnet90\System.Diagnostics.Contracts.dll + + + aspnet90.System.Diagnostics.Debug + Resources\aspnet90\System.Diagnostics.Debug.dll + + + aspnet90.System.Diagnostics.DiagnosticSource + Resources\aspnet90\System.Diagnostics.DiagnosticSource.dll + + + aspnet90.System.Diagnostics.FileVersionInfo + Resources\aspnet90\System.Diagnostics.FileVersionInfo.dll + + + aspnet90.System.Diagnostics.Process + Resources\aspnet90\System.Diagnostics.Process.dll + + + aspnet90.System.Diagnostics.StackTrace + Resources\aspnet90\System.Diagnostics.StackTrace.dll + + + aspnet90.System.Diagnostics.TextWriterTraceListener + Resources\aspnet90\System.Diagnostics.TextWriterTraceListener.dll + + + aspnet90.System.Diagnostics.Tools + Resources\aspnet90\System.Diagnostics.Tools.dll + + + aspnet90.System.Diagnostics.TraceSource + Resources\aspnet90\System.Diagnostics.TraceSource.dll + + + aspnet90.System.Diagnostics.Tracing + Resources\aspnet90\System.Diagnostics.Tracing.dll + + + aspnet90.System + Resources\aspnet90\System.dll + + + aspnet90.System.Drawing + Resources\aspnet90\System.Drawing.dll + + + aspnet90.System.Drawing.Primitives + Resources\aspnet90\System.Drawing.Primitives.dll + + + aspnet90.System.Dynamic.Runtime + Resources\aspnet90\System.Dynamic.Runtime.dll + + + aspnet90.System.Formats.Asn1 + Resources\aspnet90\System.Formats.Asn1.dll + + + aspnet90.System.Formats.Tar + Resources\aspnet90\System.Formats.Tar.dll + + + aspnet90.System.Globalization.Calendars + Resources\aspnet90\System.Globalization.Calendars.dll + + + aspnet90.System.Globalization + Resources\aspnet90\System.Globalization.dll + + + aspnet90.System.Globalization.Extensions + Resources\aspnet90\System.Globalization.Extensions.dll + + + aspnet90.System.IO.Compression.Brotli + Resources\aspnet90\System.IO.Compression.Brotli.dll + + + aspnet90.System.IO.Compression + Resources\aspnet90\System.IO.Compression.dll + + + aspnet90.System.IO.Compression.FileSystem + Resources\aspnet90\System.IO.Compression.FileSystem.dll + + + aspnet90.System.IO.Compression.ZipFile + Resources\aspnet90\System.IO.Compression.ZipFile.dll + + + aspnet90.System.IO + Resources\aspnet90\System.IO.dll + + + aspnet90.System.IO.FileSystem.AccessControl + Resources\aspnet90\System.IO.FileSystem.AccessControl.dll + + + aspnet90.System.IO.FileSystem + Resources\aspnet90\System.IO.FileSystem.dll + + + aspnet90.System.IO.FileSystem.DriveInfo + Resources\aspnet90\System.IO.FileSystem.DriveInfo.dll + + + aspnet90.System.IO.FileSystem.Primitives + Resources\aspnet90\System.IO.FileSystem.Primitives.dll + + + aspnet90.System.IO.FileSystem.Watcher + Resources\aspnet90\System.IO.FileSystem.Watcher.dll + + + aspnet90.System.IO.IsolatedStorage + Resources\aspnet90\System.IO.IsolatedStorage.dll + + + aspnet90.System.IO.MemoryMappedFiles + Resources\aspnet90\System.IO.MemoryMappedFiles.dll + + + aspnet90.System.IO.Pipelines + Resources\aspnet90\System.IO.Pipelines.dll + + + aspnet90.System.IO.Pipes.AccessControl + Resources\aspnet90\System.IO.Pipes.AccessControl.dll + + + aspnet90.System.IO.Pipes + Resources\aspnet90\System.IO.Pipes.dll + + + aspnet90.System.IO.UnmanagedMemoryStream + Resources\aspnet90\System.IO.UnmanagedMemoryStream.dll + + + aspnet90.System.Linq + Resources\aspnet90\System.Linq.dll + + + aspnet90.System.Linq.Expressions + Resources\aspnet90\System.Linq.Expressions.dll + + + aspnet90.System.Linq.Parallel + Resources\aspnet90\System.Linq.Parallel.dll + + + aspnet90.System.Linq.Queryable + Resources\aspnet90\System.Linq.Queryable.dll + + + aspnet90.System.Memory + Resources\aspnet90\System.Memory.dll + + + aspnet90.System.Net + Resources\aspnet90\System.Net.dll + + + aspnet90.System.Net.Http + Resources\aspnet90\System.Net.Http.dll + + + aspnet90.System.Net.Http.Json + Resources\aspnet90\System.Net.Http.Json.dll + + + aspnet90.System.Net.HttpListener + Resources\aspnet90\System.Net.HttpListener.dll + + + aspnet90.System.Net.Mail + Resources\aspnet90\System.Net.Mail.dll + + + aspnet90.System.Net.NameResolution + Resources\aspnet90\System.Net.NameResolution.dll + + + aspnet90.System.Net.NetworkInformation + Resources\aspnet90\System.Net.NetworkInformation.dll + + + aspnet90.System.Net.Ping + Resources\aspnet90\System.Net.Ping.dll + + + aspnet90.System.Net.Primitives + Resources\aspnet90\System.Net.Primitives.dll + + + aspnet90.System.Net.Quic + Resources\aspnet90\System.Net.Quic.dll + + + aspnet90.System.Net.Requests + Resources\aspnet90\System.Net.Requests.dll + + + aspnet90.System.Net.Security + Resources\aspnet90\System.Net.Security.dll + + + aspnet90.System.Net.ServicePoint + Resources\aspnet90\System.Net.ServicePoint.dll + + + aspnet90.System.Net.Sockets + Resources\aspnet90\System.Net.Sockets.dll + + + aspnet90.System.Net.WebClient + Resources\aspnet90\System.Net.WebClient.dll + + + aspnet90.System.Net.WebHeaderCollection + Resources\aspnet90\System.Net.WebHeaderCollection.dll + + + aspnet90.System.Net.WebProxy + Resources\aspnet90\System.Net.WebProxy.dll + + + aspnet90.System.Net.WebSockets.Client + Resources\aspnet90\System.Net.WebSockets.Client.dll + + + aspnet90.System.Net.WebSockets + Resources\aspnet90\System.Net.WebSockets.dll + + + aspnet90.System.Numerics + Resources\aspnet90\System.Numerics.dll + + + aspnet90.System.Numerics.Vectors + Resources\aspnet90\System.Numerics.Vectors.dll + + + aspnet90.System.ObjectModel + Resources\aspnet90\System.ObjectModel.dll + + + aspnet90.System.Reflection.DispatchProxy + Resources\aspnet90\System.Reflection.DispatchProxy.dll + + + aspnet90.System.Reflection + Resources\aspnet90\System.Reflection.dll + + + aspnet90.System.Reflection.Emit + Resources\aspnet90\System.Reflection.Emit.dll + + + aspnet90.System.Reflection.Emit.ILGeneration + Resources\aspnet90\System.Reflection.Emit.ILGeneration.dll + + + aspnet90.System.Reflection.Emit.Lightweight + Resources\aspnet90\System.Reflection.Emit.Lightweight.dll + + + aspnet90.System.Reflection.Extensions + Resources\aspnet90\System.Reflection.Extensions.dll + + + aspnet90.System.Reflection.Metadata + Resources\aspnet90\System.Reflection.Metadata.dll + + + aspnet90.System.Reflection.Primitives + Resources\aspnet90\System.Reflection.Primitives.dll + + + aspnet90.System.Reflection.TypeExtensions + Resources\aspnet90\System.Reflection.TypeExtensions.dll + + + aspnet90.System.Resources.Reader + Resources\aspnet90\System.Resources.Reader.dll + + + aspnet90.System.Resources.ResourceManager + Resources\aspnet90\System.Resources.ResourceManager.dll + + + aspnet90.System.Resources.Writer + Resources\aspnet90\System.Resources.Writer.dll + + + aspnet90.System.Runtime.CompilerServices.Unsafe + Resources\aspnet90\System.Runtime.CompilerServices.Unsafe.dll + + + aspnet90.System.Runtime.CompilerServices.VisualC + Resources\aspnet90\System.Runtime.CompilerServices.VisualC.dll + + + aspnet90.System.Runtime + Resources\aspnet90\System.Runtime.dll + + + aspnet90.System.Runtime.Extensions + Resources\aspnet90\System.Runtime.Extensions.dll + + + aspnet90.System.Runtime.Handles + Resources\aspnet90\System.Runtime.Handles.dll + + + aspnet90.System.Runtime.InteropServices + Resources\aspnet90\System.Runtime.InteropServices.dll + + + aspnet90.System.Runtime.InteropServices.JavaScript + Resources\aspnet90\System.Runtime.InteropServices.JavaScript.dll + + + aspnet90.System.Runtime.InteropServices.RuntimeInformation + Resources\aspnet90\System.Runtime.InteropServices.RuntimeInformation.dll + + + aspnet90.System.Runtime.Intrinsics + Resources\aspnet90\System.Runtime.Intrinsics.dll + + + aspnet90.System.Runtime.Loader + Resources\aspnet90\System.Runtime.Loader.dll + + + aspnet90.System.Runtime.Numerics + Resources\aspnet90\System.Runtime.Numerics.dll + + + aspnet90.System.Runtime.Serialization + Resources\aspnet90\System.Runtime.Serialization.dll + + + aspnet90.System.Runtime.Serialization.Formatters + Resources\aspnet90\System.Runtime.Serialization.Formatters.dll + + + aspnet90.System.Runtime.Serialization.Json + Resources\aspnet90\System.Runtime.Serialization.Json.dll + + + aspnet90.System.Runtime.Serialization.Primitives + Resources\aspnet90\System.Runtime.Serialization.Primitives.dll + + + aspnet90.System.Runtime.Serialization.Xml + Resources\aspnet90\System.Runtime.Serialization.Xml.dll + + + aspnet90.System.Security.AccessControl + Resources\aspnet90\System.Security.AccessControl.dll + + + aspnet90.System.Security.Claims + Resources\aspnet90\System.Security.Claims.dll + + + aspnet90.System.Security.Cryptography.Algorithms + Resources\aspnet90\System.Security.Cryptography.Algorithms.dll + + + aspnet90.System.Security.Cryptography.Cng + Resources\aspnet90\System.Security.Cryptography.Cng.dll + + + aspnet90.System.Security.Cryptography.Csp + Resources\aspnet90\System.Security.Cryptography.Csp.dll + + + aspnet90.System.Security.Cryptography + Resources\aspnet90\System.Security.Cryptography.dll + + + aspnet90.System.Security.Cryptography.Encoding + Resources\aspnet90\System.Security.Cryptography.Encoding.dll + + + aspnet90.System.Security.Cryptography.OpenSsl + Resources\aspnet90\System.Security.Cryptography.OpenSsl.dll + + + aspnet90.System.Security.Cryptography.Primitives + Resources\aspnet90\System.Security.Cryptography.Primitives.dll + + + aspnet90.System.Security.Cryptography.X509Certificates + Resources\aspnet90\System.Security.Cryptography.X509Certificates.dll + + + aspnet90.System.Security + Resources\aspnet90\System.Security.dll + + + aspnet90.System.Security.Principal + Resources\aspnet90\System.Security.Principal.dll + + + aspnet90.System.Security.Principal.Windows + Resources\aspnet90\System.Security.Principal.Windows.dll + + + aspnet90.System.Security.SecureString + Resources\aspnet90\System.Security.SecureString.dll + + + aspnet90.System.ServiceModel.Web + Resources\aspnet90\System.ServiceModel.Web.dll + + + aspnet90.System.ServiceProcess + Resources\aspnet90\System.ServiceProcess.dll + + + aspnet90.System.Text.Encoding.CodePages + Resources\aspnet90\System.Text.Encoding.CodePages.dll + + + aspnet90.System.Text.Encoding + Resources\aspnet90\System.Text.Encoding.dll + + + aspnet90.System.Text.Encoding.Extensions + Resources\aspnet90\System.Text.Encoding.Extensions.dll + + + aspnet90.System.Text.Encodings.Web + Resources\aspnet90\System.Text.Encodings.Web.dll + + + aspnet90.System.Text.Json + Resources\aspnet90\System.Text.Json.dll + + + aspnet90.System.Text.RegularExpressions + Resources\aspnet90\System.Text.RegularExpressions.dll + + + aspnet90.System.Threading.Channels + Resources\aspnet90\System.Threading.Channels.dll + + + aspnet90.System.Threading + Resources\aspnet90\System.Threading.dll + + + aspnet90.System.Threading.Overlapped + Resources\aspnet90\System.Threading.Overlapped.dll + + + aspnet90.System.Threading.Tasks.Dataflow + Resources\aspnet90\System.Threading.Tasks.Dataflow.dll + + + aspnet90.System.Threading.Tasks + Resources\aspnet90\System.Threading.Tasks.dll + + + aspnet90.System.Threading.Tasks.Extensions + Resources\aspnet90\System.Threading.Tasks.Extensions.dll + + + aspnet90.System.Threading.Tasks.Parallel + Resources\aspnet90\System.Threading.Tasks.Parallel.dll + + + aspnet90.System.Threading.Thread + Resources\aspnet90\System.Threading.Thread.dll + + + aspnet90.System.Threading.ThreadPool + Resources\aspnet90\System.Threading.ThreadPool.dll + + + aspnet90.System.Threading.Timer + Resources\aspnet90\System.Threading.Timer.dll + + + aspnet90.System.Transactions + Resources\aspnet90\System.Transactions.dll + + + aspnet90.System.Transactions.Local + Resources\aspnet90\System.Transactions.Local.dll + + + aspnet90.System.ValueTuple + Resources\aspnet90\System.ValueTuple.dll + + + aspnet90.System.Web + Resources\aspnet90\System.Web.dll + + + aspnet90.System.Web.HttpUtility + Resources\aspnet90\System.Web.HttpUtility.dll + + + aspnet90.System.Windows + Resources\aspnet90\System.Windows.dll + + + aspnet90.System.Xml + Resources\aspnet90\System.Xml.dll + + + aspnet90.System.Xml.Linq + Resources\aspnet90\System.Xml.Linq.dll + + + aspnet90.System.Xml.ReaderWriter + Resources\aspnet90\System.Xml.ReaderWriter.dll + + + aspnet90.System.Xml.Serialization + Resources\aspnet90\System.Xml.Serialization.dll + + + aspnet90.System.Xml.XDocument + Resources\aspnet90\System.Xml.XDocument.dll + + + aspnet90.System.Xml.XmlDocument + Resources\aspnet90\System.Xml.XmlDocument.dll + + + aspnet90.System.Xml.XmlSerializer + Resources\aspnet90\System.Xml.XmlSerializer.dll + + + aspnet90.System.Xml.XPath + Resources\aspnet90\System.Xml.XPath.dll + + + aspnet90.System.Xml.XPath.XDocument + Resources\aspnet90\System.Xml.XPath.XDocument.dll + + + aspnet90.WindowsBase + Resources\aspnet90\WindowsBase.dll + + + aspnet90.Microsoft.AspNetCore.Antiforgery + Resources\aspnet90\Microsoft.AspNetCore.Antiforgery.dll + + + aspnet90.Microsoft.AspNetCore.Authentication.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Authentication.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Authentication.BearerToken + Resources\aspnet90\Microsoft.AspNetCore.Authentication.BearerToken.dll + + + aspnet90.Microsoft.AspNetCore.Authentication.Cookies + Resources\aspnet90\Microsoft.AspNetCore.Authentication.Cookies.dll + + + aspnet90.Microsoft.AspNetCore.Authentication.Core + Resources\aspnet90\Microsoft.AspNetCore.Authentication.Core.dll + + + aspnet90.Microsoft.AspNetCore.Authentication + Resources\aspnet90\Microsoft.AspNetCore.Authentication.dll + + + aspnet90.Microsoft.AspNetCore.Authentication.OAuth + Resources\aspnet90\Microsoft.AspNetCore.Authentication.OAuth.dll + + + aspnet90.Microsoft.AspNetCore.Authorization + Resources\aspnet90\Microsoft.AspNetCore.Authorization.dll + + + aspnet90.Microsoft.AspNetCore.Authorization.Policy + Resources\aspnet90\Microsoft.AspNetCore.Authorization.Policy.dll + + + aspnet90.Microsoft.AspNetCore.Components.Authorization + Resources\aspnet90\Microsoft.AspNetCore.Components.Authorization.dll + + + aspnet90.Microsoft.AspNetCore.Components + Resources\aspnet90\Microsoft.AspNetCore.Components.dll + + + aspnet90.Microsoft.AspNetCore.Components.Endpoints + Resources\aspnet90\Microsoft.AspNetCore.Components.Endpoints.dll + + + aspnet90.Microsoft.AspNetCore.Components.Forms + Resources\aspnet90\Microsoft.AspNetCore.Components.Forms.dll + + + aspnet90.Microsoft.AspNetCore.Components.Server + Resources\aspnet90\Microsoft.AspNetCore.Components.Server.dll + + + aspnet90.Microsoft.AspNetCore.Components.Web + Resources\aspnet90\Microsoft.AspNetCore.Components.Web.dll + + + aspnet90.Microsoft.AspNetCore.Connections.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Connections.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.CookiePolicy + Resources\aspnet90\Microsoft.AspNetCore.CookiePolicy.dll + + + aspnet90.Microsoft.AspNetCore.Cors + Resources\aspnet90\Microsoft.AspNetCore.Cors.dll + + + aspnet90.Microsoft.AspNetCore.Cryptography.Internal + Resources\aspnet90\Microsoft.AspNetCore.Cryptography.Internal.dll + + + aspnet90.Microsoft.AspNetCore.Cryptography.KeyDerivation + Resources\aspnet90\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll + + + aspnet90.Microsoft.AspNetCore.DataProtection.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.DataProtection.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.DataProtection + Resources\aspnet90\Microsoft.AspNetCore.DataProtection.dll + + + aspnet90.Microsoft.AspNetCore.DataProtection.Extensions + Resources\aspnet90\Microsoft.AspNetCore.DataProtection.Extensions.dll + + + aspnet90.Microsoft.AspNetCore.Diagnostics.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Diagnostics.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Diagnostics + Resources\aspnet90\Microsoft.AspNetCore.Diagnostics.dll + + + aspnet90.Microsoft.AspNetCore.Diagnostics.HealthChecks + Resources\aspnet90\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll + + + aspnet90.Microsoft.AspNetCore + Resources\aspnet90\Microsoft.AspNetCore.dll + + + aspnet90.Microsoft.AspNetCore.HostFiltering + Resources\aspnet90\Microsoft.AspNetCore.HostFiltering.dll + + + aspnet90.Microsoft.AspNetCore.Hosting.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Hosting.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Hosting + Resources\aspnet90\Microsoft.AspNetCore.Hosting.dll + + + aspnet90.Microsoft.AspNetCore.Hosting.Server.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Html.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Html.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Http.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Http.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Http.Connections.Common + Resources\aspnet90\Microsoft.AspNetCore.Http.Connections.Common.dll + + + aspnet90.Microsoft.AspNetCore.Http.Connections + Resources\aspnet90\Microsoft.AspNetCore.Http.Connections.dll + + + aspnet90.Microsoft.AspNetCore.Http + Resources\aspnet90\Microsoft.AspNetCore.Http.dll + + + aspnet90.Microsoft.AspNetCore.Http.Extensions + Resources\aspnet90\Microsoft.AspNetCore.Http.Extensions.dll + + + aspnet90.Microsoft.AspNetCore.Http.Features + Resources\aspnet90\Microsoft.AspNetCore.Http.Features.dll + + + aspnet90.Microsoft.AspNetCore.Http.Results + Resources\aspnet90\Microsoft.AspNetCore.Http.Results.dll + + + aspnet90.Microsoft.AspNetCore.HttpLogging + Resources\aspnet90\Microsoft.AspNetCore.HttpLogging.dll + + + aspnet90.Microsoft.AspNetCore.HttpOverrides + Resources\aspnet90\Microsoft.AspNetCore.HttpOverrides.dll + + + aspnet90.Microsoft.AspNetCore.HttpsPolicy + Resources\aspnet90\Microsoft.AspNetCore.HttpsPolicy.dll + + + aspnet90.Microsoft.AspNetCore.Identity + Resources\aspnet90\Microsoft.AspNetCore.Identity.dll + + + aspnet90.Microsoft.AspNetCore.Localization + Resources\aspnet90\Microsoft.AspNetCore.Localization.dll + + + aspnet90.Microsoft.AspNetCore.Localization.Routing + Resources\aspnet90\Microsoft.AspNetCore.Localization.Routing.dll + + + aspnet90.Microsoft.AspNetCore.Metadata + Resources\aspnet90\Microsoft.AspNetCore.Metadata.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.ApiExplorer + Resources\aspnet90\Microsoft.AspNetCore.Mvc.ApiExplorer.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Core + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Core.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Cors + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Cors.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.DataAnnotations + Resources\aspnet90\Microsoft.AspNetCore.Mvc.DataAnnotations.dll + + + aspnet90.Microsoft.AspNetCore.Mvc + Resources\aspnet90\Microsoft.AspNetCore.Mvc.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Formatters.Json + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Formatters.Json.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Formatters.Xml + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Localization + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Localization.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.Razor + Resources\aspnet90\Microsoft.AspNetCore.Mvc.Razor.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.RazorPages + Resources\aspnet90\Microsoft.AspNetCore.Mvc.RazorPages.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.TagHelpers + Resources\aspnet90\Microsoft.AspNetCore.Mvc.TagHelpers.dll + + + aspnet90.Microsoft.AspNetCore.Mvc.ViewFeatures + Resources\aspnet90\Microsoft.AspNetCore.Mvc.ViewFeatures.dll + + + aspnet90.Microsoft.AspNetCore.OutputCaching + Resources\aspnet90\Microsoft.AspNetCore.OutputCaching.dll + + + aspnet90.Microsoft.AspNetCore.RateLimiting + Resources\aspnet90\Microsoft.AspNetCore.RateLimiting.dll + + + aspnet90.Microsoft.AspNetCore.Razor + Resources\aspnet90\Microsoft.AspNetCore.Razor.dll + + + aspnet90.Microsoft.AspNetCore.Razor.Runtime + Resources\aspnet90\Microsoft.AspNetCore.Razor.Runtime.dll + + + aspnet90.Microsoft.AspNetCore.RequestDecompression + Resources\aspnet90\Microsoft.AspNetCore.RequestDecompression.dll + + + aspnet90.Microsoft.AspNetCore.ResponseCaching.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.ResponseCaching + Resources\aspnet90\Microsoft.AspNetCore.ResponseCaching.dll + + + aspnet90.Microsoft.AspNetCore.ResponseCompression + Resources\aspnet90\Microsoft.AspNetCore.ResponseCompression.dll + + + aspnet90.Microsoft.AspNetCore.Rewrite + Resources\aspnet90\Microsoft.AspNetCore.Rewrite.dll + + + aspnet90.Microsoft.AspNetCore.Routing.Abstractions + Resources\aspnet90\Microsoft.AspNetCore.Routing.Abstractions.dll + + + aspnet90.Microsoft.AspNetCore.Routing + Resources\aspnet90\Microsoft.AspNetCore.Routing.dll + + + aspnet90.Microsoft.AspNetCore.Server.HttpSys + Resources\aspnet90\Microsoft.AspNetCore.Server.HttpSys.dll + + + aspnet90.Microsoft.AspNetCore.Server.IIS + Resources\aspnet90\Microsoft.AspNetCore.Server.IIS.dll + + + aspnet90.Microsoft.AspNetCore.Server.IISIntegration + Resources\aspnet90\Microsoft.AspNetCore.Server.IISIntegration.dll + + + aspnet90.Microsoft.AspNetCore.Server.Kestrel.Core + Resources\aspnet90\Microsoft.AspNetCore.Server.Kestrel.Core.dll + + + aspnet90.Microsoft.AspNetCore.Server.Kestrel + Resources\aspnet90\Microsoft.AspNetCore.Server.Kestrel.dll + + + aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes + Resources\aspnet90\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll + + + aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.Quic + Resources\aspnet90\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll + + + aspnet90.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets + Resources\aspnet90\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll + + + aspnet90.Microsoft.AspNetCore.Session + Resources\aspnet90\Microsoft.AspNetCore.Session.dll + + + aspnet90.Microsoft.AspNetCore.SignalR.Common + Resources\aspnet90\Microsoft.AspNetCore.SignalR.Common.dll + + + aspnet90.Microsoft.AspNetCore.SignalR.Core + Resources\aspnet90\Microsoft.AspNetCore.SignalR.Core.dll + + + aspnet90.Microsoft.AspNetCore.SignalR + Resources\aspnet90\Microsoft.AspNetCore.SignalR.dll + + + aspnet90.Microsoft.AspNetCore.SignalR.Protocols.Json + Resources\aspnet90\Microsoft.AspNetCore.SignalR.Protocols.Json.dll + + + aspnet90.Microsoft.AspNetCore.StaticAssets + Resources\aspnet90\Microsoft.AspNetCore.StaticAssets.dll + + + aspnet90.Microsoft.AspNetCore.StaticFiles + Resources\aspnet90\Microsoft.AspNetCore.StaticFiles.dll + + + aspnet90.Microsoft.AspNetCore.WebSockets + Resources\aspnet90\Microsoft.AspNetCore.WebSockets.dll + + + aspnet90.Microsoft.AspNetCore.WebUtilities + Resources\aspnet90\Microsoft.AspNetCore.WebUtilities.dll + + + aspnet90.Microsoft.Extensions.Caching.Abstractions + Resources\aspnet90\Microsoft.Extensions.Caching.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Caching.Memory + Resources\aspnet90\Microsoft.Extensions.Caching.Memory.dll + + + aspnet90.Microsoft.Extensions.Configuration.Abstractions + Resources\aspnet90\Microsoft.Extensions.Configuration.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Configuration.Binder + Resources\aspnet90\Microsoft.Extensions.Configuration.Binder.dll + + + aspnet90.Microsoft.Extensions.Configuration.CommandLine + Resources\aspnet90\Microsoft.Extensions.Configuration.CommandLine.dll + + + aspnet90.Microsoft.Extensions.Configuration + Resources\aspnet90\Microsoft.Extensions.Configuration.dll + + + aspnet90.Microsoft.Extensions.Configuration.EnvironmentVariables + Resources\aspnet90\Microsoft.Extensions.Configuration.EnvironmentVariables.dll + + + aspnet90.Microsoft.Extensions.Configuration.FileExtensions + Resources\aspnet90\Microsoft.Extensions.Configuration.FileExtensions.dll + + + aspnet90.Microsoft.Extensions.Configuration.Ini + Resources\aspnet90\Microsoft.Extensions.Configuration.Ini.dll + + + aspnet90.Microsoft.Extensions.Configuration.Json + Resources\aspnet90\Microsoft.Extensions.Configuration.Json.dll + + + aspnet90.Microsoft.Extensions.Configuration.KeyPerFile + Resources\aspnet90\Microsoft.Extensions.Configuration.KeyPerFile.dll + + + aspnet90.Microsoft.Extensions.Configuration.UserSecrets + Resources\aspnet90\Microsoft.Extensions.Configuration.UserSecrets.dll + + + aspnet90.Microsoft.Extensions.Configuration.Xml + Resources\aspnet90\Microsoft.Extensions.Configuration.Xml.dll + + + aspnet90.Microsoft.Extensions.DependencyInjection.Abstractions + Resources\aspnet90\Microsoft.Extensions.DependencyInjection.Abstractions.dll + + + aspnet90.Microsoft.Extensions.DependencyInjection + Resources\aspnet90\Microsoft.Extensions.DependencyInjection.dll + + + aspnet90.Microsoft.Extensions.Diagnostics.Abstractions + Resources\aspnet90\Microsoft.Extensions.Diagnostics.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Diagnostics + Resources\aspnet90\Microsoft.Extensions.Diagnostics.dll + + + aspnet90.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions + Resources\aspnet90\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Diagnostics.HealthChecks + Resources\aspnet90\Microsoft.Extensions.Diagnostics.HealthChecks.dll + + + aspnet90.Microsoft.Extensions.Features + Resources\aspnet90\Microsoft.Extensions.Features.dll + + + aspnet90.Microsoft.Extensions.FileProviders.Abstractions + Resources\aspnet90\Microsoft.Extensions.FileProviders.Abstractions.dll + + + aspnet90.Microsoft.Extensions.FileProviders.Composite + Resources\aspnet90\Microsoft.Extensions.FileProviders.Composite.dll + + + aspnet90.Microsoft.Extensions.FileProviders.Embedded + Resources\aspnet90\Microsoft.Extensions.FileProviders.Embedded.dll + + + aspnet90.Microsoft.Extensions.FileProviders.Physical + Resources\aspnet90\Microsoft.Extensions.FileProviders.Physical.dll + + + aspnet90.Microsoft.Extensions.FileSystemGlobbing + Resources\aspnet90\Microsoft.Extensions.FileSystemGlobbing.dll + + + aspnet90.Microsoft.Extensions.Hosting.Abstractions + Resources\aspnet90\Microsoft.Extensions.Hosting.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Hosting + Resources\aspnet90\Microsoft.Extensions.Hosting.dll + + + aspnet90.Microsoft.Extensions.Http + Resources\aspnet90\Microsoft.Extensions.Http.dll + + + aspnet90.Microsoft.Extensions.Identity.Core + Resources\aspnet90\Microsoft.Extensions.Identity.Core.dll + + + aspnet90.Microsoft.Extensions.Identity.Stores + Resources\aspnet90\Microsoft.Extensions.Identity.Stores.dll + + + aspnet90.Microsoft.Extensions.Localization.Abstractions + Resources\aspnet90\Microsoft.Extensions.Localization.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Localization + Resources\aspnet90\Microsoft.Extensions.Localization.dll + + + aspnet90.Microsoft.Extensions.Logging.Abstractions + Resources\aspnet90\Microsoft.Extensions.Logging.Abstractions.dll + + + aspnet90.Microsoft.Extensions.Logging.Configuration + Resources\aspnet90\Microsoft.Extensions.Logging.Configuration.dll + + + aspnet90.Microsoft.Extensions.Logging.Console + Resources\aspnet90\Microsoft.Extensions.Logging.Console.dll + + + aspnet90.Microsoft.Extensions.Logging.Debug + Resources\aspnet90\Microsoft.Extensions.Logging.Debug.dll + + + aspnet90.Microsoft.Extensions.Logging + Resources\aspnet90\Microsoft.Extensions.Logging.dll + + + aspnet90.Microsoft.Extensions.Logging.EventLog + Resources\aspnet90\Microsoft.Extensions.Logging.EventLog.dll + + + aspnet90.Microsoft.Extensions.Logging.EventSource + Resources\aspnet90\Microsoft.Extensions.Logging.EventSource.dll + + + aspnet90.Microsoft.Extensions.Logging.TraceSource + Resources\aspnet90\Microsoft.Extensions.Logging.TraceSource.dll + + + aspnet90.Microsoft.Extensions.ObjectPool + Resources\aspnet90\Microsoft.Extensions.ObjectPool.dll + + + aspnet90.Microsoft.Extensions.Options.ConfigurationExtensions + Resources\aspnet90\Microsoft.Extensions.Options.ConfigurationExtensions.dll + + + aspnet90.Microsoft.Extensions.Options.DataAnnotations + Resources\aspnet90\Microsoft.Extensions.Options.DataAnnotations.dll + + + aspnet90.Microsoft.Extensions.Options + Resources\aspnet90\Microsoft.Extensions.Options.dll + + + aspnet90.Microsoft.Extensions.Primitives + Resources\aspnet90\Microsoft.Extensions.Primitives.dll + + + aspnet90.Microsoft.Extensions.WebEncoders + Resources\aspnet90\Microsoft.Extensions.WebEncoders.dll + + + aspnet90.Microsoft.JSInterop + Resources\aspnet90\Microsoft.JSInterop.dll + + + aspnet90.Microsoft.Net.Http.Headers + Resources\aspnet90\Microsoft.Net.Http.Headers.dll + + + aspnet90.System.Diagnostics.EventLog + Resources\aspnet90\System.Diagnostics.EventLog.dll + + + aspnet90.System.Security.Cryptography.Xml + Resources\aspnet90\System.Security.Cryptography.Xml.dll + + + aspnet90.System.Threading.RateLimiting + Resources\aspnet90\System.Threading.RateLimiting.dll + + + diff --git a/Src/Basic.Reference.Assemblies.Net100/Basic.Reference.Assemblies.Net100.csproj b/Src/Basic.Reference.Assemblies.Net100/Basic.Reference.Assemblies.Net100.csproj new file mode 100644 index 0000000..52e8c68 --- /dev/null +++ b/Src/Basic.Reference.Assemblies.Net100/Basic.Reference.Assemblies.Net100.csproj @@ -0,0 +1,13 @@ + + + netstandard2.0 + true + + + + + + + + + diff --git a/Src/Basic.Reference.Assemblies.Net100/Generated.cs b/Src/Basic.Reference.Assemblies.Net100/Generated.cs new file mode 100644 index 0000000..c44ddd2 --- /dev/null +++ b/Src/Basic.Reference.Assemblies.Net100/Generated.cs @@ -0,0 +1,5031 @@ +// This is a generated file, please edit Src\Generate\Program.cs to change the contents + +using System; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Linq; +using Microsoft.CodeAnalysis; + +namespace Basic.Reference.Assemblies; +public static partial class Net90 +{ + public static class ReferenceInfos + { + + /// + /// The for Microsoft.CSharp.dll + /// + public static ReferenceInfo MicrosoftCSharp => new ReferenceInfo("Microsoft.CSharp.dll", Resources.MicrosoftCSharp, Net90.References.MicrosoftCSharp, global::System.Guid.Parse("59d5c5aa-21d8-4184-8801-e8fa4cae7ab6")); + + /// + /// The for Microsoft.VisualBasic.Core.dll + /// + public static ReferenceInfo MicrosoftVisualBasicCore => new ReferenceInfo("Microsoft.VisualBasic.Core.dll", Resources.MicrosoftVisualBasicCore, Net90.References.MicrosoftVisualBasicCore, global::System.Guid.Parse("7393c2b8-e20d-45c7-83a6-d506dadcfb58")); + + /// + /// The for Microsoft.VisualBasic.dll + /// + public static ReferenceInfo MicrosoftVisualBasic => new ReferenceInfo("Microsoft.VisualBasic.dll", Resources.MicrosoftVisualBasic, Net90.References.MicrosoftVisualBasic, global::System.Guid.Parse("5fdf4026-bcd3-4d35-94fc-6a8a744d52d0")); + + /// + /// The for Microsoft.Win32.Primitives.dll + /// + public static ReferenceInfo MicrosoftWin32Primitives => new ReferenceInfo("Microsoft.Win32.Primitives.dll", Resources.MicrosoftWin32Primitives, Net90.References.MicrosoftWin32Primitives, global::System.Guid.Parse("c151fd1b-2b75-46d1-9a2e-697286d900dc")); + + /// + /// The for Microsoft.Win32.Registry.dll + /// + public static ReferenceInfo MicrosoftWin32Registry => new ReferenceInfo("Microsoft.Win32.Registry.dll", Resources.MicrosoftWin32Registry, Net90.References.MicrosoftWin32Registry, global::System.Guid.Parse("f43e7da3-213c-4bed-98b4-21f899f1a41d")); + + /// + /// The for mscorlib.dll + /// + public static ReferenceInfo mscorlib => new ReferenceInfo("mscorlib.dll", Resources.mscorlib, Net90.References.mscorlib, global::System.Guid.Parse("1c6b895a-648a-4a9d-8e87-bcd9cf4018c1")); + + /// + /// The for netstandard.dll + /// + public static ReferenceInfo netstandard => new ReferenceInfo("netstandard.dll", Resources.netstandard, Net90.References.netstandard, global::System.Guid.Parse("6291998e-e3f6-4164-8774-d0434deceb2d")); + + /// + /// The for System.AppContext.dll + /// + public static ReferenceInfo SystemAppContext => new ReferenceInfo("System.AppContext.dll", Resources.SystemAppContext, Net90.References.SystemAppContext, global::System.Guid.Parse("d8212879-580f-43b3-8d74-d9dc3a2b4f1b")); + + /// + /// The for System.Buffers.dll + /// + public static ReferenceInfo SystemBuffers => new ReferenceInfo("System.Buffers.dll", Resources.SystemBuffers, Net90.References.SystemBuffers, global::System.Guid.Parse("52255cf9-e0fd-40e0-ab52-10a336b8251c")); + + /// + /// The for System.Collections.Concurrent.dll + /// + public static ReferenceInfo SystemCollectionsConcurrent => new ReferenceInfo("System.Collections.Concurrent.dll", Resources.SystemCollectionsConcurrent, Net90.References.SystemCollectionsConcurrent, global::System.Guid.Parse("7e5e080f-b6ee-4d7c-8be9-15b1efa45205")); + + /// + /// The for System.Collections.dll + /// + public static ReferenceInfo SystemCollections => new ReferenceInfo("System.Collections.dll", Resources.SystemCollections, Net90.References.SystemCollections, global::System.Guid.Parse("0e9f52f8-d78c-4d16-a0c8-acc4bea76e8a")); + + /// + /// The for System.Collections.Immutable.dll + /// + public static ReferenceInfo SystemCollectionsImmutable => new ReferenceInfo("System.Collections.Immutable.dll", Resources.SystemCollectionsImmutable, Net90.References.SystemCollectionsImmutable, global::System.Guid.Parse("203c4fca-5aa4-4c78-9a81-002bd1f48fe7")); + + /// + /// The for System.Collections.NonGeneric.dll + /// + public static ReferenceInfo SystemCollectionsNonGeneric => new ReferenceInfo("System.Collections.NonGeneric.dll", Resources.SystemCollectionsNonGeneric, Net90.References.SystemCollectionsNonGeneric, global::System.Guid.Parse("a00181a4-efac-4423-b248-4070baa81dcb")); + + /// + /// The for System.Collections.Specialized.dll + /// + public static ReferenceInfo SystemCollectionsSpecialized => new ReferenceInfo("System.Collections.Specialized.dll", Resources.SystemCollectionsSpecialized, Net90.References.SystemCollectionsSpecialized, global::System.Guid.Parse("9cdc72cc-fe2e-4130-b79f-9ef03bf980e6")); + + /// + /// The for System.ComponentModel.Annotations.dll + /// + public static ReferenceInfo SystemComponentModelAnnotations => new ReferenceInfo("System.ComponentModel.Annotations.dll", Resources.SystemComponentModelAnnotations, Net90.References.SystemComponentModelAnnotations, global::System.Guid.Parse("97ae1cbb-22dd-4a0d-b14b-8f6e04d819c5")); + + /// + /// The for System.ComponentModel.DataAnnotations.dll + /// + public static ReferenceInfo SystemComponentModelDataAnnotations => new ReferenceInfo("System.ComponentModel.DataAnnotations.dll", Resources.SystemComponentModelDataAnnotations, Net90.References.SystemComponentModelDataAnnotations, global::System.Guid.Parse("03695ca4-604d-423e-ab1a-2c01f6344463")); + + /// + /// The for System.ComponentModel.dll + /// + public static ReferenceInfo SystemComponentModel => new ReferenceInfo("System.ComponentModel.dll", Resources.SystemComponentModel, Net90.References.SystemComponentModel, global::System.Guid.Parse("cabfb8bc-1a4e-4c15-8077-6d0d00defc36")); + + /// + /// The for System.ComponentModel.EventBasedAsync.dll + /// + public static ReferenceInfo SystemComponentModelEventBasedAsync => new ReferenceInfo("System.ComponentModel.EventBasedAsync.dll", Resources.SystemComponentModelEventBasedAsync, Net90.References.SystemComponentModelEventBasedAsync, global::System.Guid.Parse("93039088-1402-47e9-88ff-0d548a0c1df9")); + + /// + /// The for System.ComponentModel.Primitives.dll + /// + public static ReferenceInfo SystemComponentModelPrimitives => new ReferenceInfo("System.ComponentModel.Primitives.dll", Resources.SystemComponentModelPrimitives, Net90.References.SystemComponentModelPrimitives, global::System.Guid.Parse("6cd52a08-3bc8-4ce6-87a8-14d760ceea88")); + + /// + /// The for System.ComponentModel.TypeConverter.dll + /// + public static ReferenceInfo SystemComponentModelTypeConverter => new ReferenceInfo("System.ComponentModel.TypeConverter.dll", Resources.SystemComponentModelTypeConverter, Net90.References.SystemComponentModelTypeConverter, global::System.Guid.Parse("c06e9220-9d99-4c97-856e-40f79cb079d1")); + + /// + /// The for System.Configuration.dll + /// + public static ReferenceInfo SystemConfiguration => new ReferenceInfo("System.Configuration.dll", Resources.SystemConfiguration, Net90.References.SystemConfiguration, global::System.Guid.Parse("31368206-c4c9-4cce-a062-33e74d15a63a")); + + /// + /// The for System.Console.dll + /// + public static ReferenceInfo SystemConsole => new ReferenceInfo("System.Console.dll", Resources.SystemConsole, Net90.References.SystemConsole, global::System.Guid.Parse("786956ec-934b-4be2-9db8-09750edc9dec")); + + /// + /// The for System.Core.dll + /// + public static ReferenceInfo SystemCore => new ReferenceInfo("System.Core.dll", Resources.SystemCore, Net90.References.SystemCore, global::System.Guid.Parse("4eb2efd0-d2a5-4349-aacf-fec45bdb9899")); + + /// + /// The for System.Data.Common.dll + /// + public static ReferenceInfo SystemDataCommon => new ReferenceInfo("System.Data.Common.dll", Resources.SystemDataCommon, Net90.References.SystemDataCommon, global::System.Guid.Parse("e2406361-c242-4337-9f5b-4210fff957fe")); + + /// + /// The for System.Data.DataSetExtensions.dll + /// + public static ReferenceInfo SystemDataDataSetExtensions => new ReferenceInfo("System.Data.DataSetExtensions.dll", Resources.SystemDataDataSetExtensions, Net90.References.SystemDataDataSetExtensions, global::System.Guid.Parse("c139b6b3-e5ca-4249-97ce-c5b4f42acd08")); + + /// + /// The for System.Data.dll + /// + public static ReferenceInfo SystemData => new ReferenceInfo("System.Data.dll", Resources.SystemData, Net90.References.SystemData, global::System.Guid.Parse("7d483f5f-802e-428d-9993-e6d9cbde07d4")); + + /// + /// The for System.Diagnostics.Contracts.dll + /// + public static ReferenceInfo SystemDiagnosticsContracts => new ReferenceInfo("System.Diagnostics.Contracts.dll", Resources.SystemDiagnosticsContracts, Net90.References.SystemDiagnosticsContracts, global::System.Guid.Parse("498e7bf9-12fe-4071-b177-7812f6c28895")); + + /// + /// The for System.Diagnostics.Debug.dll + /// + public static ReferenceInfo SystemDiagnosticsDebug => new ReferenceInfo("System.Diagnostics.Debug.dll", Resources.SystemDiagnosticsDebug, Net90.References.SystemDiagnosticsDebug, global::System.Guid.Parse("6d45d01a-8ea4-4281-a3e8-e008091569d9")); + + /// + /// The for System.Diagnostics.DiagnosticSource.dll + /// + public static ReferenceInfo SystemDiagnosticsDiagnosticSource => new ReferenceInfo("System.Diagnostics.DiagnosticSource.dll", Resources.SystemDiagnosticsDiagnosticSource, Net90.References.SystemDiagnosticsDiagnosticSource, global::System.Guid.Parse("91a92ebb-62e2-4d1a-9ae1-6c65c447907c")); + + /// + /// The for System.Diagnostics.FileVersionInfo.dll + /// + public static ReferenceInfo SystemDiagnosticsFileVersionInfo => new ReferenceInfo("System.Diagnostics.FileVersionInfo.dll", Resources.SystemDiagnosticsFileVersionInfo, Net90.References.SystemDiagnosticsFileVersionInfo, global::System.Guid.Parse("1f42025c-ac76-4e36-b742-2e3fad73ab5c")); + + /// + /// The for System.Diagnostics.Process.dll + /// + public static ReferenceInfo SystemDiagnosticsProcess => new ReferenceInfo("System.Diagnostics.Process.dll", Resources.SystemDiagnosticsProcess, Net90.References.SystemDiagnosticsProcess, global::System.Guid.Parse("3cbf9e0d-61dd-486e-9740-0a5a563cd021")); + + /// + /// The for System.Diagnostics.StackTrace.dll + /// + public static ReferenceInfo SystemDiagnosticsStackTrace => new ReferenceInfo("System.Diagnostics.StackTrace.dll", Resources.SystemDiagnosticsStackTrace, Net90.References.SystemDiagnosticsStackTrace, global::System.Guid.Parse("2a7357d4-2dd8-49c4-b314-6714102436ea")); + + /// + /// The for System.Diagnostics.TextWriterTraceListener.dll + /// + public static ReferenceInfo SystemDiagnosticsTextWriterTraceListener => new ReferenceInfo("System.Diagnostics.TextWriterTraceListener.dll", Resources.SystemDiagnosticsTextWriterTraceListener, Net90.References.SystemDiagnosticsTextWriterTraceListener, global::System.Guid.Parse("0f07d796-3c89-45e4-afd6-d06bd478ddaf")); + + /// + /// The for System.Diagnostics.Tools.dll + /// + public static ReferenceInfo SystemDiagnosticsTools => new ReferenceInfo("System.Diagnostics.Tools.dll", Resources.SystemDiagnosticsTools, Net90.References.SystemDiagnosticsTools, global::System.Guid.Parse("5ded8562-b6da-4130-a107-da06ca1f6ffc")); + + /// + /// The for System.Diagnostics.TraceSource.dll + /// + public static ReferenceInfo SystemDiagnosticsTraceSource => new ReferenceInfo("System.Diagnostics.TraceSource.dll", Resources.SystemDiagnosticsTraceSource, Net90.References.SystemDiagnosticsTraceSource, global::System.Guid.Parse("49062f49-0b32-45aa-bb83-e1b7e46bd8fe")); + + /// + /// The for System.Diagnostics.Tracing.dll + /// + public static ReferenceInfo SystemDiagnosticsTracing => new ReferenceInfo("System.Diagnostics.Tracing.dll", Resources.SystemDiagnosticsTracing, Net90.References.SystemDiagnosticsTracing, global::System.Guid.Parse("9d1cbe75-460a-46a1-b836-f821b402f87f")); + + /// + /// The for System.dll + /// + public static ReferenceInfo System => new ReferenceInfo("System.dll", Resources.System, Net90.References.System, global::System.Guid.Parse("3977a5f9-ed9c-4aed-8a90-d530f219feda")); + + /// + /// The for System.Drawing.dll + /// + public static ReferenceInfo SystemDrawing => new ReferenceInfo("System.Drawing.dll", Resources.SystemDrawing, Net90.References.SystemDrawing, global::System.Guid.Parse("5f099ffa-a6a1-457c-b47f-6360f6a5fb45")); + + /// + /// The for System.Drawing.Primitives.dll + /// + public static ReferenceInfo SystemDrawingPrimitives => new ReferenceInfo("System.Drawing.Primitives.dll", Resources.SystemDrawingPrimitives, Net90.References.SystemDrawingPrimitives, global::System.Guid.Parse("facdd775-21e8-4b1c-9ff5-0053fe1497e2")); + + /// + /// The for System.Dynamic.Runtime.dll + /// + public static ReferenceInfo SystemDynamicRuntime => new ReferenceInfo("System.Dynamic.Runtime.dll", Resources.SystemDynamicRuntime, Net90.References.SystemDynamicRuntime, global::System.Guid.Parse("668095b2-cc9d-4b84-b1ea-6a3e0964e0a7")); + + /// + /// The for System.Formats.Asn1.dll + /// + public static ReferenceInfo SystemFormatsAsn1 => new ReferenceInfo("System.Formats.Asn1.dll", Resources.SystemFormatsAsn1, Net90.References.SystemFormatsAsn1, global::System.Guid.Parse("27dffe6e-8441-41e3-8dcc-f2671fefcd97")); + + /// + /// The for System.Formats.Tar.dll + /// + public static ReferenceInfo SystemFormatsTar => new ReferenceInfo("System.Formats.Tar.dll", Resources.SystemFormatsTar, Net90.References.SystemFormatsTar, global::System.Guid.Parse("4cec1306-9c3c-491c-91f3-9ebb4b7f83cc")); + + /// + /// The for System.Globalization.Calendars.dll + /// + public static ReferenceInfo SystemGlobalizationCalendars => new ReferenceInfo("System.Globalization.Calendars.dll", Resources.SystemGlobalizationCalendars, Net90.References.SystemGlobalizationCalendars, global::System.Guid.Parse("a0c4a9e0-b729-469c-95ad-49518e3a67a3")); + + /// + /// The for System.Globalization.dll + /// + public static ReferenceInfo SystemGlobalization => new ReferenceInfo("System.Globalization.dll", Resources.SystemGlobalization, Net90.References.SystemGlobalization, global::System.Guid.Parse("93ef8b7a-c542-458e-b90c-fe82f4d0826f")); + + /// + /// The for System.Globalization.Extensions.dll + /// + public static ReferenceInfo SystemGlobalizationExtensions => new ReferenceInfo("System.Globalization.Extensions.dll", Resources.SystemGlobalizationExtensions, Net90.References.SystemGlobalizationExtensions, global::System.Guid.Parse("f863aca8-e884-449e-8d0d-9a06cbe44430")); + + /// + /// The for System.IO.Compression.Brotli.dll + /// + public static ReferenceInfo SystemIOCompressionBrotli => new ReferenceInfo("System.IO.Compression.Brotli.dll", Resources.SystemIOCompressionBrotli, Net90.References.SystemIOCompressionBrotli, global::System.Guid.Parse("769e46ac-202e-4eb7-895e-b0d5f794fee0")); + + /// + /// The for System.IO.Compression.dll + /// + public static ReferenceInfo SystemIOCompression => new ReferenceInfo("System.IO.Compression.dll", Resources.SystemIOCompression, Net90.References.SystemIOCompression, global::System.Guid.Parse("7f553084-7f73-4884-8de0-ad969b5a6d80")); + + /// + /// The for System.IO.Compression.FileSystem.dll + /// + public static ReferenceInfo SystemIOCompressionFileSystem => new ReferenceInfo("System.IO.Compression.FileSystem.dll", Resources.SystemIOCompressionFileSystem, Net90.References.SystemIOCompressionFileSystem, global::System.Guid.Parse("90530c5a-a105-4184-983e-19434fe77fcd")); + + /// + /// The for System.IO.Compression.ZipFile.dll + /// + public static ReferenceInfo SystemIOCompressionZipFile => new ReferenceInfo("System.IO.Compression.ZipFile.dll", Resources.SystemIOCompressionZipFile, Net90.References.SystemIOCompressionZipFile, global::System.Guid.Parse("4635f59a-5305-4d23-a171-b53f3ef61a0d")); + + /// + /// The for System.IO.dll + /// + public static ReferenceInfo SystemIO => new ReferenceInfo("System.IO.dll", Resources.SystemIO, Net90.References.SystemIO, global::System.Guid.Parse("80e2d764-8a6b-4635-80b6-3d4f3587e2d5")); + + /// + /// The for System.IO.FileSystem.AccessControl.dll + /// + public static ReferenceInfo SystemIOFileSystemAccessControl => new ReferenceInfo("System.IO.FileSystem.AccessControl.dll", Resources.SystemIOFileSystemAccessControl, Net90.References.SystemIOFileSystemAccessControl, global::System.Guid.Parse("adc12694-1436-4aff-a5d7-a416a5464ba6")); + + /// + /// The for System.IO.FileSystem.dll + /// + public static ReferenceInfo SystemIOFileSystem => new ReferenceInfo("System.IO.FileSystem.dll", Resources.SystemIOFileSystem, Net90.References.SystemIOFileSystem, global::System.Guid.Parse("36da671e-cb5e-450b-81ed-adcbfe4652ca")); + + /// + /// The for System.IO.FileSystem.DriveInfo.dll + /// + public static ReferenceInfo SystemIOFileSystemDriveInfo => new ReferenceInfo("System.IO.FileSystem.DriveInfo.dll", Resources.SystemIOFileSystemDriveInfo, Net90.References.SystemIOFileSystemDriveInfo, global::System.Guid.Parse("9d8d4efd-240a-4f24-8200-6d252290c0e8")); + + /// + /// The for System.IO.FileSystem.Primitives.dll + /// + public static ReferenceInfo SystemIOFileSystemPrimitives => new ReferenceInfo("System.IO.FileSystem.Primitives.dll", Resources.SystemIOFileSystemPrimitives, Net90.References.SystemIOFileSystemPrimitives, global::System.Guid.Parse("2eee6734-d7c9-4d3c-9b57-14d9e063dd88")); + + /// + /// The for System.IO.FileSystem.Watcher.dll + /// + public static ReferenceInfo SystemIOFileSystemWatcher => new ReferenceInfo("System.IO.FileSystem.Watcher.dll", Resources.SystemIOFileSystemWatcher, Net90.References.SystemIOFileSystemWatcher, global::System.Guid.Parse("38ed706f-6905-4b52-aed5-8824044dbbba")); + + /// + /// The for System.IO.IsolatedStorage.dll + /// + public static ReferenceInfo SystemIOIsolatedStorage => new ReferenceInfo("System.IO.IsolatedStorage.dll", Resources.SystemIOIsolatedStorage, Net90.References.SystemIOIsolatedStorage, global::System.Guid.Parse("50338776-8d80-410c-84d9-752c85ccf333")); + + /// + /// The for System.IO.MemoryMappedFiles.dll + /// + public static ReferenceInfo SystemIOMemoryMappedFiles => new ReferenceInfo("System.IO.MemoryMappedFiles.dll", Resources.SystemIOMemoryMappedFiles, Net90.References.SystemIOMemoryMappedFiles, global::System.Guid.Parse("99339aab-36dc-4f82-8d3e-22bc78383019")); + + /// + /// The for System.IO.Pipelines.dll + /// + public static ReferenceInfo SystemIOPipelines => new ReferenceInfo("System.IO.Pipelines.dll", Resources.SystemIOPipelines, Net90.References.SystemIOPipelines, global::System.Guid.Parse("634721a4-f3f9-4113-8a36-fc22e61b997c")); + + /// + /// The for System.IO.Pipes.AccessControl.dll + /// + public static ReferenceInfo SystemIOPipesAccessControl => new ReferenceInfo("System.IO.Pipes.AccessControl.dll", Resources.SystemIOPipesAccessControl, Net90.References.SystemIOPipesAccessControl, global::System.Guid.Parse("b94bd792-5007-4e48-8bce-c8123b19d2d9")); + + /// + /// The for System.IO.Pipes.dll + /// + public static ReferenceInfo SystemIOPipes => new ReferenceInfo("System.IO.Pipes.dll", Resources.SystemIOPipes, Net90.References.SystemIOPipes, global::System.Guid.Parse("23133763-f3a7-4217-a84d-da13f6f425ff")); + + /// + /// The for System.IO.UnmanagedMemoryStream.dll + /// + public static ReferenceInfo SystemIOUnmanagedMemoryStream => new ReferenceInfo("System.IO.UnmanagedMemoryStream.dll", Resources.SystemIOUnmanagedMemoryStream, Net90.References.SystemIOUnmanagedMemoryStream, global::System.Guid.Parse("02a1e350-ef4a-47a3-99cb-a4b31774c9b9")); + + /// + /// The for System.Linq.dll + /// + public static ReferenceInfo SystemLinq => new ReferenceInfo("System.Linq.dll", Resources.SystemLinq, Net90.References.SystemLinq, global::System.Guid.Parse("4401b83f-2853-4be6-b660-f8077bb60959")); + + /// + /// The for System.Linq.Expressions.dll + /// + public static ReferenceInfo SystemLinqExpressions => new ReferenceInfo("System.Linq.Expressions.dll", Resources.SystemLinqExpressions, Net90.References.SystemLinqExpressions, global::System.Guid.Parse("473dfd44-4094-4955-a7a6-33aa53dc51d4")); + + /// + /// The for System.Linq.Parallel.dll + /// + public static ReferenceInfo SystemLinqParallel => new ReferenceInfo("System.Linq.Parallel.dll", Resources.SystemLinqParallel, Net90.References.SystemLinqParallel, global::System.Guid.Parse("9520692e-eadb-41c4-9439-b66402ae669b")); + + /// + /// The for System.Linq.Queryable.dll + /// + public static ReferenceInfo SystemLinqQueryable => new ReferenceInfo("System.Linq.Queryable.dll", Resources.SystemLinqQueryable, Net90.References.SystemLinqQueryable, global::System.Guid.Parse("5e7d7575-8fc0-4e47-ac1e-685a86647331")); + + /// + /// The for System.Memory.dll + /// + public static ReferenceInfo SystemMemory => new ReferenceInfo("System.Memory.dll", Resources.SystemMemory, Net90.References.SystemMemory, global::System.Guid.Parse("9c78d05c-9a3d-406f-890d-440edf63bc25")); + + /// + /// The for System.Net.dll + /// + public static ReferenceInfo SystemNet => new ReferenceInfo("System.Net.dll", Resources.SystemNet, Net90.References.SystemNet, global::System.Guid.Parse("cdf9146d-1b30-469b-a5af-07b555b2b4f1")); + + /// + /// The for System.Net.Http.dll + /// + public static ReferenceInfo SystemNetHttp => new ReferenceInfo("System.Net.Http.dll", Resources.SystemNetHttp, Net90.References.SystemNetHttp, global::System.Guid.Parse("8ed2c701-3009-4e15-8887-ccf482a6fc26")); + + /// + /// The for System.Net.Http.Json.dll + /// + public static ReferenceInfo SystemNetHttpJson => new ReferenceInfo("System.Net.Http.Json.dll", Resources.SystemNetHttpJson, Net90.References.SystemNetHttpJson, global::System.Guid.Parse("0dabc388-2181-4174-ad26-bcf28ee96b47")); + + /// + /// The for System.Net.HttpListener.dll + /// + public static ReferenceInfo SystemNetHttpListener => new ReferenceInfo("System.Net.HttpListener.dll", Resources.SystemNetHttpListener, Net90.References.SystemNetHttpListener, global::System.Guid.Parse("22741ca4-593d-4e14-9af5-e4b540cb98c2")); + + /// + /// The for System.Net.Mail.dll + /// + public static ReferenceInfo SystemNetMail => new ReferenceInfo("System.Net.Mail.dll", Resources.SystemNetMail, Net90.References.SystemNetMail, global::System.Guid.Parse("948204a2-c86d-4761-95dc-d0ab9506f02d")); + + /// + /// The for System.Net.NameResolution.dll + /// + public static ReferenceInfo SystemNetNameResolution => new ReferenceInfo("System.Net.NameResolution.dll", Resources.SystemNetNameResolution, Net90.References.SystemNetNameResolution, global::System.Guid.Parse("587180a2-4493-4d42-a0c8-94183464ff40")); + + /// + /// The for System.Net.NetworkInformation.dll + /// + public static ReferenceInfo SystemNetNetworkInformation => new ReferenceInfo("System.Net.NetworkInformation.dll", Resources.SystemNetNetworkInformation, Net90.References.SystemNetNetworkInformation, global::System.Guid.Parse("5c8c481f-31ca-42ee-a197-ea5d11c413e2")); + + /// + /// The for System.Net.Ping.dll + /// + public static ReferenceInfo SystemNetPing => new ReferenceInfo("System.Net.Ping.dll", Resources.SystemNetPing, Net90.References.SystemNetPing, global::System.Guid.Parse("f8feec40-be64-4bb5-bf50-47cd54c75d68")); + + /// + /// The for System.Net.Primitives.dll + /// + public static ReferenceInfo SystemNetPrimitives => new ReferenceInfo("System.Net.Primitives.dll", Resources.SystemNetPrimitives, Net90.References.SystemNetPrimitives, global::System.Guid.Parse("39bb0e70-4422-4978-a9e6-fcc29a2356ff")); + + /// + /// The for System.Net.Quic.dll + /// + public static ReferenceInfo SystemNetQuic => new ReferenceInfo("System.Net.Quic.dll", Resources.SystemNetQuic, Net90.References.SystemNetQuic, global::System.Guid.Parse("a5da9e4e-cef1-430c-ac34-f3a1f1618aa7")); + + /// + /// The for System.Net.Requests.dll + /// + public static ReferenceInfo SystemNetRequests => new ReferenceInfo("System.Net.Requests.dll", Resources.SystemNetRequests, Net90.References.SystemNetRequests, global::System.Guid.Parse("a5674b6f-a6e2-4cfd-a793-bba201cfdc89")); + + /// + /// The for System.Net.Security.dll + /// + public static ReferenceInfo SystemNetSecurity => new ReferenceInfo("System.Net.Security.dll", Resources.SystemNetSecurity, Net90.References.SystemNetSecurity, global::System.Guid.Parse("7da0e715-58a9-438f-9430-938cb3a3a80f")); + + /// + /// The for System.Net.ServicePoint.dll + /// + public static ReferenceInfo SystemNetServicePoint => new ReferenceInfo("System.Net.ServicePoint.dll", Resources.SystemNetServicePoint, Net90.References.SystemNetServicePoint, global::System.Guid.Parse("942d682b-add6-4d37-8ea3-021619317daf")); + + /// + /// The for System.Net.Sockets.dll + /// + public static ReferenceInfo SystemNetSockets => new ReferenceInfo("System.Net.Sockets.dll", Resources.SystemNetSockets, Net90.References.SystemNetSockets, global::System.Guid.Parse("94cb87f3-2c31-452b-b0c5-1eae356ec6ef")); + + /// + /// The for System.Net.WebClient.dll + /// + public static ReferenceInfo SystemNetWebClient => new ReferenceInfo("System.Net.WebClient.dll", Resources.SystemNetWebClient, Net90.References.SystemNetWebClient, global::System.Guid.Parse("d43ed906-e6be-4d31-ad8b-c3f9979415f7")); + + /// + /// The for System.Net.WebHeaderCollection.dll + /// + public static ReferenceInfo SystemNetWebHeaderCollection => new ReferenceInfo("System.Net.WebHeaderCollection.dll", Resources.SystemNetWebHeaderCollection, Net90.References.SystemNetWebHeaderCollection, global::System.Guid.Parse("a5627a13-b062-48c8-879e-2394c8698767")); + + /// + /// The for System.Net.WebProxy.dll + /// + public static ReferenceInfo SystemNetWebProxy => new ReferenceInfo("System.Net.WebProxy.dll", Resources.SystemNetWebProxy, Net90.References.SystemNetWebProxy, global::System.Guid.Parse("580233b2-9269-45ed-942a-3e621d65b3ae")); + + /// + /// The for System.Net.WebSockets.Client.dll + /// + public static ReferenceInfo SystemNetWebSocketsClient => new ReferenceInfo("System.Net.WebSockets.Client.dll", Resources.SystemNetWebSocketsClient, Net90.References.SystemNetWebSocketsClient, global::System.Guid.Parse("9a94739b-bd14-4c80-98ac-6d6c9f7ec0aa")); + + /// + /// The for System.Net.WebSockets.dll + /// + public static ReferenceInfo SystemNetWebSockets => new ReferenceInfo("System.Net.WebSockets.dll", Resources.SystemNetWebSockets, Net90.References.SystemNetWebSockets, global::System.Guid.Parse("834a027e-6fe6-46a1-9193-5c1af4636883")); + + /// + /// The for System.Numerics.dll + /// + public static ReferenceInfo SystemNumerics => new ReferenceInfo("System.Numerics.dll", Resources.SystemNumerics, Net90.References.SystemNumerics, global::System.Guid.Parse("8109db46-ad59-4703-b5eb-ac53027d67d9")); + + /// + /// The for System.Numerics.Vectors.dll + /// + public static ReferenceInfo SystemNumericsVectors => new ReferenceInfo("System.Numerics.Vectors.dll", Resources.SystemNumericsVectors, Net90.References.SystemNumericsVectors, global::System.Guid.Parse("827adbc4-7177-4c64-a6a9-3658a5d3010e")); + + /// + /// The for System.ObjectModel.dll + /// + public static ReferenceInfo SystemObjectModel => new ReferenceInfo("System.ObjectModel.dll", Resources.SystemObjectModel, Net90.References.SystemObjectModel, global::System.Guid.Parse("b6bc8651-5ef0-409f-83b4-7d7c1bb27eec")); + + /// + /// The for System.Reflection.DispatchProxy.dll + /// + public static ReferenceInfo SystemReflectionDispatchProxy => new ReferenceInfo("System.Reflection.DispatchProxy.dll", Resources.SystemReflectionDispatchProxy, Net90.References.SystemReflectionDispatchProxy, global::System.Guid.Parse("c861d503-03de-45ce-89d4-46b5f8731bfc")); + + /// + /// The for System.Reflection.dll + /// + public static ReferenceInfo SystemReflection => new ReferenceInfo("System.Reflection.dll", Resources.SystemReflection, Net90.References.SystemReflection, global::System.Guid.Parse("d78d016a-2d2f-450f-a780-af0126583899")); + + /// + /// The for System.Reflection.Emit.dll + /// + public static ReferenceInfo SystemReflectionEmit => new ReferenceInfo("System.Reflection.Emit.dll", Resources.SystemReflectionEmit, Net90.References.SystemReflectionEmit, global::System.Guid.Parse("40541be0-2bea-4e25-b75a-0e758f2e1d64")); + + /// + /// The for System.Reflection.Emit.ILGeneration.dll + /// + public static ReferenceInfo SystemReflectionEmitILGeneration => new ReferenceInfo("System.Reflection.Emit.ILGeneration.dll", Resources.SystemReflectionEmitILGeneration, Net90.References.SystemReflectionEmitILGeneration, global::System.Guid.Parse("4f2cd109-2ace-4fca-b778-67bea7e57d6d")); + + /// + /// The for System.Reflection.Emit.Lightweight.dll + /// + public static ReferenceInfo SystemReflectionEmitLightweight => new ReferenceInfo("System.Reflection.Emit.Lightweight.dll", Resources.SystemReflectionEmitLightweight, Net90.References.SystemReflectionEmitLightweight, global::System.Guid.Parse("0a973423-d21a-4a9c-8061-320bb5d17fd9")); + + /// + /// The for System.Reflection.Extensions.dll + /// + public static ReferenceInfo SystemReflectionExtensions => new ReferenceInfo("System.Reflection.Extensions.dll", Resources.SystemReflectionExtensions, Net90.References.SystemReflectionExtensions, global::System.Guid.Parse("88fe74a5-0905-456e-8aa5-24fea335f346")); + + /// + /// The for System.Reflection.Metadata.dll + /// + public static ReferenceInfo SystemReflectionMetadata => new ReferenceInfo("System.Reflection.Metadata.dll", Resources.SystemReflectionMetadata, Net90.References.SystemReflectionMetadata, global::System.Guid.Parse("aef1c6ce-3290-45f6-b6de-b28433397a04")); + + /// + /// The for System.Reflection.Primitives.dll + /// + public static ReferenceInfo SystemReflectionPrimitives => new ReferenceInfo("System.Reflection.Primitives.dll", Resources.SystemReflectionPrimitives, Net90.References.SystemReflectionPrimitives, global::System.Guid.Parse("49ced5e0-a5bd-4b4e-8cd8-cdb8bd849e55")); + + /// + /// The for System.Reflection.TypeExtensions.dll + /// + public static ReferenceInfo SystemReflectionTypeExtensions => new ReferenceInfo("System.Reflection.TypeExtensions.dll", Resources.SystemReflectionTypeExtensions, Net90.References.SystemReflectionTypeExtensions, global::System.Guid.Parse("5e0a87bf-9ac4-491d-831f-42fc3a58f7ec")); + + /// + /// The for System.Resources.Reader.dll + /// + public static ReferenceInfo SystemResourcesReader => new ReferenceInfo("System.Resources.Reader.dll", Resources.SystemResourcesReader, Net90.References.SystemResourcesReader, global::System.Guid.Parse("860db9da-490e-4c67-8051-874ac9f6a97f")); + + /// + /// The for System.Resources.ResourceManager.dll + /// + public static ReferenceInfo SystemResourcesResourceManager => new ReferenceInfo("System.Resources.ResourceManager.dll", Resources.SystemResourcesResourceManager, Net90.References.SystemResourcesResourceManager, global::System.Guid.Parse("bf4f8444-b0c4-4dda-89f1-f5dbc874e753")); + + /// + /// The for System.Resources.Writer.dll + /// + public static ReferenceInfo SystemResourcesWriter => new ReferenceInfo("System.Resources.Writer.dll", Resources.SystemResourcesWriter, Net90.References.SystemResourcesWriter, global::System.Guid.Parse("bec8a22e-0c9a-4a7e-9df2-700417f98e1d")); + + /// + /// The for System.Runtime.CompilerServices.Unsafe.dll + /// + public static ReferenceInfo SystemRuntimeCompilerServicesUnsafe => new ReferenceInfo("System.Runtime.CompilerServices.Unsafe.dll", Resources.SystemRuntimeCompilerServicesUnsafe, Net90.References.SystemRuntimeCompilerServicesUnsafe, global::System.Guid.Parse("f6027126-896d-4a06-a348-f86ee2a25559")); + + /// + /// The for System.Runtime.CompilerServices.VisualC.dll + /// + public static ReferenceInfo SystemRuntimeCompilerServicesVisualC => new ReferenceInfo("System.Runtime.CompilerServices.VisualC.dll", Resources.SystemRuntimeCompilerServicesVisualC, Net90.References.SystemRuntimeCompilerServicesVisualC, global::System.Guid.Parse("52e79d11-0d1f-47a5-bc05-b6f459d2a9ba")); + + /// + /// The for System.Runtime.dll + /// + public static ReferenceInfo SystemRuntime => new ReferenceInfo("System.Runtime.dll", Resources.SystemRuntime, Net90.References.SystemRuntime, global::System.Guid.Parse("49b542d5-0038-47c6-936c-2416e1ff0b56")); + + /// + /// The for System.Runtime.Extensions.dll + /// + public static ReferenceInfo SystemRuntimeExtensions => new ReferenceInfo("System.Runtime.Extensions.dll", Resources.SystemRuntimeExtensions, Net90.References.SystemRuntimeExtensions, global::System.Guid.Parse("dc36206b-7114-4a12-a9e5-5a920057b546")); + + /// + /// The for System.Runtime.Handles.dll + /// + public static ReferenceInfo SystemRuntimeHandles => new ReferenceInfo("System.Runtime.Handles.dll", Resources.SystemRuntimeHandles, Net90.References.SystemRuntimeHandles, global::System.Guid.Parse("f33d689e-a747-48e3-b538-b61f885d6b70")); + + /// + /// The for System.Runtime.InteropServices.dll + /// + public static ReferenceInfo SystemRuntimeInteropServices => new ReferenceInfo("System.Runtime.InteropServices.dll", Resources.SystemRuntimeInteropServices, Net90.References.SystemRuntimeInteropServices, global::System.Guid.Parse("94a656e9-116e-484b-80e6-5883f809377f")); + + /// + /// The for System.Runtime.InteropServices.JavaScript.dll + /// + public static ReferenceInfo SystemRuntimeInteropServicesJavaScript => new ReferenceInfo("System.Runtime.InteropServices.JavaScript.dll", Resources.SystemRuntimeInteropServicesJavaScript, Net90.References.SystemRuntimeInteropServicesJavaScript, global::System.Guid.Parse("5cf05ad7-1e57-4d21-b308-84e67fcf25b8")); + + /// + /// The for System.Runtime.InteropServices.RuntimeInformation.dll + /// + public static ReferenceInfo SystemRuntimeInteropServicesRuntimeInformation => new ReferenceInfo("System.Runtime.InteropServices.RuntimeInformation.dll", Resources.SystemRuntimeInteropServicesRuntimeInformation, Net90.References.SystemRuntimeInteropServicesRuntimeInformation, global::System.Guid.Parse("9095a0f6-c0b7-4ce0-ad76-b9ccec4c85c7")); + + /// + /// The for System.Runtime.Intrinsics.dll + /// + public static ReferenceInfo SystemRuntimeIntrinsics => new ReferenceInfo("System.Runtime.Intrinsics.dll", Resources.SystemRuntimeIntrinsics, Net90.References.SystemRuntimeIntrinsics, global::System.Guid.Parse("2d4eea65-35c0-485f-a99b-c695d7874881")); + + /// + /// The for System.Runtime.Loader.dll + /// + public static ReferenceInfo SystemRuntimeLoader => new ReferenceInfo("System.Runtime.Loader.dll", Resources.SystemRuntimeLoader, Net90.References.SystemRuntimeLoader, global::System.Guid.Parse("d0eca4bc-a50e-4e45-9ffd-2648d4b35e9f")); + + /// + /// The for System.Runtime.Numerics.dll + /// + public static ReferenceInfo SystemRuntimeNumerics => new ReferenceInfo("System.Runtime.Numerics.dll", Resources.SystemRuntimeNumerics, Net90.References.SystemRuntimeNumerics, global::System.Guid.Parse("a4ae02d4-7267-4b2f-95ec-041430087368")); + + /// + /// The for System.Runtime.Serialization.dll + /// + public static ReferenceInfo SystemRuntimeSerialization => new ReferenceInfo("System.Runtime.Serialization.dll", Resources.SystemRuntimeSerialization, Net90.References.SystemRuntimeSerialization, global::System.Guid.Parse("0adc6d38-6cc7-4c88-9a59-c76fc750e3c0")); + + /// + /// The for System.Runtime.Serialization.Formatters.dll + /// + public static ReferenceInfo SystemRuntimeSerializationFormatters => new ReferenceInfo("System.Runtime.Serialization.Formatters.dll", Resources.SystemRuntimeSerializationFormatters, Net90.References.SystemRuntimeSerializationFormatters, global::System.Guid.Parse("2379ef2c-7a27-45a9-97f6-7b802223240a")); + + /// + /// The for System.Runtime.Serialization.Json.dll + /// + public static ReferenceInfo SystemRuntimeSerializationJson => new ReferenceInfo("System.Runtime.Serialization.Json.dll", Resources.SystemRuntimeSerializationJson, Net90.References.SystemRuntimeSerializationJson, global::System.Guid.Parse("e0a84081-07d0-41fa-ae9b-fb324412c81c")); + + /// + /// The for System.Runtime.Serialization.Primitives.dll + /// + public static ReferenceInfo SystemRuntimeSerializationPrimitives => new ReferenceInfo("System.Runtime.Serialization.Primitives.dll", Resources.SystemRuntimeSerializationPrimitives, Net90.References.SystemRuntimeSerializationPrimitives, global::System.Guid.Parse("8d7b75f1-a57f-4fc0-bad9-692725614d59")); + + /// + /// The for System.Runtime.Serialization.Xml.dll + /// + public static ReferenceInfo SystemRuntimeSerializationXml => new ReferenceInfo("System.Runtime.Serialization.Xml.dll", Resources.SystemRuntimeSerializationXml, Net90.References.SystemRuntimeSerializationXml, global::System.Guid.Parse("ea6676ef-2404-463c-9373-db3d649f17f2")); + + /// + /// The for System.Security.AccessControl.dll + /// + public static ReferenceInfo SystemSecurityAccessControl => new ReferenceInfo("System.Security.AccessControl.dll", Resources.SystemSecurityAccessControl, Net90.References.SystemSecurityAccessControl, global::System.Guid.Parse("3e228e95-70fc-4a30-944e-e36e22801c9b")); + + /// + /// The for System.Security.Claims.dll + /// + public static ReferenceInfo SystemSecurityClaims => new ReferenceInfo("System.Security.Claims.dll", Resources.SystemSecurityClaims, Net90.References.SystemSecurityClaims, global::System.Guid.Parse("fdb91aa8-1819-4e2e-a493-2df37becceae")); + + /// + /// The for System.Security.Cryptography.Algorithms.dll + /// + public static ReferenceInfo SystemSecurityCryptographyAlgorithms => new ReferenceInfo("System.Security.Cryptography.Algorithms.dll", Resources.SystemSecurityCryptographyAlgorithms, Net90.References.SystemSecurityCryptographyAlgorithms, global::System.Guid.Parse("bb6a6536-288d-4b94-9c58-2746baae2924")); + + /// + /// The for System.Security.Cryptography.Cng.dll + /// + public static ReferenceInfo SystemSecurityCryptographyCng => new ReferenceInfo("System.Security.Cryptography.Cng.dll", Resources.SystemSecurityCryptographyCng, Net90.References.SystemSecurityCryptographyCng, global::System.Guid.Parse("8d341aac-e867-4727-b2bd-76a56134852e")); + + /// + /// The for System.Security.Cryptography.Csp.dll + /// + public static ReferenceInfo SystemSecurityCryptographyCsp => new ReferenceInfo("System.Security.Cryptography.Csp.dll", Resources.SystemSecurityCryptographyCsp, Net90.References.SystemSecurityCryptographyCsp, global::System.Guid.Parse("871b6ff6-8346-400b-90fe-3cfea0a9c061")); + + /// + /// The for System.Security.Cryptography.dll + /// + public static ReferenceInfo SystemSecurityCryptography => new ReferenceInfo("System.Security.Cryptography.dll", Resources.SystemSecurityCryptography, Net90.References.SystemSecurityCryptography, global::System.Guid.Parse("a22f3982-de69-48fb-b526-476c598794c8")); + + /// + /// The for System.Security.Cryptography.Encoding.dll + /// + public static ReferenceInfo SystemSecurityCryptographyEncoding => new ReferenceInfo("System.Security.Cryptography.Encoding.dll", Resources.SystemSecurityCryptographyEncoding, Net90.References.SystemSecurityCryptographyEncoding, global::System.Guid.Parse("c75029ae-a08f-4972-8005-09ed41245da7")); + + /// + /// The for System.Security.Cryptography.OpenSsl.dll + /// + public static ReferenceInfo SystemSecurityCryptographyOpenSsl => new ReferenceInfo("System.Security.Cryptography.OpenSsl.dll", Resources.SystemSecurityCryptographyOpenSsl, Net90.References.SystemSecurityCryptographyOpenSsl, global::System.Guid.Parse("1b834e1d-0d6a-406d-995f-3052a775966a")); + + /// + /// The for System.Security.Cryptography.Primitives.dll + /// + public static ReferenceInfo SystemSecurityCryptographyPrimitives => new ReferenceInfo("System.Security.Cryptography.Primitives.dll", Resources.SystemSecurityCryptographyPrimitives, Net90.References.SystemSecurityCryptographyPrimitives, global::System.Guid.Parse("60910360-f34c-4358-acbe-c4668ee97763")); + + /// + /// The for System.Security.Cryptography.X509Certificates.dll + /// + public static ReferenceInfo SystemSecurityCryptographyX509Certificates => new ReferenceInfo("System.Security.Cryptography.X509Certificates.dll", Resources.SystemSecurityCryptographyX509Certificates, Net90.References.SystemSecurityCryptographyX509Certificates, global::System.Guid.Parse("a1988379-df39-4679-94fe-be0fbfe82af4")); + + /// + /// The for System.Security.dll + /// + public static ReferenceInfo SystemSecurity => new ReferenceInfo("System.Security.dll", Resources.SystemSecurity, Net90.References.SystemSecurity, global::System.Guid.Parse("deaaa1a8-6e43-406a-a76f-2fd012069811")); + + /// + /// The for System.Security.Principal.dll + /// + public static ReferenceInfo SystemSecurityPrincipal => new ReferenceInfo("System.Security.Principal.dll", Resources.SystemSecurityPrincipal, Net90.References.SystemSecurityPrincipal, global::System.Guid.Parse("ccccfc3b-b9c9-4d62-9464-70c6e48c04c9")); + + /// + /// The for System.Security.Principal.Windows.dll + /// + public static ReferenceInfo SystemSecurityPrincipalWindows => new ReferenceInfo("System.Security.Principal.Windows.dll", Resources.SystemSecurityPrincipalWindows, Net90.References.SystemSecurityPrincipalWindows, global::System.Guid.Parse("1923bda9-1c57-4135-9292-51db72c9a558")); + + /// + /// The for System.Security.SecureString.dll + /// + public static ReferenceInfo SystemSecuritySecureString => new ReferenceInfo("System.Security.SecureString.dll", Resources.SystemSecuritySecureString, Net90.References.SystemSecuritySecureString, global::System.Guid.Parse("6249e486-0a27-4a36-8269-aafc684dc998")); + + /// + /// The for System.ServiceModel.Web.dll + /// + public static ReferenceInfo SystemServiceModelWeb => new ReferenceInfo("System.ServiceModel.Web.dll", Resources.SystemServiceModelWeb, Net90.References.SystemServiceModelWeb, global::System.Guid.Parse("1389fe94-0a0c-46f3-a77a-2d5936abbe5d")); + + /// + /// The for System.ServiceProcess.dll + /// + public static ReferenceInfo SystemServiceProcess => new ReferenceInfo("System.ServiceProcess.dll", Resources.SystemServiceProcess, Net90.References.SystemServiceProcess, global::System.Guid.Parse("5416eb99-6ec8-4e6c-8330-fc0e764680d8")); + + /// + /// The for System.Text.Encoding.CodePages.dll + /// + public static ReferenceInfo SystemTextEncodingCodePages => new ReferenceInfo("System.Text.Encoding.CodePages.dll", Resources.SystemTextEncodingCodePages, Net90.References.SystemTextEncodingCodePages, global::System.Guid.Parse("23938989-da91-4c44-926e-fe692bb95899")); + + /// + /// The for System.Text.Encoding.dll + /// + public static ReferenceInfo SystemTextEncoding => new ReferenceInfo("System.Text.Encoding.dll", Resources.SystemTextEncoding, Net90.References.SystemTextEncoding, global::System.Guid.Parse("9d1c8421-dfef-497f-bfbc-e2a3fa03c097")); + + /// + /// The for System.Text.Encoding.Extensions.dll + /// + public static ReferenceInfo SystemTextEncodingExtensions => new ReferenceInfo("System.Text.Encoding.Extensions.dll", Resources.SystemTextEncodingExtensions, Net90.References.SystemTextEncodingExtensions, global::System.Guid.Parse("cb6e1f9f-7843-44a9-bd2a-34328cc035fa")); + + /// + /// The for System.Text.Encodings.Web.dll + /// + public static ReferenceInfo SystemTextEncodingsWeb => new ReferenceInfo("System.Text.Encodings.Web.dll", Resources.SystemTextEncodingsWeb, Net90.References.SystemTextEncodingsWeb, global::System.Guid.Parse("4ffb5f10-31c1-404c-a7bf-46e7a3910a3a")); + + /// + /// The for System.Text.Json.dll + /// + public static ReferenceInfo SystemTextJson => new ReferenceInfo("System.Text.Json.dll", Resources.SystemTextJson, Net90.References.SystemTextJson, global::System.Guid.Parse("c9e383dc-7aca-4f99-bb51-11fe1caf1194")); + + /// + /// The for System.Text.RegularExpressions.dll + /// + public static ReferenceInfo SystemTextRegularExpressions => new ReferenceInfo("System.Text.RegularExpressions.dll", Resources.SystemTextRegularExpressions, Net90.References.SystemTextRegularExpressions, global::System.Guid.Parse("61c2d5df-022d-4d2f-8a8a-7afd83305701")); + + /// + /// The for System.Threading.Channels.dll + /// + public static ReferenceInfo SystemThreadingChannels => new ReferenceInfo("System.Threading.Channels.dll", Resources.SystemThreadingChannels, Net90.References.SystemThreadingChannels, global::System.Guid.Parse("b17d29d9-c35a-4fe6-912b-67c5154f4bb0")); + + /// + /// The for System.Threading.dll + /// + public static ReferenceInfo SystemThreading => new ReferenceInfo("System.Threading.dll", Resources.SystemThreading, Net90.References.SystemThreading, global::System.Guid.Parse("f0c1ed84-9469-455c-a9ee-2ed241ffbaa7")); + + /// + /// The for System.Threading.Overlapped.dll + /// + public static ReferenceInfo SystemThreadingOverlapped => new ReferenceInfo("System.Threading.Overlapped.dll", Resources.SystemThreadingOverlapped, Net90.References.SystemThreadingOverlapped, global::System.Guid.Parse("ac9f5489-4e03-45f2-b541-01583957c58c")); + + /// + /// The for System.Threading.Tasks.Dataflow.dll + /// + public static ReferenceInfo SystemThreadingTasksDataflow => new ReferenceInfo("System.Threading.Tasks.Dataflow.dll", Resources.SystemThreadingTasksDataflow, Net90.References.SystemThreadingTasksDataflow, global::System.Guid.Parse("20129c67-182a-4f20-9c98-81e92c4e44b3")); + + /// + /// The for System.Threading.Tasks.dll + /// + public static ReferenceInfo SystemThreadingTasks => new ReferenceInfo("System.Threading.Tasks.dll", Resources.SystemThreadingTasks, Net90.References.SystemThreadingTasks, global::System.Guid.Parse("4f2c54a6-1313-4644-9695-99f32ea8201b")); + + /// + /// The for System.Threading.Tasks.Extensions.dll + /// + public static ReferenceInfo SystemThreadingTasksExtensions => new ReferenceInfo("System.Threading.Tasks.Extensions.dll", Resources.SystemThreadingTasksExtensions, Net90.References.SystemThreadingTasksExtensions, global::System.Guid.Parse("df76a5c0-eff9-4d3b-a6f4-6e48a9cf8b25")); + + /// + /// The for System.Threading.Tasks.Parallel.dll + /// + public static ReferenceInfo SystemThreadingTasksParallel => new ReferenceInfo("System.Threading.Tasks.Parallel.dll", Resources.SystemThreadingTasksParallel, Net90.References.SystemThreadingTasksParallel, global::System.Guid.Parse("d5c9ebd4-7246-44bb-8272-40061a17cff8")); + + /// + /// The for System.Threading.Thread.dll + /// + public static ReferenceInfo SystemThreadingThread => new ReferenceInfo("System.Threading.Thread.dll", Resources.SystemThreadingThread, Net90.References.SystemThreadingThread, global::System.Guid.Parse("a65a6bc2-1911-4148-8a89-54922dee6c06")); + + /// + /// The for System.Threading.ThreadPool.dll + /// + public static ReferenceInfo SystemThreadingThreadPool => new ReferenceInfo("System.Threading.ThreadPool.dll", Resources.SystemThreadingThreadPool, Net90.References.SystemThreadingThreadPool, global::System.Guid.Parse("ad6b14dd-cf3d-4abd-a1a3-1c679284673c")); + + /// + /// The for System.Threading.Timer.dll + /// + public static ReferenceInfo SystemThreadingTimer => new ReferenceInfo("System.Threading.Timer.dll", Resources.SystemThreadingTimer, Net90.References.SystemThreadingTimer, global::System.Guid.Parse("7367be03-6a60-49d1-8f76-e5647a3a4f4d")); + + /// + /// The for System.Transactions.dll + /// + public static ReferenceInfo SystemTransactions => new ReferenceInfo("System.Transactions.dll", Resources.SystemTransactions, Net90.References.SystemTransactions, global::System.Guid.Parse("94080a81-7506-44db-81d0-e11708d42beb")); + + /// + /// The for System.Transactions.Local.dll + /// + public static ReferenceInfo SystemTransactionsLocal => new ReferenceInfo("System.Transactions.Local.dll", Resources.SystemTransactionsLocal, Net90.References.SystemTransactionsLocal, global::System.Guid.Parse("92190889-e4f4-46f6-9703-89b1978a8664")); + + /// + /// The for System.ValueTuple.dll + /// + public static ReferenceInfo SystemValueTuple => new ReferenceInfo("System.ValueTuple.dll", Resources.SystemValueTuple, Net90.References.SystemValueTuple, global::System.Guid.Parse("98ca2134-7dc7-4b47-99e5-48c2b9246f85")); + + /// + /// The for System.Web.dll + /// + public static ReferenceInfo SystemWeb => new ReferenceInfo("System.Web.dll", Resources.SystemWeb, Net90.References.SystemWeb, global::System.Guid.Parse("06d730af-b88c-41db-b425-776e22a94cc1")); + + /// + /// The for System.Web.HttpUtility.dll + /// + public static ReferenceInfo SystemWebHttpUtility => new ReferenceInfo("System.Web.HttpUtility.dll", Resources.SystemWebHttpUtility, Net90.References.SystemWebHttpUtility, global::System.Guid.Parse("c69ba051-65a5-4397-838a-bdb17fb9c71a")); + + /// + /// The for System.Windows.dll + /// + public static ReferenceInfo SystemWindows => new ReferenceInfo("System.Windows.dll", Resources.SystemWindows, Net90.References.SystemWindows, global::System.Guid.Parse("b8da6509-bda4-423b-8e78-8b366cb15c88")); + + /// + /// The for System.Xml.dll + /// + public static ReferenceInfo SystemXml => new ReferenceInfo("System.Xml.dll", Resources.SystemXml, Net90.References.SystemXml, global::System.Guid.Parse("a49fa3f4-9f9b-4191-8330-a48bcd5625d6")); + + /// + /// The for System.Xml.Linq.dll + /// + public static ReferenceInfo SystemXmlLinq => new ReferenceInfo("System.Xml.Linq.dll", Resources.SystemXmlLinq, Net90.References.SystemXmlLinq, global::System.Guid.Parse("cbc7391c-4d7e-4346-b86a-72a3067db604")); + + /// + /// The for System.Xml.ReaderWriter.dll + /// + public static ReferenceInfo SystemXmlReaderWriter => new ReferenceInfo("System.Xml.ReaderWriter.dll", Resources.SystemXmlReaderWriter, Net90.References.SystemXmlReaderWriter, global::System.Guid.Parse("488f57b3-c2bd-4eab-b720-786961d28020")); + + /// + /// The for System.Xml.Serialization.dll + /// + public static ReferenceInfo SystemXmlSerialization => new ReferenceInfo("System.Xml.Serialization.dll", Resources.SystemXmlSerialization, Net90.References.SystemXmlSerialization, global::System.Guid.Parse("796af0ad-002f-4772-a554-af463db9fe7c")); + + /// + /// The for System.Xml.XDocument.dll + /// + public static ReferenceInfo SystemXmlXDocument => new ReferenceInfo("System.Xml.XDocument.dll", Resources.SystemXmlXDocument, Net90.References.SystemXmlXDocument, global::System.Guid.Parse("02695430-631e-416a-a2ba-7f952081f8a1")); + + /// + /// The for System.Xml.XmlDocument.dll + /// + public static ReferenceInfo SystemXmlXmlDocument => new ReferenceInfo("System.Xml.XmlDocument.dll", Resources.SystemXmlXmlDocument, Net90.References.SystemXmlXmlDocument, global::System.Guid.Parse("d371b4a8-7144-4c80-8ac9-b3ae80440cc9")); + + /// + /// The for System.Xml.XmlSerializer.dll + /// + public static ReferenceInfo SystemXmlXmlSerializer => new ReferenceInfo("System.Xml.XmlSerializer.dll", Resources.SystemXmlXmlSerializer, Net90.References.SystemXmlXmlSerializer, global::System.Guid.Parse("d45a417d-444f-4b53-8aaf-3f840e49779f")); + + /// + /// The for System.Xml.XPath.dll + /// + public static ReferenceInfo SystemXmlXPath => new ReferenceInfo("System.Xml.XPath.dll", Resources.SystemXmlXPath, Net90.References.SystemXmlXPath, global::System.Guid.Parse("928d6dfb-c982-4bc6-86b8-26fa12492e53")); + + /// + /// The for System.Xml.XPath.XDocument.dll + /// + public static ReferenceInfo SystemXmlXPathXDocument => new ReferenceInfo("System.Xml.XPath.XDocument.dll", Resources.SystemXmlXPathXDocument, Net90.References.SystemXmlXPathXDocument, global::System.Guid.Parse("2205c021-5b38-46da-80b4-8ae5c59436f7")); + + /// + /// The for WindowsBase.dll + /// + public static ReferenceInfo WindowsBase => new ReferenceInfo("WindowsBase.dll", Resources.WindowsBase, Net90.References.WindowsBase, global::System.Guid.Parse("d41258d5-ac57-4fd8-a31f-8f98c90f6929")); + private static ImmutableArray _all; + public static ImmutableArray All + { + get + { + if (_all.IsDefault) + { + _all = + [ + MicrosoftCSharp, + MicrosoftVisualBasicCore, + MicrosoftVisualBasic, + MicrosoftWin32Primitives, + MicrosoftWin32Registry, + mscorlib, + netstandard, + SystemAppContext, + SystemBuffers, + SystemCollectionsConcurrent, + SystemCollections, + SystemCollectionsImmutable, + SystemCollectionsNonGeneric, + SystemCollectionsSpecialized, + SystemComponentModelAnnotations, + SystemComponentModelDataAnnotations, + SystemComponentModel, + SystemComponentModelEventBasedAsync, + SystemComponentModelPrimitives, + SystemComponentModelTypeConverter, + SystemConfiguration, + SystemConsole, + SystemCore, + SystemDataCommon, + SystemDataDataSetExtensions, + SystemData, + SystemDiagnosticsContracts, + SystemDiagnosticsDebug, + SystemDiagnosticsDiagnosticSource, + SystemDiagnosticsFileVersionInfo, + SystemDiagnosticsProcess, + SystemDiagnosticsStackTrace, + SystemDiagnosticsTextWriterTraceListener, + SystemDiagnosticsTools, + SystemDiagnosticsTraceSource, + SystemDiagnosticsTracing, + System, + SystemDrawing, + SystemDrawingPrimitives, + SystemDynamicRuntime, + SystemFormatsAsn1, + SystemFormatsTar, + SystemGlobalizationCalendars, + SystemGlobalization, + SystemGlobalizationExtensions, + SystemIOCompressionBrotli, + SystemIOCompression, + SystemIOCompressionFileSystem, + SystemIOCompressionZipFile, + SystemIO, + SystemIOFileSystemAccessControl, + SystemIOFileSystem, + SystemIOFileSystemDriveInfo, + SystemIOFileSystemPrimitives, + SystemIOFileSystemWatcher, + SystemIOIsolatedStorage, + SystemIOMemoryMappedFiles, + SystemIOPipelines, + SystemIOPipesAccessControl, + SystemIOPipes, + SystemIOUnmanagedMemoryStream, + SystemLinq, + SystemLinqExpressions, + SystemLinqParallel, + SystemLinqQueryable, + SystemMemory, + SystemNet, + SystemNetHttp, + SystemNetHttpJson, + SystemNetHttpListener, + SystemNetMail, + SystemNetNameResolution, + SystemNetNetworkInformation, + SystemNetPing, + SystemNetPrimitives, + SystemNetQuic, + SystemNetRequests, + SystemNetSecurity, + SystemNetServicePoint, + SystemNetSockets, + SystemNetWebClient, + SystemNetWebHeaderCollection, + SystemNetWebProxy, + SystemNetWebSocketsClient, + SystemNetWebSockets, + SystemNumerics, + SystemNumericsVectors, + SystemObjectModel, + SystemReflectionDispatchProxy, + SystemReflection, + SystemReflectionEmit, + SystemReflectionEmitILGeneration, + SystemReflectionEmitLightweight, + SystemReflectionExtensions, + SystemReflectionMetadata, + SystemReflectionPrimitives, + SystemReflectionTypeExtensions, + SystemResourcesReader, + SystemResourcesResourceManager, + SystemResourcesWriter, + SystemRuntimeCompilerServicesUnsafe, + SystemRuntimeCompilerServicesVisualC, + SystemRuntime, + SystemRuntimeExtensions, + SystemRuntimeHandles, + SystemRuntimeInteropServices, + SystemRuntimeInteropServicesJavaScript, + SystemRuntimeInteropServicesRuntimeInformation, + SystemRuntimeIntrinsics, + SystemRuntimeLoader, + SystemRuntimeNumerics, + SystemRuntimeSerialization, + SystemRuntimeSerializationFormatters, + SystemRuntimeSerializationJson, + SystemRuntimeSerializationPrimitives, + SystemRuntimeSerializationXml, + SystemSecurityAccessControl, + SystemSecurityClaims, + SystemSecurityCryptographyAlgorithms, + SystemSecurityCryptographyCng, + SystemSecurityCryptographyCsp, + SystemSecurityCryptography, + SystemSecurityCryptographyEncoding, + SystemSecurityCryptographyOpenSsl, + SystemSecurityCryptographyPrimitives, + SystemSecurityCryptographyX509Certificates, + SystemSecurity, + SystemSecurityPrincipal, + SystemSecurityPrincipalWindows, + SystemSecuritySecureString, + SystemServiceModelWeb, + SystemServiceProcess, + SystemTextEncodingCodePages, + SystemTextEncoding, + SystemTextEncodingExtensions, + SystemTextEncodingsWeb, + SystemTextJson, + SystemTextRegularExpressions, + SystemThreadingChannels, + SystemThreading, + SystemThreadingOverlapped, + SystemThreadingTasksDataflow, + SystemThreadingTasks, + SystemThreadingTasksExtensions, + SystemThreadingTasksParallel, + SystemThreadingThread, + SystemThreadingThreadPool, + SystemThreadingTimer, + SystemTransactions, + SystemTransactionsLocal, + SystemValueTuple, + SystemWeb, + SystemWebHttpUtility, + SystemWindows, + SystemXml, + SystemXmlLinq, + SystemXmlReaderWriter, + SystemXmlSerialization, + SystemXmlXDocument, + SystemXmlXmlDocument, + SystemXmlXmlSerializer, + SystemXmlXPath, + SystemXmlXPathXDocument, + WindowsBase, + ]; + } + return _all; + } + } + + public static IEnumerable<(string FileName, byte[] ImageBytes, PortableExecutableReference Reference, Guid Mvid)> AllValues => All.Select(x => x.AsTuple()); + } +} + +public static partial class Net90 +{ + public static class References + { + private static PortableExecutableReference? _MicrosoftCSharp; + + /// + /// The for Microsoft.CSharp.dll + /// + public static PortableExecutableReference MicrosoftCSharp + { + get + { + if (_MicrosoftCSharp is null) + { + _MicrosoftCSharp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.Microsoft.CSharp")).GetReference(filePath: "Microsoft.CSharp.dll", display: "Microsoft.CSharp (net90)"); + } + return _MicrosoftCSharp; + } + } + + private static PortableExecutableReference? _MicrosoftVisualBasicCore; + + /// + /// The for Microsoft.VisualBasic.Core.dll + /// + public static PortableExecutableReference MicrosoftVisualBasicCore + { + get + { + if (_MicrosoftVisualBasicCore is null) + { + _MicrosoftVisualBasicCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.Microsoft.VisualBasic.Core")).GetReference(filePath: "Microsoft.VisualBasic.Core.dll", display: "Microsoft.VisualBasic.Core (net90)"); + } + return _MicrosoftVisualBasicCore; + } + } + + private static PortableExecutableReference? _MicrosoftVisualBasic; + + /// + /// The for Microsoft.VisualBasic.dll + /// + public static PortableExecutableReference MicrosoftVisualBasic + { + get + { + if (_MicrosoftVisualBasic is null) + { + _MicrosoftVisualBasic = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.Microsoft.VisualBasic")).GetReference(filePath: "Microsoft.VisualBasic.dll", display: "Microsoft.VisualBasic (net90)"); + } + return _MicrosoftVisualBasic; + } + } + + private static PortableExecutableReference? _MicrosoftWin32Primitives; + + /// + /// The for Microsoft.Win32.Primitives.dll + /// + public static PortableExecutableReference MicrosoftWin32Primitives + { + get + { + if (_MicrosoftWin32Primitives is null) + { + _MicrosoftWin32Primitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.Microsoft.Win32.Primitives")).GetReference(filePath: "Microsoft.Win32.Primitives.dll", display: "Microsoft.Win32.Primitives (net90)"); + } + return _MicrosoftWin32Primitives; + } + } + + private static PortableExecutableReference? _MicrosoftWin32Registry; + + /// + /// The for Microsoft.Win32.Registry.dll + /// + public static PortableExecutableReference MicrosoftWin32Registry + { + get + { + if (_MicrosoftWin32Registry is null) + { + _MicrosoftWin32Registry = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.Microsoft.Win32.Registry")).GetReference(filePath: "Microsoft.Win32.Registry.dll", display: "Microsoft.Win32.Registry (net90)"); + } + return _MicrosoftWin32Registry; + } + } + + private static PortableExecutableReference? _mscorlib; + + /// + /// The for mscorlib.dll + /// + public static PortableExecutableReference mscorlib + { + get + { + if (_mscorlib is null) + { + _mscorlib = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.mscorlib")).GetReference(filePath: "mscorlib.dll", display: "mscorlib (net90)"); + } + return _mscorlib; + } + } + + private static PortableExecutableReference? _netstandard; + + /// + /// The for netstandard.dll + /// + public static PortableExecutableReference netstandard + { + get + { + if (_netstandard is null) + { + _netstandard = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.netstandard")).GetReference(filePath: "netstandard.dll", display: "netstandard (net90)"); + } + return _netstandard; + } + } + + private static PortableExecutableReference? _SystemAppContext; + + /// + /// The for System.AppContext.dll + /// + public static PortableExecutableReference SystemAppContext + { + get + { + if (_SystemAppContext is null) + { + _SystemAppContext = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.AppContext")).GetReference(filePath: "System.AppContext.dll", display: "System.AppContext (net90)"); + } + return _SystemAppContext; + } + } + + private static PortableExecutableReference? _SystemBuffers; + + /// + /// The for System.Buffers.dll + /// + public static PortableExecutableReference SystemBuffers + { + get + { + if (_SystemBuffers is null) + { + _SystemBuffers = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Buffers")).GetReference(filePath: "System.Buffers.dll", display: "System.Buffers (net90)"); + } + return _SystemBuffers; + } + } + + private static PortableExecutableReference? _SystemCollectionsConcurrent; + + /// + /// The for System.Collections.Concurrent.dll + /// + public static PortableExecutableReference SystemCollectionsConcurrent + { + get + { + if (_SystemCollectionsConcurrent is null) + { + _SystemCollectionsConcurrent = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Collections.Concurrent")).GetReference(filePath: "System.Collections.Concurrent.dll", display: "System.Collections.Concurrent (net90)"); + } + return _SystemCollectionsConcurrent; + } + } + + private static PortableExecutableReference? _SystemCollections; + + /// + /// The for System.Collections.dll + /// + public static PortableExecutableReference SystemCollections + { + get + { + if (_SystemCollections is null) + { + _SystemCollections = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Collections")).GetReference(filePath: "System.Collections.dll", display: "System.Collections (net90)"); + } + return _SystemCollections; + } + } + + private static PortableExecutableReference? _SystemCollectionsImmutable; + + /// + /// The for System.Collections.Immutable.dll + /// + public static PortableExecutableReference SystemCollectionsImmutable + { + get + { + if (_SystemCollectionsImmutable is null) + { + _SystemCollectionsImmutable = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Collections.Immutable")).GetReference(filePath: "System.Collections.Immutable.dll", display: "System.Collections.Immutable (net90)"); + } + return _SystemCollectionsImmutable; + } + } + + private static PortableExecutableReference? _SystemCollectionsNonGeneric; + + /// + /// The for System.Collections.NonGeneric.dll + /// + public static PortableExecutableReference SystemCollectionsNonGeneric + { + get + { + if (_SystemCollectionsNonGeneric is null) + { + _SystemCollectionsNonGeneric = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Collections.NonGeneric")).GetReference(filePath: "System.Collections.NonGeneric.dll", display: "System.Collections.NonGeneric (net90)"); + } + return _SystemCollectionsNonGeneric; + } + } + + private static PortableExecutableReference? _SystemCollectionsSpecialized; + + /// + /// The for System.Collections.Specialized.dll + /// + public static PortableExecutableReference SystemCollectionsSpecialized + { + get + { + if (_SystemCollectionsSpecialized is null) + { + _SystemCollectionsSpecialized = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Collections.Specialized")).GetReference(filePath: "System.Collections.Specialized.dll", display: "System.Collections.Specialized (net90)"); + } + return _SystemCollectionsSpecialized; + } + } + + private static PortableExecutableReference? _SystemComponentModelAnnotations; + + /// + /// The for System.ComponentModel.Annotations.dll + /// + public static PortableExecutableReference SystemComponentModelAnnotations + { + get + { + if (_SystemComponentModelAnnotations is null) + { + _SystemComponentModelAnnotations = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ComponentModel.Annotations")).GetReference(filePath: "System.ComponentModel.Annotations.dll", display: "System.ComponentModel.Annotations (net90)"); + } + return _SystemComponentModelAnnotations; + } + } + + private static PortableExecutableReference? _SystemComponentModelDataAnnotations; + + /// + /// The for System.ComponentModel.DataAnnotations.dll + /// + public static PortableExecutableReference SystemComponentModelDataAnnotations + { + get + { + if (_SystemComponentModelDataAnnotations is null) + { + _SystemComponentModelDataAnnotations = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ComponentModel.DataAnnotations")).GetReference(filePath: "System.ComponentModel.DataAnnotations.dll", display: "System.ComponentModel.DataAnnotations (net90)"); + } + return _SystemComponentModelDataAnnotations; + } + } + + private static PortableExecutableReference? _SystemComponentModel; + + /// + /// The for System.ComponentModel.dll + /// + public static PortableExecutableReference SystemComponentModel + { + get + { + if (_SystemComponentModel is null) + { + _SystemComponentModel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ComponentModel")).GetReference(filePath: "System.ComponentModel.dll", display: "System.ComponentModel (net90)"); + } + return _SystemComponentModel; + } + } + + private static PortableExecutableReference? _SystemComponentModelEventBasedAsync; + + /// + /// The for System.ComponentModel.EventBasedAsync.dll + /// + public static PortableExecutableReference SystemComponentModelEventBasedAsync + { + get + { + if (_SystemComponentModelEventBasedAsync is null) + { + _SystemComponentModelEventBasedAsync = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ComponentModel.EventBasedAsync")).GetReference(filePath: "System.ComponentModel.EventBasedAsync.dll", display: "System.ComponentModel.EventBasedAsync (net90)"); + } + return _SystemComponentModelEventBasedAsync; + } + } + + private static PortableExecutableReference? _SystemComponentModelPrimitives; + + /// + /// The for System.ComponentModel.Primitives.dll + /// + public static PortableExecutableReference SystemComponentModelPrimitives + { + get + { + if (_SystemComponentModelPrimitives is null) + { + _SystemComponentModelPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ComponentModel.Primitives")).GetReference(filePath: "System.ComponentModel.Primitives.dll", display: "System.ComponentModel.Primitives (net90)"); + } + return _SystemComponentModelPrimitives; + } + } + + private static PortableExecutableReference? _SystemComponentModelTypeConverter; + + /// + /// The for System.ComponentModel.TypeConverter.dll + /// + public static PortableExecutableReference SystemComponentModelTypeConverter + { + get + { + if (_SystemComponentModelTypeConverter is null) + { + _SystemComponentModelTypeConverter = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ComponentModel.TypeConverter")).GetReference(filePath: "System.ComponentModel.TypeConverter.dll", display: "System.ComponentModel.TypeConverter (net90)"); + } + return _SystemComponentModelTypeConverter; + } + } + + private static PortableExecutableReference? _SystemConfiguration; + + /// + /// The for System.Configuration.dll + /// + public static PortableExecutableReference SystemConfiguration + { + get + { + if (_SystemConfiguration is null) + { + _SystemConfiguration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Configuration")).GetReference(filePath: "System.Configuration.dll", display: "System.Configuration (net90)"); + } + return _SystemConfiguration; + } + } + + private static PortableExecutableReference? _SystemConsole; + + /// + /// The for System.Console.dll + /// + public static PortableExecutableReference SystemConsole + { + get + { + if (_SystemConsole is null) + { + _SystemConsole = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Console")).GetReference(filePath: "System.Console.dll", display: "System.Console (net90)"); + } + return _SystemConsole; + } + } + + private static PortableExecutableReference? _SystemCore; + + /// + /// The for System.Core.dll + /// + public static PortableExecutableReference SystemCore + { + get + { + if (_SystemCore is null) + { + _SystemCore = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Core")).GetReference(filePath: "System.Core.dll", display: "System.Core (net90)"); + } + return _SystemCore; + } + } + + private static PortableExecutableReference? _SystemDataCommon; + + /// + /// The for System.Data.Common.dll + /// + public static PortableExecutableReference SystemDataCommon + { + get + { + if (_SystemDataCommon is null) + { + _SystemDataCommon = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Data.Common")).GetReference(filePath: "System.Data.Common.dll", display: "System.Data.Common (net90)"); + } + return _SystemDataCommon; + } + } + + private static PortableExecutableReference? _SystemDataDataSetExtensions; + + /// + /// The for System.Data.DataSetExtensions.dll + /// + public static PortableExecutableReference SystemDataDataSetExtensions + { + get + { + if (_SystemDataDataSetExtensions is null) + { + _SystemDataDataSetExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Data.DataSetExtensions")).GetReference(filePath: "System.Data.DataSetExtensions.dll", display: "System.Data.DataSetExtensions (net90)"); + } + return _SystemDataDataSetExtensions; + } + } + + private static PortableExecutableReference? _SystemData; + + /// + /// The for System.Data.dll + /// + public static PortableExecutableReference SystemData + { + get + { + if (_SystemData is null) + { + _SystemData = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Data")).GetReference(filePath: "System.Data.dll", display: "System.Data (net90)"); + } + return _SystemData; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsContracts; + + /// + /// The for System.Diagnostics.Contracts.dll + /// + public static PortableExecutableReference SystemDiagnosticsContracts + { + get + { + if (_SystemDiagnosticsContracts is null) + { + _SystemDiagnosticsContracts = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.Contracts")).GetReference(filePath: "System.Diagnostics.Contracts.dll", display: "System.Diagnostics.Contracts (net90)"); + } + return _SystemDiagnosticsContracts; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsDebug; + + /// + /// The for System.Diagnostics.Debug.dll + /// + public static PortableExecutableReference SystemDiagnosticsDebug + { + get + { + if (_SystemDiagnosticsDebug is null) + { + _SystemDiagnosticsDebug = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.Debug")).GetReference(filePath: "System.Diagnostics.Debug.dll", display: "System.Diagnostics.Debug (net90)"); + } + return _SystemDiagnosticsDebug; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsDiagnosticSource; + + /// + /// The for System.Diagnostics.DiagnosticSource.dll + /// + public static PortableExecutableReference SystemDiagnosticsDiagnosticSource + { + get + { + if (_SystemDiagnosticsDiagnosticSource is null) + { + _SystemDiagnosticsDiagnosticSource = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.DiagnosticSource")).GetReference(filePath: "System.Diagnostics.DiagnosticSource.dll", display: "System.Diagnostics.DiagnosticSource (net90)"); + } + return _SystemDiagnosticsDiagnosticSource; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsFileVersionInfo; + + /// + /// The for System.Diagnostics.FileVersionInfo.dll + /// + public static PortableExecutableReference SystemDiagnosticsFileVersionInfo + { + get + { + if (_SystemDiagnosticsFileVersionInfo is null) + { + _SystemDiagnosticsFileVersionInfo = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.FileVersionInfo")).GetReference(filePath: "System.Diagnostics.FileVersionInfo.dll", display: "System.Diagnostics.FileVersionInfo (net90)"); + } + return _SystemDiagnosticsFileVersionInfo; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsProcess; + + /// + /// The for System.Diagnostics.Process.dll + /// + public static PortableExecutableReference SystemDiagnosticsProcess + { + get + { + if (_SystemDiagnosticsProcess is null) + { + _SystemDiagnosticsProcess = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.Process")).GetReference(filePath: "System.Diagnostics.Process.dll", display: "System.Diagnostics.Process (net90)"); + } + return _SystemDiagnosticsProcess; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsStackTrace; + + /// + /// The for System.Diagnostics.StackTrace.dll + /// + public static PortableExecutableReference SystemDiagnosticsStackTrace + { + get + { + if (_SystemDiagnosticsStackTrace is null) + { + _SystemDiagnosticsStackTrace = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.StackTrace")).GetReference(filePath: "System.Diagnostics.StackTrace.dll", display: "System.Diagnostics.StackTrace (net90)"); + } + return _SystemDiagnosticsStackTrace; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTextWriterTraceListener; + + /// + /// The for System.Diagnostics.TextWriterTraceListener.dll + /// + public static PortableExecutableReference SystemDiagnosticsTextWriterTraceListener + { + get + { + if (_SystemDiagnosticsTextWriterTraceListener is null) + { + _SystemDiagnosticsTextWriterTraceListener = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.TextWriterTraceListener")).GetReference(filePath: "System.Diagnostics.TextWriterTraceListener.dll", display: "System.Diagnostics.TextWriterTraceListener (net90)"); + } + return _SystemDiagnosticsTextWriterTraceListener; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTools; + + /// + /// The for System.Diagnostics.Tools.dll + /// + public static PortableExecutableReference SystemDiagnosticsTools + { + get + { + if (_SystemDiagnosticsTools is null) + { + _SystemDiagnosticsTools = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.Tools")).GetReference(filePath: "System.Diagnostics.Tools.dll", display: "System.Diagnostics.Tools (net90)"); + } + return _SystemDiagnosticsTools; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTraceSource; + + /// + /// The for System.Diagnostics.TraceSource.dll + /// + public static PortableExecutableReference SystemDiagnosticsTraceSource + { + get + { + if (_SystemDiagnosticsTraceSource is null) + { + _SystemDiagnosticsTraceSource = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.TraceSource")).GetReference(filePath: "System.Diagnostics.TraceSource.dll", display: "System.Diagnostics.TraceSource (net90)"); + } + return _SystemDiagnosticsTraceSource; + } + } + + private static PortableExecutableReference? _SystemDiagnosticsTracing; + + /// + /// The for System.Diagnostics.Tracing.dll + /// + public static PortableExecutableReference SystemDiagnosticsTracing + { + get + { + if (_SystemDiagnosticsTracing is null) + { + _SystemDiagnosticsTracing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Diagnostics.Tracing")).GetReference(filePath: "System.Diagnostics.Tracing.dll", display: "System.Diagnostics.Tracing (net90)"); + } + return _SystemDiagnosticsTracing; + } + } + + private static PortableExecutableReference? _System; + + /// + /// The for System.dll + /// + public static PortableExecutableReference System + { + get + { + if (_System is null) + { + _System = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System")).GetReference(filePath: "System.dll", display: "System (net90)"); + } + return _System; + } + } + + private static PortableExecutableReference? _SystemDrawing; + + /// + /// The for System.Drawing.dll + /// + public static PortableExecutableReference SystemDrawing + { + get + { + if (_SystemDrawing is null) + { + _SystemDrawing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Drawing")).GetReference(filePath: "System.Drawing.dll", display: "System.Drawing (net90)"); + } + return _SystemDrawing; + } + } + + private static PortableExecutableReference? _SystemDrawingPrimitives; + + /// + /// The for System.Drawing.Primitives.dll + /// + public static PortableExecutableReference SystemDrawingPrimitives + { + get + { + if (_SystemDrawingPrimitives is null) + { + _SystemDrawingPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Drawing.Primitives")).GetReference(filePath: "System.Drawing.Primitives.dll", display: "System.Drawing.Primitives (net90)"); + } + return _SystemDrawingPrimitives; + } + } + + private static PortableExecutableReference? _SystemDynamicRuntime; + + /// + /// The for System.Dynamic.Runtime.dll + /// + public static PortableExecutableReference SystemDynamicRuntime + { + get + { + if (_SystemDynamicRuntime is null) + { + _SystemDynamicRuntime = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Dynamic.Runtime")).GetReference(filePath: "System.Dynamic.Runtime.dll", display: "System.Dynamic.Runtime (net90)"); + } + return _SystemDynamicRuntime; + } + } + + private static PortableExecutableReference? _SystemFormatsAsn1; + + /// + /// The for System.Formats.Asn1.dll + /// + public static PortableExecutableReference SystemFormatsAsn1 + { + get + { + if (_SystemFormatsAsn1 is null) + { + _SystemFormatsAsn1 = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Formats.Asn1")).GetReference(filePath: "System.Formats.Asn1.dll", display: "System.Formats.Asn1 (net90)"); + } + return _SystemFormatsAsn1; + } + } + + private static PortableExecutableReference? _SystemFormatsTar; + + /// + /// The for System.Formats.Tar.dll + /// + public static PortableExecutableReference SystemFormatsTar + { + get + { + if (_SystemFormatsTar is null) + { + _SystemFormatsTar = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Formats.Tar")).GetReference(filePath: "System.Formats.Tar.dll", display: "System.Formats.Tar (net90)"); + } + return _SystemFormatsTar; + } + } + + private static PortableExecutableReference? _SystemGlobalizationCalendars; + + /// + /// The for System.Globalization.Calendars.dll + /// + public static PortableExecutableReference SystemGlobalizationCalendars + { + get + { + if (_SystemGlobalizationCalendars is null) + { + _SystemGlobalizationCalendars = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Globalization.Calendars")).GetReference(filePath: "System.Globalization.Calendars.dll", display: "System.Globalization.Calendars (net90)"); + } + return _SystemGlobalizationCalendars; + } + } + + private static PortableExecutableReference? _SystemGlobalization; + + /// + /// The for System.Globalization.dll + /// + public static PortableExecutableReference SystemGlobalization + { + get + { + if (_SystemGlobalization is null) + { + _SystemGlobalization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Globalization")).GetReference(filePath: "System.Globalization.dll", display: "System.Globalization (net90)"); + } + return _SystemGlobalization; + } + } + + private static PortableExecutableReference? _SystemGlobalizationExtensions; + + /// + /// The for System.Globalization.Extensions.dll + /// + public static PortableExecutableReference SystemGlobalizationExtensions + { + get + { + if (_SystemGlobalizationExtensions is null) + { + _SystemGlobalizationExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Globalization.Extensions")).GetReference(filePath: "System.Globalization.Extensions.dll", display: "System.Globalization.Extensions (net90)"); + } + return _SystemGlobalizationExtensions; + } + } + + private static PortableExecutableReference? _SystemIOCompressionBrotli; + + /// + /// The for System.IO.Compression.Brotli.dll + /// + public static PortableExecutableReference SystemIOCompressionBrotli + { + get + { + if (_SystemIOCompressionBrotli is null) + { + _SystemIOCompressionBrotli = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Compression.Brotli")).GetReference(filePath: "System.IO.Compression.Brotli.dll", display: "System.IO.Compression.Brotli (net90)"); + } + return _SystemIOCompressionBrotli; + } + } + + private static PortableExecutableReference? _SystemIOCompression; + + /// + /// The for System.IO.Compression.dll + /// + public static PortableExecutableReference SystemIOCompression + { + get + { + if (_SystemIOCompression is null) + { + _SystemIOCompression = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Compression")).GetReference(filePath: "System.IO.Compression.dll", display: "System.IO.Compression (net90)"); + } + return _SystemIOCompression; + } + } + + private static PortableExecutableReference? _SystemIOCompressionFileSystem; + + /// + /// The for System.IO.Compression.FileSystem.dll + /// + public static PortableExecutableReference SystemIOCompressionFileSystem + { + get + { + if (_SystemIOCompressionFileSystem is null) + { + _SystemIOCompressionFileSystem = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Compression.FileSystem")).GetReference(filePath: "System.IO.Compression.FileSystem.dll", display: "System.IO.Compression.FileSystem (net90)"); + } + return _SystemIOCompressionFileSystem; + } + } + + private static PortableExecutableReference? _SystemIOCompressionZipFile; + + /// + /// The for System.IO.Compression.ZipFile.dll + /// + public static PortableExecutableReference SystemIOCompressionZipFile + { + get + { + if (_SystemIOCompressionZipFile is null) + { + _SystemIOCompressionZipFile = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Compression.ZipFile")).GetReference(filePath: "System.IO.Compression.ZipFile.dll", display: "System.IO.Compression.ZipFile (net90)"); + } + return _SystemIOCompressionZipFile; + } + } + + private static PortableExecutableReference? _SystemIO; + + /// + /// The for System.IO.dll + /// + public static PortableExecutableReference SystemIO + { + get + { + if (_SystemIO is null) + { + _SystemIO = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO")).GetReference(filePath: "System.IO.dll", display: "System.IO (net90)"); + } + return _SystemIO; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemAccessControl; + + /// + /// The for System.IO.FileSystem.AccessControl.dll + /// + public static PortableExecutableReference SystemIOFileSystemAccessControl + { + get + { + if (_SystemIOFileSystemAccessControl is null) + { + _SystemIOFileSystemAccessControl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.FileSystem.AccessControl")).GetReference(filePath: "System.IO.FileSystem.AccessControl.dll", display: "System.IO.FileSystem.AccessControl (net90)"); + } + return _SystemIOFileSystemAccessControl; + } + } + + private static PortableExecutableReference? _SystemIOFileSystem; + + /// + /// The for System.IO.FileSystem.dll + /// + public static PortableExecutableReference SystemIOFileSystem + { + get + { + if (_SystemIOFileSystem is null) + { + _SystemIOFileSystem = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.FileSystem")).GetReference(filePath: "System.IO.FileSystem.dll", display: "System.IO.FileSystem (net90)"); + } + return _SystemIOFileSystem; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemDriveInfo; + + /// + /// The for System.IO.FileSystem.DriveInfo.dll + /// + public static PortableExecutableReference SystemIOFileSystemDriveInfo + { + get + { + if (_SystemIOFileSystemDriveInfo is null) + { + _SystemIOFileSystemDriveInfo = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.FileSystem.DriveInfo")).GetReference(filePath: "System.IO.FileSystem.DriveInfo.dll", display: "System.IO.FileSystem.DriveInfo (net90)"); + } + return _SystemIOFileSystemDriveInfo; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemPrimitives; + + /// + /// The for System.IO.FileSystem.Primitives.dll + /// + public static PortableExecutableReference SystemIOFileSystemPrimitives + { + get + { + if (_SystemIOFileSystemPrimitives is null) + { + _SystemIOFileSystemPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.FileSystem.Primitives")).GetReference(filePath: "System.IO.FileSystem.Primitives.dll", display: "System.IO.FileSystem.Primitives (net90)"); + } + return _SystemIOFileSystemPrimitives; + } + } + + private static PortableExecutableReference? _SystemIOFileSystemWatcher; + + /// + /// The for System.IO.FileSystem.Watcher.dll + /// + public static PortableExecutableReference SystemIOFileSystemWatcher + { + get + { + if (_SystemIOFileSystemWatcher is null) + { + _SystemIOFileSystemWatcher = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.FileSystem.Watcher")).GetReference(filePath: "System.IO.FileSystem.Watcher.dll", display: "System.IO.FileSystem.Watcher (net90)"); + } + return _SystemIOFileSystemWatcher; + } + } + + private static PortableExecutableReference? _SystemIOIsolatedStorage; + + /// + /// The for System.IO.IsolatedStorage.dll + /// + public static PortableExecutableReference SystemIOIsolatedStorage + { + get + { + if (_SystemIOIsolatedStorage is null) + { + _SystemIOIsolatedStorage = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.IsolatedStorage")).GetReference(filePath: "System.IO.IsolatedStorage.dll", display: "System.IO.IsolatedStorage (net90)"); + } + return _SystemIOIsolatedStorage; + } + } + + private static PortableExecutableReference? _SystemIOMemoryMappedFiles; + + /// + /// The for System.IO.MemoryMappedFiles.dll + /// + public static PortableExecutableReference SystemIOMemoryMappedFiles + { + get + { + if (_SystemIOMemoryMappedFiles is null) + { + _SystemIOMemoryMappedFiles = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.MemoryMappedFiles")).GetReference(filePath: "System.IO.MemoryMappedFiles.dll", display: "System.IO.MemoryMappedFiles (net90)"); + } + return _SystemIOMemoryMappedFiles; + } + } + + private static PortableExecutableReference? _SystemIOPipelines; + + /// + /// The for System.IO.Pipelines.dll + /// + public static PortableExecutableReference SystemIOPipelines + { + get + { + if (_SystemIOPipelines is null) + { + _SystemIOPipelines = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Pipelines")).GetReference(filePath: "System.IO.Pipelines.dll", display: "System.IO.Pipelines (net90)"); + } + return _SystemIOPipelines; + } + } + + private static PortableExecutableReference? _SystemIOPipesAccessControl; + + /// + /// The for System.IO.Pipes.AccessControl.dll + /// + public static PortableExecutableReference SystemIOPipesAccessControl + { + get + { + if (_SystemIOPipesAccessControl is null) + { + _SystemIOPipesAccessControl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Pipes.AccessControl")).GetReference(filePath: "System.IO.Pipes.AccessControl.dll", display: "System.IO.Pipes.AccessControl (net90)"); + } + return _SystemIOPipesAccessControl; + } + } + + private static PortableExecutableReference? _SystemIOPipes; + + /// + /// The for System.IO.Pipes.dll + /// + public static PortableExecutableReference SystemIOPipes + { + get + { + if (_SystemIOPipes is null) + { + _SystemIOPipes = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.Pipes")).GetReference(filePath: "System.IO.Pipes.dll", display: "System.IO.Pipes (net90)"); + } + return _SystemIOPipes; + } + } + + private static PortableExecutableReference? _SystemIOUnmanagedMemoryStream; + + /// + /// The for System.IO.UnmanagedMemoryStream.dll + /// + public static PortableExecutableReference SystemIOUnmanagedMemoryStream + { + get + { + if (_SystemIOUnmanagedMemoryStream is null) + { + _SystemIOUnmanagedMemoryStream = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.IO.UnmanagedMemoryStream")).GetReference(filePath: "System.IO.UnmanagedMemoryStream.dll", display: "System.IO.UnmanagedMemoryStream (net90)"); + } + return _SystemIOUnmanagedMemoryStream; + } + } + + private static PortableExecutableReference? _SystemLinq; + + /// + /// The for System.Linq.dll + /// + public static PortableExecutableReference SystemLinq + { + get + { + if (_SystemLinq is null) + { + _SystemLinq = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Linq")).GetReference(filePath: "System.Linq.dll", display: "System.Linq (net90)"); + } + return _SystemLinq; + } + } + + private static PortableExecutableReference? _SystemLinqExpressions; + + /// + /// The for System.Linq.Expressions.dll + /// + public static PortableExecutableReference SystemLinqExpressions + { + get + { + if (_SystemLinqExpressions is null) + { + _SystemLinqExpressions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Linq.Expressions")).GetReference(filePath: "System.Linq.Expressions.dll", display: "System.Linq.Expressions (net90)"); + } + return _SystemLinqExpressions; + } + } + + private static PortableExecutableReference? _SystemLinqParallel; + + /// + /// The for System.Linq.Parallel.dll + /// + public static PortableExecutableReference SystemLinqParallel + { + get + { + if (_SystemLinqParallel is null) + { + _SystemLinqParallel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Linq.Parallel")).GetReference(filePath: "System.Linq.Parallel.dll", display: "System.Linq.Parallel (net90)"); + } + return _SystemLinqParallel; + } + } + + private static PortableExecutableReference? _SystemLinqQueryable; + + /// + /// The for System.Linq.Queryable.dll + /// + public static PortableExecutableReference SystemLinqQueryable + { + get + { + if (_SystemLinqQueryable is null) + { + _SystemLinqQueryable = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Linq.Queryable")).GetReference(filePath: "System.Linq.Queryable.dll", display: "System.Linq.Queryable (net90)"); + } + return _SystemLinqQueryable; + } + } + + private static PortableExecutableReference? _SystemMemory; + + /// + /// The for System.Memory.dll + /// + public static PortableExecutableReference SystemMemory + { + get + { + if (_SystemMemory is null) + { + _SystemMemory = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Memory")).GetReference(filePath: "System.Memory.dll", display: "System.Memory (net90)"); + } + return _SystemMemory; + } + } + + private static PortableExecutableReference? _SystemNet; + + /// + /// The for System.Net.dll + /// + public static PortableExecutableReference SystemNet + { + get + { + if (_SystemNet is null) + { + _SystemNet = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net")).GetReference(filePath: "System.Net.dll", display: "System.Net (net90)"); + } + return _SystemNet; + } + } + + private static PortableExecutableReference? _SystemNetHttp; + + /// + /// The for System.Net.Http.dll + /// + public static PortableExecutableReference SystemNetHttp + { + get + { + if (_SystemNetHttp is null) + { + _SystemNetHttp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Http")).GetReference(filePath: "System.Net.Http.dll", display: "System.Net.Http (net90)"); + } + return _SystemNetHttp; + } + } + + private static PortableExecutableReference? _SystemNetHttpJson; + + /// + /// The for System.Net.Http.Json.dll + /// + public static PortableExecutableReference SystemNetHttpJson + { + get + { + if (_SystemNetHttpJson is null) + { + _SystemNetHttpJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Http.Json")).GetReference(filePath: "System.Net.Http.Json.dll", display: "System.Net.Http.Json (net90)"); + } + return _SystemNetHttpJson; + } + } + + private static PortableExecutableReference? _SystemNetHttpListener; + + /// + /// The for System.Net.HttpListener.dll + /// + public static PortableExecutableReference SystemNetHttpListener + { + get + { + if (_SystemNetHttpListener is null) + { + _SystemNetHttpListener = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.HttpListener")).GetReference(filePath: "System.Net.HttpListener.dll", display: "System.Net.HttpListener (net90)"); + } + return _SystemNetHttpListener; + } + } + + private static PortableExecutableReference? _SystemNetMail; + + /// + /// The for System.Net.Mail.dll + /// + public static PortableExecutableReference SystemNetMail + { + get + { + if (_SystemNetMail is null) + { + _SystemNetMail = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Mail")).GetReference(filePath: "System.Net.Mail.dll", display: "System.Net.Mail (net90)"); + } + return _SystemNetMail; + } + } + + private static PortableExecutableReference? _SystemNetNameResolution; + + /// + /// The for System.Net.NameResolution.dll + /// + public static PortableExecutableReference SystemNetNameResolution + { + get + { + if (_SystemNetNameResolution is null) + { + _SystemNetNameResolution = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.NameResolution")).GetReference(filePath: "System.Net.NameResolution.dll", display: "System.Net.NameResolution (net90)"); + } + return _SystemNetNameResolution; + } + } + + private static PortableExecutableReference? _SystemNetNetworkInformation; + + /// + /// The for System.Net.NetworkInformation.dll + /// + public static PortableExecutableReference SystemNetNetworkInformation + { + get + { + if (_SystemNetNetworkInformation is null) + { + _SystemNetNetworkInformation = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.NetworkInformation")).GetReference(filePath: "System.Net.NetworkInformation.dll", display: "System.Net.NetworkInformation (net90)"); + } + return _SystemNetNetworkInformation; + } + } + + private static PortableExecutableReference? _SystemNetPing; + + /// + /// The for System.Net.Ping.dll + /// + public static PortableExecutableReference SystemNetPing + { + get + { + if (_SystemNetPing is null) + { + _SystemNetPing = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Ping")).GetReference(filePath: "System.Net.Ping.dll", display: "System.Net.Ping (net90)"); + } + return _SystemNetPing; + } + } + + private static PortableExecutableReference? _SystemNetPrimitives; + + /// + /// The for System.Net.Primitives.dll + /// + public static PortableExecutableReference SystemNetPrimitives + { + get + { + if (_SystemNetPrimitives is null) + { + _SystemNetPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Primitives")).GetReference(filePath: "System.Net.Primitives.dll", display: "System.Net.Primitives (net90)"); + } + return _SystemNetPrimitives; + } + } + + private static PortableExecutableReference? _SystemNetQuic; + + /// + /// The for System.Net.Quic.dll + /// + public static PortableExecutableReference SystemNetQuic + { + get + { + if (_SystemNetQuic is null) + { + _SystemNetQuic = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Quic")).GetReference(filePath: "System.Net.Quic.dll", display: "System.Net.Quic (net90)"); + } + return _SystemNetQuic; + } + } + + private static PortableExecutableReference? _SystemNetRequests; + + /// + /// The for System.Net.Requests.dll + /// + public static PortableExecutableReference SystemNetRequests + { + get + { + if (_SystemNetRequests is null) + { + _SystemNetRequests = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Requests")).GetReference(filePath: "System.Net.Requests.dll", display: "System.Net.Requests (net90)"); + } + return _SystemNetRequests; + } + } + + private static PortableExecutableReference? _SystemNetSecurity; + + /// + /// The for System.Net.Security.dll + /// + public static PortableExecutableReference SystemNetSecurity + { + get + { + if (_SystemNetSecurity is null) + { + _SystemNetSecurity = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Security")).GetReference(filePath: "System.Net.Security.dll", display: "System.Net.Security (net90)"); + } + return _SystemNetSecurity; + } + } + + private static PortableExecutableReference? _SystemNetServicePoint; + + /// + /// The for System.Net.ServicePoint.dll + /// + public static PortableExecutableReference SystemNetServicePoint + { + get + { + if (_SystemNetServicePoint is null) + { + _SystemNetServicePoint = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.ServicePoint")).GetReference(filePath: "System.Net.ServicePoint.dll", display: "System.Net.ServicePoint (net90)"); + } + return _SystemNetServicePoint; + } + } + + private static PortableExecutableReference? _SystemNetSockets; + + /// + /// The for System.Net.Sockets.dll + /// + public static PortableExecutableReference SystemNetSockets + { + get + { + if (_SystemNetSockets is null) + { + _SystemNetSockets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.Sockets")).GetReference(filePath: "System.Net.Sockets.dll", display: "System.Net.Sockets (net90)"); + } + return _SystemNetSockets; + } + } + + private static PortableExecutableReference? _SystemNetWebClient; + + /// + /// The for System.Net.WebClient.dll + /// + public static PortableExecutableReference SystemNetWebClient + { + get + { + if (_SystemNetWebClient is null) + { + _SystemNetWebClient = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.WebClient")).GetReference(filePath: "System.Net.WebClient.dll", display: "System.Net.WebClient (net90)"); + } + return _SystemNetWebClient; + } + } + + private static PortableExecutableReference? _SystemNetWebHeaderCollection; + + /// + /// The for System.Net.WebHeaderCollection.dll + /// + public static PortableExecutableReference SystemNetWebHeaderCollection + { + get + { + if (_SystemNetWebHeaderCollection is null) + { + _SystemNetWebHeaderCollection = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.WebHeaderCollection")).GetReference(filePath: "System.Net.WebHeaderCollection.dll", display: "System.Net.WebHeaderCollection (net90)"); + } + return _SystemNetWebHeaderCollection; + } + } + + private static PortableExecutableReference? _SystemNetWebProxy; + + /// + /// The for System.Net.WebProxy.dll + /// + public static PortableExecutableReference SystemNetWebProxy + { + get + { + if (_SystemNetWebProxy is null) + { + _SystemNetWebProxy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.WebProxy")).GetReference(filePath: "System.Net.WebProxy.dll", display: "System.Net.WebProxy (net90)"); + } + return _SystemNetWebProxy; + } + } + + private static PortableExecutableReference? _SystemNetWebSocketsClient; + + /// + /// The for System.Net.WebSockets.Client.dll + /// + public static PortableExecutableReference SystemNetWebSocketsClient + { + get + { + if (_SystemNetWebSocketsClient is null) + { + _SystemNetWebSocketsClient = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.WebSockets.Client")).GetReference(filePath: "System.Net.WebSockets.Client.dll", display: "System.Net.WebSockets.Client (net90)"); + } + return _SystemNetWebSocketsClient; + } + } + + private static PortableExecutableReference? _SystemNetWebSockets; + + /// + /// The for System.Net.WebSockets.dll + /// + public static PortableExecutableReference SystemNetWebSockets + { + get + { + if (_SystemNetWebSockets is null) + { + _SystemNetWebSockets = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Net.WebSockets")).GetReference(filePath: "System.Net.WebSockets.dll", display: "System.Net.WebSockets (net90)"); + } + return _SystemNetWebSockets; + } + } + + private static PortableExecutableReference? _SystemNumerics; + + /// + /// The for System.Numerics.dll + /// + public static PortableExecutableReference SystemNumerics + { + get + { + if (_SystemNumerics is null) + { + _SystemNumerics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Numerics")).GetReference(filePath: "System.Numerics.dll", display: "System.Numerics (net90)"); + } + return _SystemNumerics; + } + } + + private static PortableExecutableReference? _SystemNumericsVectors; + + /// + /// The for System.Numerics.Vectors.dll + /// + public static PortableExecutableReference SystemNumericsVectors + { + get + { + if (_SystemNumericsVectors is null) + { + _SystemNumericsVectors = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Numerics.Vectors")).GetReference(filePath: "System.Numerics.Vectors.dll", display: "System.Numerics.Vectors (net90)"); + } + return _SystemNumericsVectors; + } + } + + private static PortableExecutableReference? _SystemObjectModel; + + /// + /// The for System.ObjectModel.dll + /// + public static PortableExecutableReference SystemObjectModel + { + get + { + if (_SystemObjectModel is null) + { + _SystemObjectModel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ObjectModel")).GetReference(filePath: "System.ObjectModel.dll", display: "System.ObjectModel (net90)"); + } + return _SystemObjectModel; + } + } + + private static PortableExecutableReference? _SystemReflectionDispatchProxy; + + /// + /// The for System.Reflection.DispatchProxy.dll + /// + public static PortableExecutableReference SystemReflectionDispatchProxy + { + get + { + if (_SystemReflectionDispatchProxy is null) + { + _SystemReflectionDispatchProxy = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.DispatchProxy")).GetReference(filePath: "System.Reflection.DispatchProxy.dll", display: "System.Reflection.DispatchProxy (net90)"); + } + return _SystemReflectionDispatchProxy; + } + } + + private static PortableExecutableReference? _SystemReflection; + + /// + /// The for System.Reflection.dll + /// + public static PortableExecutableReference SystemReflection + { + get + { + if (_SystemReflection is null) + { + _SystemReflection = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection")).GetReference(filePath: "System.Reflection.dll", display: "System.Reflection (net90)"); + } + return _SystemReflection; + } + } + + private static PortableExecutableReference? _SystemReflectionEmit; + + /// + /// The for System.Reflection.Emit.dll + /// + public static PortableExecutableReference SystemReflectionEmit + { + get + { + if (_SystemReflectionEmit is null) + { + _SystemReflectionEmit = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.Emit")).GetReference(filePath: "System.Reflection.Emit.dll", display: "System.Reflection.Emit (net90)"); + } + return _SystemReflectionEmit; + } + } + + private static PortableExecutableReference? _SystemReflectionEmitILGeneration; + + /// + /// The for System.Reflection.Emit.ILGeneration.dll + /// + public static PortableExecutableReference SystemReflectionEmitILGeneration + { + get + { + if (_SystemReflectionEmitILGeneration is null) + { + _SystemReflectionEmitILGeneration = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.Emit.ILGeneration")).GetReference(filePath: "System.Reflection.Emit.ILGeneration.dll", display: "System.Reflection.Emit.ILGeneration (net90)"); + } + return _SystemReflectionEmitILGeneration; + } + } + + private static PortableExecutableReference? _SystemReflectionEmitLightweight; + + /// + /// The for System.Reflection.Emit.Lightweight.dll + /// + public static PortableExecutableReference SystemReflectionEmitLightweight + { + get + { + if (_SystemReflectionEmitLightweight is null) + { + _SystemReflectionEmitLightweight = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.Emit.Lightweight")).GetReference(filePath: "System.Reflection.Emit.Lightweight.dll", display: "System.Reflection.Emit.Lightweight (net90)"); + } + return _SystemReflectionEmitLightweight; + } + } + + private static PortableExecutableReference? _SystemReflectionExtensions; + + /// + /// The for System.Reflection.Extensions.dll + /// + public static PortableExecutableReference SystemReflectionExtensions + { + get + { + if (_SystemReflectionExtensions is null) + { + _SystemReflectionExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.Extensions")).GetReference(filePath: "System.Reflection.Extensions.dll", display: "System.Reflection.Extensions (net90)"); + } + return _SystemReflectionExtensions; + } + } + + private static PortableExecutableReference? _SystemReflectionMetadata; + + /// + /// The for System.Reflection.Metadata.dll + /// + public static PortableExecutableReference SystemReflectionMetadata + { + get + { + if (_SystemReflectionMetadata is null) + { + _SystemReflectionMetadata = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.Metadata")).GetReference(filePath: "System.Reflection.Metadata.dll", display: "System.Reflection.Metadata (net90)"); + } + return _SystemReflectionMetadata; + } + } + + private static PortableExecutableReference? _SystemReflectionPrimitives; + + /// + /// The for System.Reflection.Primitives.dll + /// + public static PortableExecutableReference SystemReflectionPrimitives + { + get + { + if (_SystemReflectionPrimitives is null) + { + _SystemReflectionPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.Primitives")).GetReference(filePath: "System.Reflection.Primitives.dll", display: "System.Reflection.Primitives (net90)"); + } + return _SystemReflectionPrimitives; + } + } + + private static PortableExecutableReference? _SystemReflectionTypeExtensions; + + /// + /// The for System.Reflection.TypeExtensions.dll + /// + public static PortableExecutableReference SystemReflectionTypeExtensions + { + get + { + if (_SystemReflectionTypeExtensions is null) + { + _SystemReflectionTypeExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Reflection.TypeExtensions")).GetReference(filePath: "System.Reflection.TypeExtensions.dll", display: "System.Reflection.TypeExtensions (net90)"); + } + return _SystemReflectionTypeExtensions; + } + } + + private static PortableExecutableReference? _SystemResourcesReader; + + /// + /// The for System.Resources.Reader.dll + /// + public static PortableExecutableReference SystemResourcesReader + { + get + { + if (_SystemResourcesReader is null) + { + _SystemResourcesReader = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Resources.Reader")).GetReference(filePath: "System.Resources.Reader.dll", display: "System.Resources.Reader (net90)"); + } + return _SystemResourcesReader; + } + } + + private static PortableExecutableReference? _SystemResourcesResourceManager; + + /// + /// The for System.Resources.ResourceManager.dll + /// + public static PortableExecutableReference SystemResourcesResourceManager + { + get + { + if (_SystemResourcesResourceManager is null) + { + _SystemResourcesResourceManager = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Resources.ResourceManager")).GetReference(filePath: "System.Resources.ResourceManager.dll", display: "System.Resources.ResourceManager (net90)"); + } + return _SystemResourcesResourceManager; + } + } + + private static PortableExecutableReference? _SystemResourcesWriter; + + /// + /// The for System.Resources.Writer.dll + /// + public static PortableExecutableReference SystemResourcesWriter + { + get + { + if (_SystemResourcesWriter is null) + { + _SystemResourcesWriter = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Resources.Writer")).GetReference(filePath: "System.Resources.Writer.dll", display: "System.Resources.Writer (net90)"); + } + return _SystemResourcesWriter; + } + } + + private static PortableExecutableReference? _SystemRuntimeCompilerServicesUnsafe; + + /// + /// The for System.Runtime.CompilerServices.Unsafe.dll + /// + public static PortableExecutableReference SystemRuntimeCompilerServicesUnsafe + { + get + { + if (_SystemRuntimeCompilerServicesUnsafe is null) + { + _SystemRuntimeCompilerServicesUnsafe = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.CompilerServices.Unsafe")).GetReference(filePath: "System.Runtime.CompilerServices.Unsafe.dll", display: "System.Runtime.CompilerServices.Unsafe (net90)"); + } + return _SystemRuntimeCompilerServicesUnsafe; + } + } + + private static PortableExecutableReference? _SystemRuntimeCompilerServicesVisualC; + + /// + /// The for System.Runtime.CompilerServices.VisualC.dll + /// + public static PortableExecutableReference SystemRuntimeCompilerServicesVisualC + { + get + { + if (_SystemRuntimeCompilerServicesVisualC is null) + { + _SystemRuntimeCompilerServicesVisualC = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.CompilerServices.VisualC")).GetReference(filePath: "System.Runtime.CompilerServices.VisualC.dll", display: "System.Runtime.CompilerServices.VisualC (net90)"); + } + return _SystemRuntimeCompilerServicesVisualC; + } + } + + private static PortableExecutableReference? _SystemRuntime; + + /// + /// The for System.Runtime.dll + /// + public static PortableExecutableReference SystemRuntime + { + get + { + if (_SystemRuntime is null) + { + _SystemRuntime = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime")).GetReference(filePath: "System.Runtime.dll", display: "System.Runtime (net90)"); + } + return _SystemRuntime; + } + } + + private static PortableExecutableReference? _SystemRuntimeExtensions; + + /// + /// The for System.Runtime.Extensions.dll + /// + public static PortableExecutableReference SystemRuntimeExtensions + { + get + { + if (_SystemRuntimeExtensions is null) + { + _SystemRuntimeExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Extensions")).GetReference(filePath: "System.Runtime.Extensions.dll", display: "System.Runtime.Extensions (net90)"); + } + return _SystemRuntimeExtensions; + } + } + + private static PortableExecutableReference? _SystemRuntimeHandles; + + /// + /// The for System.Runtime.Handles.dll + /// + public static PortableExecutableReference SystemRuntimeHandles + { + get + { + if (_SystemRuntimeHandles is null) + { + _SystemRuntimeHandles = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Handles")).GetReference(filePath: "System.Runtime.Handles.dll", display: "System.Runtime.Handles (net90)"); + } + return _SystemRuntimeHandles; + } + } + + private static PortableExecutableReference? _SystemRuntimeInteropServices; + + /// + /// The for System.Runtime.InteropServices.dll + /// + public static PortableExecutableReference SystemRuntimeInteropServices + { + get + { + if (_SystemRuntimeInteropServices is null) + { + _SystemRuntimeInteropServices = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.InteropServices")).GetReference(filePath: "System.Runtime.InteropServices.dll", display: "System.Runtime.InteropServices (net90)"); + } + return _SystemRuntimeInteropServices; + } + } + + private static PortableExecutableReference? _SystemRuntimeInteropServicesJavaScript; + + /// + /// The for System.Runtime.InteropServices.JavaScript.dll + /// + public static PortableExecutableReference SystemRuntimeInteropServicesJavaScript + { + get + { + if (_SystemRuntimeInteropServicesJavaScript is null) + { + _SystemRuntimeInteropServicesJavaScript = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.InteropServices.JavaScript")).GetReference(filePath: "System.Runtime.InteropServices.JavaScript.dll", display: "System.Runtime.InteropServices.JavaScript (net90)"); + } + return _SystemRuntimeInteropServicesJavaScript; + } + } + + private static PortableExecutableReference? _SystemRuntimeInteropServicesRuntimeInformation; + + /// + /// The for System.Runtime.InteropServices.RuntimeInformation.dll + /// + public static PortableExecutableReference SystemRuntimeInteropServicesRuntimeInformation + { + get + { + if (_SystemRuntimeInteropServicesRuntimeInformation is null) + { + _SystemRuntimeInteropServicesRuntimeInformation = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.InteropServices.RuntimeInformation")).GetReference(filePath: "System.Runtime.InteropServices.RuntimeInformation.dll", display: "System.Runtime.InteropServices.RuntimeInformation (net90)"); + } + return _SystemRuntimeInteropServicesRuntimeInformation; + } + } + + private static PortableExecutableReference? _SystemRuntimeIntrinsics; + + /// + /// The for System.Runtime.Intrinsics.dll + /// + public static PortableExecutableReference SystemRuntimeIntrinsics + { + get + { + if (_SystemRuntimeIntrinsics is null) + { + _SystemRuntimeIntrinsics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Intrinsics")).GetReference(filePath: "System.Runtime.Intrinsics.dll", display: "System.Runtime.Intrinsics (net90)"); + } + return _SystemRuntimeIntrinsics; + } + } + + private static PortableExecutableReference? _SystemRuntimeLoader; + + /// + /// The for System.Runtime.Loader.dll + /// + public static PortableExecutableReference SystemRuntimeLoader + { + get + { + if (_SystemRuntimeLoader is null) + { + _SystemRuntimeLoader = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Loader")).GetReference(filePath: "System.Runtime.Loader.dll", display: "System.Runtime.Loader (net90)"); + } + return _SystemRuntimeLoader; + } + } + + private static PortableExecutableReference? _SystemRuntimeNumerics; + + /// + /// The for System.Runtime.Numerics.dll + /// + public static PortableExecutableReference SystemRuntimeNumerics + { + get + { + if (_SystemRuntimeNumerics is null) + { + _SystemRuntimeNumerics = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Numerics")).GetReference(filePath: "System.Runtime.Numerics.dll", display: "System.Runtime.Numerics (net90)"); + } + return _SystemRuntimeNumerics; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerialization; + + /// + /// The for System.Runtime.Serialization.dll + /// + public static PortableExecutableReference SystemRuntimeSerialization + { + get + { + if (_SystemRuntimeSerialization is null) + { + _SystemRuntimeSerialization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Serialization")).GetReference(filePath: "System.Runtime.Serialization.dll", display: "System.Runtime.Serialization (net90)"); + } + return _SystemRuntimeSerialization; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationFormatters; + + /// + /// The for System.Runtime.Serialization.Formatters.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationFormatters + { + get + { + if (_SystemRuntimeSerializationFormatters is null) + { + _SystemRuntimeSerializationFormatters = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Serialization.Formatters")).GetReference(filePath: "System.Runtime.Serialization.Formatters.dll", display: "System.Runtime.Serialization.Formatters (net90)"); + } + return _SystemRuntimeSerializationFormatters; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationJson; + + /// + /// The for System.Runtime.Serialization.Json.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationJson + { + get + { + if (_SystemRuntimeSerializationJson is null) + { + _SystemRuntimeSerializationJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Serialization.Json")).GetReference(filePath: "System.Runtime.Serialization.Json.dll", display: "System.Runtime.Serialization.Json (net90)"); + } + return _SystemRuntimeSerializationJson; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationPrimitives; + + /// + /// The for System.Runtime.Serialization.Primitives.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationPrimitives + { + get + { + if (_SystemRuntimeSerializationPrimitives is null) + { + _SystemRuntimeSerializationPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Serialization.Primitives")).GetReference(filePath: "System.Runtime.Serialization.Primitives.dll", display: "System.Runtime.Serialization.Primitives (net90)"); + } + return _SystemRuntimeSerializationPrimitives; + } + } + + private static PortableExecutableReference? _SystemRuntimeSerializationXml; + + /// + /// The for System.Runtime.Serialization.Xml.dll + /// + public static PortableExecutableReference SystemRuntimeSerializationXml + { + get + { + if (_SystemRuntimeSerializationXml is null) + { + _SystemRuntimeSerializationXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Runtime.Serialization.Xml")).GetReference(filePath: "System.Runtime.Serialization.Xml.dll", display: "System.Runtime.Serialization.Xml (net90)"); + } + return _SystemRuntimeSerializationXml; + } + } + + private static PortableExecutableReference? _SystemSecurityAccessControl; + + /// + /// The for System.Security.AccessControl.dll + /// + public static PortableExecutableReference SystemSecurityAccessControl + { + get + { + if (_SystemSecurityAccessControl is null) + { + _SystemSecurityAccessControl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.AccessControl")).GetReference(filePath: "System.Security.AccessControl.dll", display: "System.Security.AccessControl (net90)"); + } + return _SystemSecurityAccessControl; + } + } + + private static PortableExecutableReference? _SystemSecurityClaims; + + /// + /// The for System.Security.Claims.dll + /// + public static PortableExecutableReference SystemSecurityClaims + { + get + { + if (_SystemSecurityClaims is null) + { + _SystemSecurityClaims = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Claims")).GetReference(filePath: "System.Security.Claims.dll", display: "System.Security.Claims (net90)"); + } + return _SystemSecurityClaims; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyAlgorithms; + + /// + /// The for System.Security.Cryptography.Algorithms.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyAlgorithms + { + get + { + if (_SystemSecurityCryptographyAlgorithms is null) + { + _SystemSecurityCryptographyAlgorithms = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.Algorithms")).GetReference(filePath: "System.Security.Cryptography.Algorithms.dll", display: "System.Security.Cryptography.Algorithms (net90)"); + } + return _SystemSecurityCryptographyAlgorithms; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyCng; + + /// + /// The for System.Security.Cryptography.Cng.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyCng + { + get + { + if (_SystemSecurityCryptographyCng is null) + { + _SystemSecurityCryptographyCng = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.Cng")).GetReference(filePath: "System.Security.Cryptography.Cng.dll", display: "System.Security.Cryptography.Cng (net90)"); + } + return _SystemSecurityCryptographyCng; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyCsp; + + /// + /// The for System.Security.Cryptography.Csp.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyCsp + { + get + { + if (_SystemSecurityCryptographyCsp is null) + { + _SystemSecurityCryptographyCsp = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.Csp")).GetReference(filePath: "System.Security.Cryptography.Csp.dll", display: "System.Security.Cryptography.Csp (net90)"); + } + return _SystemSecurityCryptographyCsp; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptography; + + /// + /// The for System.Security.Cryptography.dll + /// + public static PortableExecutableReference SystemSecurityCryptography + { + get + { + if (_SystemSecurityCryptography is null) + { + _SystemSecurityCryptography = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography")).GetReference(filePath: "System.Security.Cryptography.dll", display: "System.Security.Cryptography (net90)"); + } + return _SystemSecurityCryptography; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyEncoding; + + /// + /// The for System.Security.Cryptography.Encoding.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyEncoding + { + get + { + if (_SystemSecurityCryptographyEncoding is null) + { + _SystemSecurityCryptographyEncoding = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.Encoding")).GetReference(filePath: "System.Security.Cryptography.Encoding.dll", display: "System.Security.Cryptography.Encoding (net90)"); + } + return _SystemSecurityCryptographyEncoding; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyOpenSsl; + + /// + /// The for System.Security.Cryptography.OpenSsl.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyOpenSsl + { + get + { + if (_SystemSecurityCryptographyOpenSsl is null) + { + _SystemSecurityCryptographyOpenSsl = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.OpenSsl")).GetReference(filePath: "System.Security.Cryptography.OpenSsl.dll", display: "System.Security.Cryptography.OpenSsl (net90)"); + } + return _SystemSecurityCryptographyOpenSsl; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyPrimitives; + + /// + /// The for System.Security.Cryptography.Primitives.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyPrimitives + { + get + { + if (_SystemSecurityCryptographyPrimitives is null) + { + _SystemSecurityCryptographyPrimitives = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.Primitives")).GetReference(filePath: "System.Security.Cryptography.Primitives.dll", display: "System.Security.Cryptography.Primitives (net90)"); + } + return _SystemSecurityCryptographyPrimitives; + } + } + + private static PortableExecutableReference? _SystemSecurityCryptographyX509Certificates; + + /// + /// The for System.Security.Cryptography.X509Certificates.dll + /// + public static PortableExecutableReference SystemSecurityCryptographyX509Certificates + { + get + { + if (_SystemSecurityCryptographyX509Certificates is null) + { + _SystemSecurityCryptographyX509Certificates = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Cryptography.X509Certificates")).GetReference(filePath: "System.Security.Cryptography.X509Certificates.dll", display: "System.Security.Cryptography.X509Certificates (net90)"); + } + return _SystemSecurityCryptographyX509Certificates; + } + } + + private static PortableExecutableReference? _SystemSecurity; + + /// + /// The for System.Security.dll + /// + public static PortableExecutableReference SystemSecurity + { + get + { + if (_SystemSecurity is null) + { + _SystemSecurity = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security")).GetReference(filePath: "System.Security.dll", display: "System.Security (net90)"); + } + return _SystemSecurity; + } + } + + private static PortableExecutableReference? _SystemSecurityPrincipal; + + /// + /// The for System.Security.Principal.dll + /// + public static PortableExecutableReference SystemSecurityPrincipal + { + get + { + if (_SystemSecurityPrincipal is null) + { + _SystemSecurityPrincipal = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Principal")).GetReference(filePath: "System.Security.Principal.dll", display: "System.Security.Principal (net90)"); + } + return _SystemSecurityPrincipal; + } + } + + private static PortableExecutableReference? _SystemSecurityPrincipalWindows; + + /// + /// The for System.Security.Principal.Windows.dll + /// + public static PortableExecutableReference SystemSecurityPrincipalWindows + { + get + { + if (_SystemSecurityPrincipalWindows is null) + { + _SystemSecurityPrincipalWindows = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.Principal.Windows")).GetReference(filePath: "System.Security.Principal.Windows.dll", display: "System.Security.Principal.Windows (net90)"); + } + return _SystemSecurityPrincipalWindows; + } + } + + private static PortableExecutableReference? _SystemSecuritySecureString; + + /// + /// The for System.Security.SecureString.dll + /// + public static PortableExecutableReference SystemSecuritySecureString + { + get + { + if (_SystemSecuritySecureString is null) + { + _SystemSecuritySecureString = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Security.SecureString")).GetReference(filePath: "System.Security.SecureString.dll", display: "System.Security.SecureString (net90)"); + } + return _SystemSecuritySecureString; + } + } + + private static PortableExecutableReference? _SystemServiceModelWeb; + + /// + /// The for System.ServiceModel.Web.dll + /// + public static PortableExecutableReference SystemServiceModelWeb + { + get + { + if (_SystemServiceModelWeb is null) + { + _SystemServiceModelWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ServiceModel.Web")).GetReference(filePath: "System.ServiceModel.Web.dll", display: "System.ServiceModel.Web (net90)"); + } + return _SystemServiceModelWeb; + } + } + + private static PortableExecutableReference? _SystemServiceProcess; + + /// + /// The for System.ServiceProcess.dll + /// + public static PortableExecutableReference SystemServiceProcess + { + get + { + if (_SystemServiceProcess is null) + { + _SystemServiceProcess = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ServiceProcess")).GetReference(filePath: "System.ServiceProcess.dll", display: "System.ServiceProcess (net90)"); + } + return _SystemServiceProcess; + } + } + + private static PortableExecutableReference? _SystemTextEncodingCodePages; + + /// + /// The for System.Text.Encoding.CodePages.dll + /// + public static PortableExecutableReference SystemTextEncodingCodePages + { + get + { + if (_SystemTextEncodingCodePages is null) + { + _SystemTextEncodingCodePages = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Text.Encoding.CodePages")).GetReference(filePath: "System.Text.Encoding.CodePages.dll", display: "System.Text.Encoding.CodePages (net90)"); + } + return _SystemTextEncodingCodePages; + } + } + + private static PortableExecutableReference? _SystemTextEncoding; + + /// + /// The for System.Text.Encoding.dll + /// + public static PortableExecutableReference SystemTextEncoding + { + get + { + if (_SystemTextEncoding is null) + { + _SystemTextEncoding = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Text.Encoding")).GetReference(filePath: "System.Text.Encoding.dll", display: "System.Text.Encoding (net90)"); + } + return _SystemTextEncoding; + } + } + + private static PortableExecutableReference? _SystemTextEncodingExtensions; + + /// + /// The for System.Text.Encoding.Extensions.dll + /// + public static PortableExecutableReference SystemTextEncodingExtensions + { + get + { + if (_SystemTextEncodingExtensions is null) + { + _SystemTextEncodingExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Text.Encoding.Extensions")).GetReference(filePath: "System.Text.Encoding.Extensions.dll", display: "System.Text.Encoding.Extensions (net90)"); + } + return _SystemTextEncodingExtensions; + } + } + + private static PortableExecutableReference? _SystemTextEncodingsWeb; + + /// + /// The for System.Text.Encodings.Web.dll + /// + public static PortableExecutableReference SystemTextEncodingsWeb + { + get + { + if (_SystemTextEncodingsWeb is null) + { + _SystemTextEncodingsWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Text.Encodings.Web")).GetReference(filePath: "System.Text.Encodings.Web.dll", display: "System.Text.Encodings.Web (net90)"); + } + return _SystemTextEncodingsWeb; + } + } + + private static PortableExecutableReference? _SystemTextJson; + + /// + /// The for System.Text.Json.dll + /// + public static PortableExecutableReference SystemTextJson + { + get + { + if (_SystemTextJson is null) + { + _SystemTextJson = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Text.Json")).GetReference(filePath: "System.Text.Json.dll", display: "System.Text.Json (net90)"); + } + return _SystemTextJson; + } + } + + private static PortableExecutableReference? _SystemTextRegularExpressions; + + /// + /// The for System.Text.RegularExpressions.dll + /// + public static PortableExecutableReference SystemTextRegularExpressions + { + get + { + if (_SystemTextRegularExpressions is null) + { + _SystemTextRegularExpressions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Text.RegularExpressions")).GetReference(filePath: "System.Text.RegularExpressions.dll", display: "System.Text.RegularExpressions (net90)"); + } + return _SystemTextRegularExpressions; + } + } + + private static PortableExecutableReference? _SystemThreadingChannels; + + /// + /// The for System.Threading.Channels.dll + /// + public static PortableExecutableReference SystemThreadingChannels + { + get + { + if (_SystemThreadingChannels is null) + { + _SystemThreadingChannels = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Channels")).GetReference(filePath: "System.Threading.Channels.dll", display: "System.Threading.Channels (net90)"); + } + return _SystemThreadingChannels; + } + } + + private static PortableExecutableReference? _SystemThreading; + + /// + /// The for System.Threading.dll + /// + public static PortableExecutableReference SystemThreading + { + get + { + if (_SystemThreading is null) + { + _SystemThreading = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading")).GetReference(filePath: "System.Threading.dll", display: "System.Threading (net90)"); + } + return _SystemThreading; + } + } + + private static PortableExecutableReference? _SystemThreadingOverlapped; + + /// + /// The for System.Threading.Overlapped.dll + /// + public static PortableExecutableReference SystemThreadingOverlapped + { + get + { + if (_SystemThreadingOverlapped is null) + { + _SystemThreadingOverlapped = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Overlapped")).GetReference(filePath: "System.Threading.Overlapped.dll", display: "System.Threading.Overlapped (net90)"); + } + return _SystemThreadingOverlapped; + } + } + + private static PortableExecutableReference? _SystemThreadingTasksDataflow; + + /// + /// The for System.Threading.Tasks.Dataflow.dll + /// + public static PortableExecutableReference SystemThreadingTasksDataflow + { + get + { + if (_SystemThreadingTasksDataflow is null) + { + _SystemThreadingTasksDataflow = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Tasks.Dataflow")).GetReference(filePath: "System.Threading.Tasks.Dataflow.dll", display: "System.Threading.Tasks.Dataflow (net90)"); + } + return _SystemThreadingTasksDataflow; + } + } + + private static PortableExecutableReference? _SystemThreadingTasks; + + /// + /// The for System.Threading.Tasks.dll + /// + public static PortableExecutableReference SystemThreadingTasks + { + get + { + if (_SystemThreadingTasks is null) + { + _SystemThreadingTasks = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Tasks")).GetReference(filePath: "System.Threading.Tasks.dll", display: "System.Threading.Tasks (net90)"); + } + return _SystemThreadingTasks; + } + } + + private static PortableExecutableReference? _SystemThreadingTasksExtensions; + + /// + /// The for System.Threading.Tasks.Extensions.dll + /// + public static PortableExecutableReference SystemThreadingTasksExtensions + { + get + { + if (_SystemThreadingTasksExtensions is null) + { + _SystemThreadingTasksExtensions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Tasks.Extensions")).GetReference(filePath: "System.Threading.Tasks.Extensions.dll", display: "System.Threading.Tasks.Extensions (net90)"); + } + return _SystemThreadingTasksExtensions; + } + } + + private static PortableExecutableReference? _SystemThreadingTasksParallel; + + /// + /// The for System.Threading.Tasks.Parallel.dll + /// + public static PortableExecutableReference SystemThreadingTasksParallel + { + get + { + if (_SystemThreadingTasksParallel is null) + { + _SystemThreadingTasksParallel = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Tasks.Parallel")).GetReference(filePath: "System.Threading.Tasks.Parallel.dll", display: "System.Threading.Tasks.Parallel (net90)"); + } + return _SystemThreadingTasksParallel; + } + } + + private static PortableExecutableReference? _SystemThreadingThread; + + /// + /// The for System.Threading.Thread.dll + /// + public static PortableExecutableReference SystemThreadingThread + { + get + { + if (_SystemThreadingThread is null) + { + _SystemThreadingThread = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Thread")).GetReference(filePath: "System.Threading.Thread.dll", display: "System.Threading.Thread (net90)"); + } + return _SystemThreadingThread; + } + } + + private static PortableExecutableReference? _SystemThreadingThreadPool; + + /// + /// The for System.Threading.ThreadPool.dll + /// + public static PortableExecutableReference SystemThreadingThreadPool + { + get + { + if (_SystemThreadingThreadPool is null) + { + _SystemThreadingThreadPool = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.ThreadPool")).GetReference(filePath: "System.Threading.ThreadPool.dll", display: "System.Threading.ThreadPool (net90)"); + } + return _SystemThreadingThreadPool; + } + } + + private static PortableExecutableReference? _SystemThreadingTimer; + + /// + /// The for System.Threading.Timer.dll + /// + public static PortableExecutableReference SystemThreadingTimer + { + get + { + if (_SystemThreadingTimer is null) + { + _SystemThreadingTimer = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Threading.Timer")).GetReference(filePath: "System.Threading.Timer.dll", display: "System.Threading.Timer (net90)"); + } + return _SystemThreadingTimer; + } + } + + private static PortableExecutableReference? _SystemTransactions; + + /// + /// The for System.Transactions.dll + /// + public static PortableExecutableReference SystemTransactions + { + get + { + if (_SystemTransactions is null) + { + _SystemTransactions = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Transactions")).GetReference(filePath: "System.Transactions.dll", display: "System.Transactions (net90)"); + } + return _SystemTransactions; + } + } + + private static PortableExecutableReference? _SystemTransactionsLocal; + + /// + /// The for System.Transactions.Local.dll + /// + public static PortableExecutableReference SystemTransactionsLocal + { + get + { + if (_SystemTransactionsLocal is null) + { + _SystemTransactionsLocal = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Transactions.Local")).GetReference(filePath: "System.Transactions.Local.dll", display: "System.Transactions.Local (net90)"); + } + return _SystemTransactionsLocal; + } + } + + private static PortableExecutableReference? _SystemValueTuple; + + /// + /// The for System.ValueTuple.dll + /// + public static PortableExecutableReference SystemValueTuple + { + get + { + if (_SystemValueTuple is null) + { + _SystemValueTuple = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.ValueTuple")).GetReference(filePath: "System.ValueTuple.dll", display: "System.ValueTuple (net90)"); + } + return _SystemValueTuple; + } + } + + private static PortableExecutableReference? _SystemWeb; + + /// + /// The for System.Web.dll + /// + public static PortableExecutableReference SystemWeb + { + get + { + if (_SystemWeb is null) + { + _SystemWeb = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Web")).GetReference(filePath: "System.Web.dll", display: "System.Web (net90)"); + } + return _SystemWeb; + } + } + + private static PortableExecutableReference? _SystemWebHttpUtility; + + /// + /// The for System.Web.HttpUtility.dll + /// + public static PortableExecutableReference SystemWebHttpUtility + { + get + { + if (_SystemWebHttpUtility is null) + { + _SystemWebHttpUtility = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Web.HttpUtility")).GetReference(filePath: "System.Web.HttpUtility.dll", display: "System.Web.HttpUtility (net90)"); + } + return _SystemWebHttpUtility; + } + } + + private static PortableExecutableReference? _SystemWindows; + + /// + /// The for System.Windows.dll + /// + public static PortableExecutableReference SystemWindows + { + get + { + if (_SystemWindows is null) + { + _SystemWindows = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Windows")).GetReference(filePath: "System.Windows.dll", display: "System.Windows (net90)"); + } + return _SystemWindows; + } + } + + private static PortableExecutableReference? _SystemXml; + + /// + /// The for System.Xml.dll + /// + public static PortableExecutableReference SystemXml + { + get + { + if (_SystemXml is null) + { + _SystemXml = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml")).GetReference(filePath: "System.Xml.dll", display: "System.Xml (net90)"); + } + return _SystemXml; + } + } + + private static PortableExecutableReference? _SystemXmlLinq; + + /// + /// The for System.Xml.Linq.dll + /// + public static PortableExecutableReference SystemXmlLinq + { + get + { + if (_SystemXmlLinq is null) + { + _SystemXmlLinq = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.Linq")).GetReference(filePath: "System.Xml.Linq.dll", display: "System.Xml.Linq (net90)"); + } + return _SystemXmlLinq; + } + } + + private static PortableExecutableReference? _SystemXmlReaderWriter; + + /// + /// The for System.Xml.ReaderWriter.dll + /// + public static PortableExecutableReference SystemXmlReaderWriter + { + get + { + if (_SystemXmlReaderWriter is null) + { + _SystemXmlReaderWriter = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.ReaderWriter")).GetReference(filePath: "System.Xml.ReaderWriter.dll", display: "System.Xml.ReaderWriter (net90)"); + } + return _SystemXmlReaderWriter; + } + } + + private static PortableExecutableReference? _SystemXmlSerialization; + + /// + /// The for System.Xml.Serialization.dll + /// + public static PortableExecutableReference SystemXmlSerialization + { + get + { + if (_SystemXmlSerialization is null) + { + _SystemXmlSerialization = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.Serialization")).GetReference(filePath: "System.Xml.Serialization.dll", display: "System.Xml.Serialization (net90)"); + } + return _SystemXmlSerialization; + } + } + + private static PortableExecutableReference? _SystemXmlXDocument; + + /// + /// The for System.Xml.XDocument.dll + /// + public static PortableExecutableReference SystemXmlXDocument + { + get + { + if (_SystemXmlXDocument is null) + { + _SystemXmlXDocument = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.XDocument")).GetReference(filePath: "System.Xml.XDocument.dll", display: "System.Xml.XDocument (net90)"); + } + return _SystemXmlXDocument; + } + } + + private static PortableExecutableReference? _SystemXmlXmlDocument; + + /// + /// The for System.Xml.XmlDocument.dll + /// + public static PortableExecutableReference SystemXmlXmlDocument + { + get + { + if (_SystemXmlXmlDocument is null) + { + _SystemXmlXmlDocument = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.XmlDocument")).GetReference(filePath: "System.Xml.XmlDocument.dll", display: "System.Xml.XmlDocument (net90)"); + } + return _SystemXmlXmlDocument; + } + } + + private static PortableExecutableReference? _SystemXmlXmlSerializer; + + /// + /// The for System.Xml.XmlSerializer.dll + /// + public static PortableExecutableReference SystemXmlXmlSerializer + { + get + { + if (_SystemXmlXmlSerializer is null) + { + _SystemXmlXmlSerializer = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.XmlSerializer")).GetReference(filePath: "System.Xml.XmlSerializer.dll", display: "System.Xml.XmlSerializer (net90)"); + } + return _SystemXmlXmlSerializer; + } + } + + private static PortableExecutableReference? _SystemXmlXPath; + + /// + /// The for System.Xml.XPath.dll + /// + public static PortableExecutableReference SystemXmlXPath + { + get + { + if (_SystemXmlXPath is null) + { + _SystemXmlXPath = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.XPath")).GetReference(filePath: "System.Xml.XPath.dll", display: "System.Xml.XPath (net90)"); + } + return _SystemXmlXPath; + } + } + + private static PortableExecutableReference? _SystemXmlXPathXDocument; + + /// + /// The for System.Xml.XPath.XDocument.dll + /// + public static PortableExecutableReference SystemXmlXPathXDocument + { + get + { + if (_SystemXmlXPathXDocument is null) + { + _SystemXmlXPathXDocument = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.System.Xml.XPath.XDocument")).GetReference(filePath: "System.Xml.XPath.XDocument.dll", display: "System.Xml.XPath.XDocument (net90)"); + } + return _SystemXmlXPathXDocument; + } + } + + private static PortableExecutableReference? _WindowsBase; + + /// + /// The for WindowsBase.dll + /// + public static PortableExecutableReference WindowsBase + { + get + { + if (_WindowsBase is null) + { + _WindowsBase = AssemblyMetadata.CreateFromImage(ResourceLoader.GetResourceBlobAsImmutable("net90.WindowsBase")).GetReference(filePath: "WindowsBase.dll", display: "WindowsBase (net90)"); + } + return _WindowsBase; + } + } + + private static ImmutableArray _all; + public static ImmutableArray All + { + get + { + if (_all.IsDefault) + { + _all = + [ + MicrosoftCSharp, + MicrosoftVisualBasicCore, + MicrosoftVisualBasic, + MicrosoftWin32Primitives, + MicrosoftWin32Registry, + mscorlib, + netstandard, + SystemAppContext, + SystemBuffers, + SystemCollectionsConcurrent, + SystemCollections, + SystemCollectionsImmutable, + SystemCollectionsNonGeneric, + SystemCollectionsSpecialized, + SystemComponentModelAnnotations, + SystemComponentModelDataAnnotations, + SystemComponentModel, + SystemComponentModelEventBasedAsync, + SystemComponentModelPrimitives, + SystemComponentModelTypeConverter, + SystemConfiguration, + SystemConsole, + SystemCore, + SystemDataCommon, + SystemDataDataSetExtensions, + SystemData, + SystemDiagnosticsContracts, + SystemDiagnosticsDebug, + SystemDiagnosticsDiagnosticSource, + SystemDiagnosticsFileVersionInfo, + SystemDiagnosticsProcess, + SystemDiagnosticsStackTrace, + SystemDiagnosticsTextWriterTraceListener, + SystemDiagnosticsTools, + SystemDiagnosticsTraceSource, + SystemDiagnosticsTracing, + System, + SystemDrawing, + SystemDrawingPrimitives, + SystemDynamicRuntime, + SystemFormatsAsn1, + SystemFormatsTar, + SystemGlobalizationCalendars, + SystemGlobalization, + SystemGlobalizationExtensions, + SystemIOCompressionBrotli, + SystemIOCompression, + SystemIOCompressionFileSystem, + SystemIOCompressionZipFile, + SystemIO, + SystemIOFileSystemAccessControl, + SystemIOFileSystem, + SystemIOFileSystemDriveInfo, + SystemIOFileSystemPrimitives, + SystemIOFileSystemWatcher, + SystemIOIsolatedStorage, + SystemIOMemoryMappedFiles, + SystemIOPipelines, + SystemIOPipesAccessControl, + SystemIOPipes, + SystemIOUnmanagedMemoryStream, + SystemLinq, + SystemLinqExpressions, + SystemLinqParallel, + SystemLinqQueryable, + SystemMemory, + SystemNet, + SystemNetHttp, + SystemNetHttpJson, + SystemNetHttpListener, + SystemNetMail, + SystemNetNameResolution, + SystemNetNetworkInformation, + SystemNetPing, + SystemNetPrimitives, + SystemNetQuic, + SystemNetRequests, + SystemNetSecurity, + SystemNetServicePoint, + SystemNetSockets, + SystemNetWebClient, + SystemNetWebHeaderCollection, + SystemNetWebProxy, + SystemNetWebSocketsClient, + SystemNetWebSockets, + SystemNumerics, + SystemNumericsVectors, + SystemObjectModel, + SystemReflectionDispatchProxy, + SystemReflection, + SystemReflectionEmit, + SystemReflectionEmitILGeneration, + SystemReflectionEmitLightweight, + SystemReflectionExtensions, + SystemReflectionMetadata, + SystemReflectionPrimitives, + SystemReflectionTypeExtensions, + SystemResourcesReader, + SystemResourcesResourceManager, + SystemResourcesWriter, + SystemRuntimeCompilerServicesUnsafe, + SystemRuntimeCompilerServicesVisualC, + SystemRuntime, + SystemRuntimeExtensions, + SystemRuntimeHandles, + SystemRuntimeInteropServices, + SystemRuntimeInteropServicesJavaScript, + SystemRuntimeInteropServicesRuntimeInformation, + SystemRuntimeIntrinsics, + SystemRuntimeLoader, + SystemRuntimeNumerics, + SystemRuntimeSerialization, + SystemRuntimeSerializationFormatters, + SystemRuntimeSerializationJson, + SystemRuntimeSerializationPrimitives, + SystemRuntimeSerializationXml, + SystemSecurityAccessControl, + SystemSecurityClaims, + SystemSecurityCryptographyAlgorithms, + SystemSecurityCryptographyCng, + SystemSecurityCryptographyCsp, + SystemSecurityCryptography, + SystemSecurityCryptographyEncoding, + SystemSecurityCryptographyOpenSsl, + SystemSecurityCryptographyPrimitives, + SystemSecurityCryptographyX509Certificates, + SystemSecurity, + SystemSecurityPrincipal, + SystemSecurityPrincipalWindows, + SystemSecuritySecureString, + SystemServiceModelWeb, + SystemServiceProcess, + SystemTextEncodingCodePages, + SystemTextEncoding, + SystemTextEncodingExtensions, + SystemTextEncodingsWeb, + SystemTextJson, + SystemTextRegularExpressions, + SystemThreadingChannels, + SystemThreading, + SystemThreadingOverlapped, + SystemThreadingTasksDataflow, + SystemThreadingTasks, + SystemThreadingTasksExtensions, + SystemThreadingTasksParallel, + SystemThreadingThread, + SystemThreadingThreadPool, + SystemThreadingTimer, + SystemTransactions, + SystemTransactionsLocal, + SystemValueTuple, + SystemWeb, + SystemWebHttpUtility, + SystemWindows, + SystemXml, + SystemXmlLinq, + SystemXmlReaderWriter, + SystemXmlSerialization, + SystemXmlXDocument, + SystemXmlXmlDocument, + SystemXmlXmlSerializer, + SystemXmlXPath, + SystemXmlXPathXDocument, + WindowsBase, + ]; + } + return _all; + } + } + } +} + +public static partial class Net90 +{ + public static class Resources + { + /// + /// The image bytes for Microsoft.CSharp.dll + /// + public static byte[] MicrosoftCSharp => ResourceLoader.GetOrCreateResource(ref _MicrosoftCSharp, "net90.Microsoft.CSharp"); + private static byte[]? _MicrosoftCSharp; + + /// + /// The image bytes for Microsoft.VisualBasic.Core.dll + /// + public static byte[] MicrosoftVisualBasicCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasicCore, "net90.Microsoft.VisualBasic.Core"); + private static byte[]? _MicrosoftVisualBasicCore; + + /// + /// The image bytes for Microsoft.VisualBasic.dll + /// + public static byte[] MicrosoftVisualBasic => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasic, "net90.Microsoft.VisualBasic"); + private static byte[]? _MicrosoftVisualBasic; + + /// + /// The image bytes for Microsoft.Win32.Primitives.dll + /// + public static byte[] MicrosoftWin32Primitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Primitives, "net90.Microsoft.Win32.Primitives"); + private static byte[]? _MicrosoftWin32Primitives; + + /// + /// The image bytes for Microsoft.Win32.Registry.dll + /// + public static byte[] MicrosoftWin32Registry => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Registry, "net90.Microsoft.Win32.Registry"); + private static byte[]? _MicrosoftWin32Registry; + + /// + /// The image bytes for mscorlib.dll + /// + public static byte[] mscorlib => ResourceLoader.GetOrCreateResource(ref _mscorlib, "net90.mscorlib"); + private static byte[]? _mscorlib; + + /// + /// The image bytes for netstandard.dll + /// + public static byte[] netstandard => ResourceLoader.GetOrCreateResource(ref _netstandard, "net90.netstandard"); + private static byte[]? _netstandard; + + /// + /// The image bytes for System.AppContext.dll + /// + public static byte[] SystemAppContext => ResourceLoader.GetOrCreateResource(ref _SystemAppContext, "net90.System.AppContext"); + private static byte[]? _SystemAppContext; + + /// + /// The image bytes for System.Buffers.dll + /// + public static byte[] SystemBuffers => ResourceLoader.GetOrCreateResource(ref _SystemBuffers, "net90.System.Buffers"); + private static byte[]? _SystemBuffers; + + /// + /// The image bytes for System.Collections.Concurrent.dll + /// + public static byte[] SystemCollectionsConcurrent => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsConcurrent, "net90.System.Collections.Concurrent"); + private static byte[]? _SystemCollectionsConcurrent; + + /// + /// The image bytes for System.Collections.dll + /// + public static byte[] SystemCollections => ResourceLoader.GetOrCreateResource(ref _SystemCollections, "net90.System.Collections"); + private static byte[]? _SystemCollections; + + /// + /// The image bytes for System.Collections.Immutable.dll + /// + public static byte[] SystemCollectionsImmutable => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsImmutable, "net90.System.Collections.Immutable"); + private static byte[]? _SystemCollectionsImmutable; + + /// + /// The image bytes for System.Collections.NonGeneric.dll + /// + public static byte[] SystemCollectionsNonGeneric => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsNonGeneric, "net90.System.Collections.NonGeneric"); + private static byte[]? _SystemCollectionsNonGeneric; + + /// + /// The image bytes for System.Collections.Specialized.dll + /// + public static byte[] SystemCollectionsSpecialized => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsSpecialized, "net90.System.Collections.Specialized"); + private static byte[]? _SystemCollectionsSpecialized; + + /// + /// The image bytes for System.ComponentModel.Annotations.dll + /// + public static byte[] SystemComponentModelAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelAnnotations, "net90.System.ComponentModel.Annotations"); + private static byte[]? _SystemComponentModelAnnotations; + + /// + /// The image bytes for System.ComponentModel.DataAnnotations.dll + /// + public static byte[] SystemComponentModelDataAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelDataAnnotations, "net90.System.ComponentModel.DataAnnotations"); + private static byte[]? _SystemComponentModelDataAnnotations; + + /// + /// The image bytes for System.ComponentModel.dll + /// + public static byte[] SystemComponentModel => ResourceLoader.GetOrCreateResource(ref _SystemComponentModel, "net90.System.ComponentModel"); + private static byte[]? _SystemComponentModel; + + /// + /// The image bytes for System.ComponentModel.EventBasedAsync.dll + /// + public static byte[] SystemComponentModelEventBasedAsync => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelEventBasedAsync, "net90.System.ComponentModel.EventBasedAsync"); + private static byte[]? _SystemComponentModelEventBasedAsync; + + /// + /// The image bytes for System.ComponentModel.Primitives.dll + /// + public static byte[] SystemComponentModelPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelPrimitives, "net90.System.ComponentModel.Primitives"); + private static byte[]? _SystemComponentModelPrimitives; + + /// + /// The image bytes for System.ComponentModel.TypeConverter.dll + /// + public static byte[] SystemComponentModelTypeConverter => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelTypeConverter, "net90.System.ComponentModel.TypeConverter"); + private static byte[]? _SystemComponentModelTypeConverter; + + /// + /// The image bytes for System.Configuration.dll + /// + public static byte[] SystemConfiguration => ResourceLoader.GetOrCreateResource(ref _SystemConfiguration, "net90.System.Configuration"); + private static byte[]? _SystemConfiguration; + + /// + /// The image bytes for System.Console.dll + /// + public static byte[] SystemConsole => ResourceLoader.GetOrCreateResource(ref _SystemConsole, "net90.System.Console"); + private static byte[]? _SystemConsole; + + /// + /// The image bytes for System.Core.dll + /// + public static byte[] SystemCore => ResourceLoader.GetOrCreateResource(ref _SystemCore, "net90.System.Core"); + private static byte[]? _SystemCore; + + /// + /// The image bytes for System.Data.Common.dll + /// + public static byte[] SystemDataCommon => ResourceLoader.GetOrCreateResource(ref _SystemDataCommon, "net90.System.Data.Common"); + private static byte[]? _SystemDataCommon; + + /// + /// The image bytes for System.Data.DataSetExtensions.dll + /// + public static byte[] SystemDataDataSetExtensions => ResourceLoader.GetOrCreateResource(ref _SystemDataDataSetExtensions, "net90.System.Data.DataSetExtensions"); + private static byte[]? _SystemDataDataSetExtensions; + + /// + /// The image bytes for System.Data.dll + /// + public static byte[] SystemData => ResourceLoader.GetOrCreateResource(ref _SystemData, "net90.System.Data"); + private static byte[]? _SystemData; + + /// + /// The image bytes for System.Diagnostics.Contracts.dll + /// + public static byte[] SystemDiagnosticsContracts => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsContracts, "net90.System.Diagnostics.Contracts"); + private static byte[]? _SystemDiagnosticsContracts; + + /// + /// The image bytes for System.Diagnostics.Debug.dll + /// + public static byte[] SystemDiagnosticsDebug => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDebug, "net90.System.Diagnostics.Debug"); + private static byte[]? _SystemDiagnosticsDebug; + + /// + /// The image bytes for System.Diagnostics.DiagnosticSource.dll + /// + public static byte[] SystemDiagnosticsDiagnosticSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDiagnosticSource, "net90.System.Diagnostics.DiagnosticSource"); + private static byte[]? _SystemDiagnosticsDiagnosticSource; + + /// + /// The image bytes for System.Diagnostics.FileVersionInfo.dll + /// + public static byte[] SystemDiagnosticsFileVersionInfo => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsFileVersionInfo, "net90.System.Diagnostics.FileVersionInfo"); + private static byte[]? _SystemDiagnosticsFileVersionInfo; + + /// + /// The image bytes for System.Diagnostics.Process.dll + /// + public static byte[] SystemDiagnosticsProcess => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsProcess, "net90.System.Diagnostics.Process"); + private static byte[]? _SystemDiagnosticsProcess; + + /// + /// The image bytes for System.Diagnostics.StackTrace.dll + /// + public static byte[] SystemDiagnosticsStackTrace => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsStackTrace, "net90.System.Diagnostics.StackTrace"); + private static byte[]? _SystemDiagnosticsStackTrace; + + /// + /// The image bytes for System.Diagnostics.TextWriterTraceListener.dll + /// + public static byte[] SystemDiagnosticsTextWriterTraceListener => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTextWriterTraceListener, "net90.System.Diagnostics.TextWriterTraceListener"); + private static byte[]? _SystemDiagnosticsTextWriterTraceListener; + + /// + /// The image bytes for System.Diagnostics.Tools.dll + /// + public static byte[] SystemDiagnosticsTools => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTools, "net90.System.Diagnostics.Tools"); + private static byte[]? _SystemDiagnosticsTools; + + /// + /// The image bytes for System.Diagnostics.TraceSource.dll + /// + public static byte[] SystemDiagnosticsTraceSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTraceSource, "net90.System.Diagnostics.TraceSource"); + private static byte[]? _SystemDiagnosticsTraceSource; + + /// + /// The image bytes for System.Diagnostics.Tracing.dll + /// + public static byte[] SystemDiagnosticsTracing => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTracing, "net90.System.Diagnostics.Tracing"); + private static byte[]? _SystemDiagnosticsTracing; + + /// + /// The image bytes for System.dll + /// + public static byte[] System => ResourceLoader.GetOrCreateResource(ref _System, "net90.System"); + private static byte[]? _System; + + /// + /// The image bytes for System.Drawing.dll + /// + public static byte[] SystemDrawing => ResourceLoader.GetOrCreateResource(ref _SystemDrawing, "net90.System.Drawing"); + private static byte[]? _SystemDrawing; + + /// + /// The image bytes for System.Drawing.Primitives.dll + /// + public static byte[] SystemDrawingPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemDrawingPrimitives, "net90.System.Drawing.Primitives"); + private static byte[]? _SystemDrawingPrimitives; + + /// + /// The image bytes for System.Dynamic.Runtime.dll + /// + public static byte[] SystemDynamicRuntime => ResourceLoader.GetOrCreateResource(ref _SystemDynamicRuntime, "net90.System.Dynamic.Runtime"); + private static byte[]? _SystemDynamicRuntime; + + /// + /// The image bytes for System.Formats.Asn1.dll + /// + public static byte[] SystemFormatsAsn1 => ResourceLoader.GetOrCreateResource(ref _SystemFormatsAsn1, "net90.System.Formats.Asn1"); + private static byte[]? _SystemFormatsAsn1; + + /// + /// The image bytes for System.Formats.Tar.dll + /// + public static byte[] SystemFormatsTar => ResourceLoader.GetOrCreateResource(ref _SystemFormatsTar, "net90.System.Formats.Tar"); + private static byte[]? _SystemFormatsTar; + + /// + /// The image bytes for System.Globalization.Calendars.dll + /// + public static byte[] SystemGlobalizationCalendars => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationCalendars, "net90.System.Globalization.Calendars"); + private static byte[]? _SystemGlobalizationCalendars; + + /// + /// The image bytes for System.Globalization.dll + /// + public static byte[] SystemGlobalization => ResourceLoader.GetOrCreateResource(ref _SystemGlobalization, "net90.System.Globalization"); + private static byte[]? _SystemGlobalization; + + /// + /// The image bytes for System.Globalization.Extensions.dll + /// + public static byte[] SystemGlobalizationExtensions => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationExtensions, "net90.System.Globalization.Extensions"); + private static byte[]? _SystemGlobalizationExtensions; + + /// + /// The image bytes for System.IO.Compression.Brotli.dll + /// + public static byte[] SystemIOCompressionBrotli => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionBrotli, "net90.System.IO.Compression.Brotli"); + private static byte[]? _SystemIOCompressionBrotli; + + /// + /// The image bytes for System.IO.Compression.dll + /// + public static byte[] SystemIOCompression => ResourceLoader.GetOrCreateResource(ref _SystemIOCompression, "net90.System.IO.Compression"); + private static byte[]? _SystemIOCompression; + + /// + /// The image bytes for System.IO.Compression.FileSystem.dll + /// + public static byte[] SystemIOCompressionFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionFileSystem, "net90.System.IO.Compression.FileSystem"); + private static byte[]? _SystemIOCompressionFileSystem; + + /// + /// The image bytes for System.IO.Compression.ZipFile.dll + /// + public static byte[] SystemIOCompressionZipFile => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionZipFile, "net90.System.IO.Compression.ZipFile"); + private static byte[]? _SystemIOCompressionZipFile; + + /// + /// The image bytes for System.IO.dll + /// + public static byte[] SystemIO => ResourceLoader.GetOrCreateResource(ref _SystemIO, "net90.System.IO"); + private static byte[]? _SystemIO; + + /// + /// The image bytes for System.IO.FileSystem.AccessControl.dll + /// + public static byte[] SystemIOFileSystemAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemAccessControl, "net90.System.IO.FileSystem.AccessControl"); + private static byte[]? _SystemIOFileSystemAccessControl; + + /// + /// The image bytes for System.IO.FileSystem.dll + /// + public static byte[] SystemIOFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystem, "net90.System.IO.FileSystem"); + private static byte[]? _SystemIOFileSystem; + + /// + /// The image bytes for System.IO.FileSystem.DriveInfo.dll + /// + public static byte[] SystemIOFileSystemDriveInfo => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemDriveInfo, "net90.System.IO.FileSystem.DriveInfo"); + private static byte[]? _SystemIOFileSystemDriveInfo; + + /// + /// The image bytes for System.IO.FileSystem.Primitives.dll + /// + public static byte[] SystemIOFileSystemPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemPrimitives, "net90.System.IO.FileSystem.Primitives"); + private static byte[]? _SystemIOFileSystemPrimitives; + + /// + /// The image bytes for System.IO.FileSystem.Watcher.dll + /// + public static byte[] SystemIOFileSystemWatcher => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemWatcher, "net90.System.IO.FileSystem.Watcher"); + private static byte[]? _SystemIOFileSystemWatcher; + + /// + /// The image bytes for System.IO.IsolatedStorage.dll + /// + public static byte[] SystemIOIsolatedStorage => ResourceLoader.GetOrCreateResource(ref _SystemIOIsolatedStorage, "net90.System.IO.IsolatedStorage"); + private static byte[]? _SystemIOIsolatedStorage; + + /// + /// The image bytes for System.IO.MemoryMappedFiles.dll + /// + public static byte[] SystemIOMemoryMappedFiles => ResourceLoader.GetOrCreateResource(ref _SystemIOMemoryMappedFiles, "net90.System.IO.MemoryMappedFiles"); + private static byte[]? _SystemIOMemoryMappedFiles; + + /// + /// The image bytes for System.IO.Pipelines.dll + /// + public static byte[] SystemIOPipelines => ResourceLoader.GetOrCreateResource(ref _SystemIOPipelines, "net90.System.IO.Pipelines"); + private static byte[]? _SystemIOPipelines; + + /// + /// The image bytes for System.IO.Pipes.AccessControl.dll + /// + public static byte[] SystemIOPipesAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemIOPipesAccessControl, "net90.System.IO.Pipes.AccessControl"); + private static byte[]? _SystemIOPipesAccessControl; + + /// + /// The image bytes for System.IO.Pipes.dll + /// + public static byte[] SystemIOPipes => ResourceLoader.GetOrCreateResource(ref _SystemIOPipes, "net90.System.IO.Pipes"); + private static byte[]? _SystemIOPipes; + + /// + /// The image bytes for System.IO.UnmanagedMemoryStream.dll + /// + public static byte[] SystemIOUnmanagedMemoryStream => ResourceLoader.GetOrCreateResource(ref _SystemIOUnmanagedMemoryStream, "net90.System.IO.UnmanagedMemoryStream"); + private static byte[]? _SystemIOUnmanagedMemoryStream; + + /// + /// The image bytes for System.Linq.dll + /// + public static byte[] SystemLinq => ResourceLoader.GetOrCreateResource(ref _SystemLinq, "net90.System.Linq"); + private static byte[]? _SystemLinq; + + /// + /// The image bytes for System.Linq.Expressions.dll + /// + public static byte[] SystemLinqExpressions => ResourceLoader.GetOrCreateResource(ref _SystemLinqExpressions, "net90.System.Linq.Expressions"); + private static byte[]? _SystemLinqExpressions; + + /// + /// The image bytes for System.Linq.Parallel.dll + /// + public static byte[] SystemLinqParallel => ResourceLoader.GetOrCreateResource(ref _SystemLinqParallel, "net90.System.Linq.Parallel"); + private static byte[]? _SystemLinqParallel; + + /// + /// The image bytes for System.Linq.Queryable.dll + /// + public static byte[] SystemLinqQueryable => ResourceLoader.GetOrCreateResource(ref _SystemLinqQueryable, "net90.System.Linq.Queryable"); + private static byte[]? _SystemLinqQueryable; + + /// + /// The image bytes for System.Memory.dll + /// + public static byte[] SystemMemory => ResourceLoader.GetOrCreateResource(ref _SystemMemory, "net90.System.Memory"); + private static byte[]? _SystemMemory; + + /// + /// The image bytes for System.Net.dll + /// + public static byte[] SystemNet => ResourceLoader.GetOrCreateResource(ref _SystemNet, "net90.System.Net"); + private static byte[]? _SystemNet; + + /// + /// The image bytes for System.Net.Http.dll + /// + public static byte[] SystemNetHttp => ResourceLoader.GetOrCreateResource(ref _SystemNetHttp, "net90.System.Net.Http"); + private static byte[]? _SystemNetHttp; + + /// + /// The image bytes for System.Net.Http.Json.dll + /// + public static byte[] SystemNetHttpJson => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpJson, "net90.System.Net.Http.Json"); + private static byte[]? _SystemNetHttpJson; + + /// + /// The image bytes for System.Net.HttpListener.dll + /// + public static byte[] SystemNetHttpListener => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpListener, "net90.System.Net.HttpListener"); + private static byte[]? _SystemNetHttpListener; + + /// + /// The image bytes for System.Net.Mail.dll + /// + public static byte[] SystemNetMail => ResourceLoader.GetOrCreateResource(ref _SystemNetMail, "net90.System.Net.Mail"); + private static byte[]? _SystemNetMail; + + /// + /// The image bytes for System.Net.NameResolution.dll + /// + public static byte[] SystemNetNameResolution => ResourceLoader.GetOrCreateResource(ref _SystemNetNameResolution, "net90.System.Net.NameResolution"); + private static byte[]? _SystemNetNameResolution; + + /// + /// The image bytes for System.Net.NetworkInformation.dll + /// + public static byte[] SystemNetNetworkInformation => ResourceLoader.GetOrCreateResource(ref _SystemNetNetworkInformation, "net90.System.Net.NetworkInformation"); + private static byte[]? _SystemNetNetworkInformation; + + /// + /// The image bytes for System.Net.Ping.dll + /// + public static byte[] SystemNetPing => ResourceLoader.GetOrCreateResource(ref _SystemNetPing, "net90.System.Net.Ping"); + private static byte[]? _SystemNetPing; + + /// + /// The image bytes for System.Net.Primitives.dll + /// + public static byte[] SystemNetPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemNetPrimitives, "net90.System.Net.Primitives"); + private static byte[]? _SystemNetPrimitives; + + /// + /// The image bytes for System.Net.Quic.dll + /// + public static byte[] SystemNetQuic => ResourceLoader.GetOrCreateResource(ref _SystemNetQuic, "net90.System.Net.Quic"); + private static byte[]? _SystemNetQuic; + + /// + /// The image bytes for System.Net.Requests.dll + /// + public static byte[] SystemNetRequests => ResourceLoader.GetOrCreateResource(ref _SystemNetRequests, "net90.System.Net.Requests"); + private static byte[]? _SystemNetRequests; + + /// + /// The image bytes for System.Net.Security.dll + /// + public static byte[] SystemNetSecurity => ResourceLoader.GetOrCreateResource(ref _SystemNetSecurity, "net90.System.Net.Security"); + private static byte[]? _SystemNetSecurity; + + /// + /// The image bytes for System.Net.ServicePoint.dll + /// + public static byte[] SystemNetServicePoint => ResourceLoader.GetOrCreateResource(ref _SystemNetServicePoint, "net90.System.Net.ServicePoint"); + private static byte[]? _SystemNetServicePoint; + + /// + /// The image bytes for System.Net.Sockets.dll + /// + public static byte[] SystemNetSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetSockets, "net90.System.Net.Sockets"); + private static byte[]? _SystemNetSockets; + + /// + /// The image bytes for System.Net.WebClient.dll + /// + public static byte[] SystemNetWebClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebClient, "net90.System.Net.WebClient"); + private static byte[]? _SystemNetWebClient; + + /// + /// The image bytes for System.Net.WebHeaderCollection.dll + /// + public static byte[] SystemNetWebHeaderCollection => ResourceLoader.GetOrCreateResource(ref _SystemNetWebHeaderCollection, "net90.System.Net.WebHeaderCollection"); + private static byte[]? _SystemNetWebHeaderCollection; + + /// + /// The image bytes for System.Net.WebProxy.dll + /// + public static byte[] SystemNetWebProxy => ResourceLoader.GetOrCreateResource(ref _SystemNetWebProxy, "net90.System.Net.WebProxy"); + private static byte[]? _SystemNetWebProxy; + + /// + /// The image bytes for System.Net.WebSockets.Client.dll + /// + public static byte[] SystemNetWebSocketsClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSocketsClient, "net90.System.Net.WebSockets.Client"); + private static byte[]? _SystemNetWebSocketsClient; + + /// + /// The image bytes for System.Net.WebSockets.dll + /// + public static byte[] SystemNetWebSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSockets, "net90.System.Net.WebSockets"); + private static byte[]? _SystemNetWebSockets; + + /// + /// The image bytes for System.Numerics.dll + /// + public static byte[] SystemNumerics => ResourceLoader.GetOrCreateResource(ref _SystemNumerics, "net90.System.Numerics"); + private static byte[]? _SystemNumerics; + + /// + /// The image bytes for System.Numerics.Vectors.dll + /// + public static byte[] SystemNumericsVectors => ResourceLoader.GetOrCreateResource(ref _SystemNumericsVectors, "net90.System.Numerics.Vectors"); + private static byte[]? _SystemNumericsVectors; + + /// + /// The image bytes for System.ObjectModel.dll + /// + public static byte[] SystemObjectModel => ResourceLoader.GetOrCreateResource(ref _SystemObjectModel, "net90.System.ObjectModel"); + private static byte[]? _SystemObjectModel; + + /// + /// The image bytes for System.Reflection.DispatchProxy.dll + /// + public static byte[] SystemReflectionDispatchProxy => ResourceLoader.GetOrCreateResource(ref _SystemReflectionDispatchProxy, "net90.System.Reflection.DispatchProxy"); + private static byte[]? _SystemReflectionDispatchProxy; + + /// + /// The image bytes for System.Reflection.dll + /// + public static byte[] SystemReflection => ResourceLoader.GetOrCreateResource(ref _SystemReflection, "net90.System.Reflection"); + private static byte[]? _SystemReflection; + + /// + /// The image bytes for System.Reflection.Emit.dll + /// + public static byte[] SystemReflectionEmit => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmit, "net90.System.Reflection.Emit"); + private static byte[]? _SystemReflectionEmit; + + /// + /// The image bytes for System.Reflection.Emit.ILGeneration.dll + /// + public static byte[] SystemReflectionEmitILGeneration => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitILGeneration, "net90.System.Reflection.Emit.ILGeneration"); + private static byte[]? _SystemReflectionEmitILGeneration; + + /// + /// The image bytes for System.Reflection.Emit.Lightweight.dll + /// + public static byte[] SystemReflectionEmitLightweight => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitLightweight, "net90.System.Reflection.Emit.Lightweight"); + private static byte[]? _SystemReflectionEmitLightweight; + + /// + /// The image bytes for System.Reflection.Extensions.dll + /// + public static byte[] SystemReflectionExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionExtensions, "net90.System.Reflection.Extensions"); + private static byte[]? _SystemReflectionExtensions; + + /// + /// The image bytes for System.Reflection.Metadata.dll + /// + public static byte[] SystemReflectionMetadata => ResourceLoader.GetOrCreateResource(ref _SystemReflectionMetadata, "net90.System.Reflection.Metadata"); + private static byte[]? _SystemReflectionMetadata; + + /// + /// The image bytes for System.Reflection.Primitives.dll + /// + public static byte[] SystemReflectionPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemReflectionPrimitives, "net90.System.Reflection.Primitives"); + private static byte[]? _SystemReflectionPrimitives; + + /// + /// The image bytes for System.Reflection.TypeExtensions.dll + /// + public static byte[] SystemReflectionTypeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionTypeExtensions, "net90.System.Reflection.TypeExtensions"); + private static byte[]? _SystemReflectionTypeExtensions; + + /// + /// The image bytes for System.Resources.Reader.dll + /// + public static byte[] SystemResourcesReader => ResourceLoader.GetOrCreateResource(ref _SystemResourcesReader, "net90.System.Resources.Reader"); + private static byte[]? _SystemResourcesReader; + + /// + /// The image bytes for System.Resources.ResourceManager.dll + /// + public static byte[] SystemResourcesResourceManager => ResourceLoader.GetOrCreateResource(ref _SystemResourcesResourceManager, "net90.System.Resources.ResourceManager"); + private static byte[]? _SystemResourcesResourceManager; + + /// + /// The image bytes for System.Resources.Writer.dll + /// + public static byte[] SystemResourcesWriter => ResourceLoader.GetOrCreateResource(ref _SystemResourcesWriter, "net90.System.Resources.Writer"); + private static byte[]? _SystemResourcesWriter; + + /// + /// The image bytes for System.Runtime.CompilerServices.Unsafe.dll + /// + public static byte[] SystemRuntimeCompilerServicesUnsafe => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesUnsafe, "net90.System.Runtime.CompilerServices.Unsafe"); + private static byte[]? _SystemRuntimeCompilerServicesUnsafe; + + /// + /// The image bytes for System.Runtime.CompilerServices.VisualC.dll + /// + public static byte[] SystemRuntimeCompilerServicesVisualC => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesVisualC, "net90.System.Runtime.CompilerServices.VisualC"); + private static byte[]? _SystemRuntimeCompilerServicesVisualC; + + /// + /// The image bytes for System.Runtime.dll + /// + public static byte[] SystemRuntime => ResourceLoader.GetOrCreateResource(ref _SystemRuntime, "net90.System.Runtime"); + private static byte[]? _SystemRuntime; + + /// + /// The image bytes for System.Runtime.Extensions.dll + /// + public static byte[] SystemRuntimeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeExtensions, "net90.System.Runtime.Extensions"); + private static byte[]? _SystemRuntimeExtensions; + + /// + /// The image bytes for System.Runtime.Handles.dll + /// + public static byte[] SystemRuntimeHandles => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeHandles, "net90.System.Runtime.Handles"); + private static byte[]? _SystemRuntimeHandles; + + /// + /// The image bytes for System.Runtime.InteropServices.dll + /// + public static byte[] SystemRuntimeInteropServices => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServices, "net90.System.Runtime.InteropServices"); + private static byte[]? _SystemRuntimeInteropServices; + + /// + /// The image bytes for System.Runtime.InteropServices.JavaScript.dll + /// + public static byte[] SystemRuntimeInteropServicesJavaScript => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServicesJavaScript, "net90.System.Runtime.InteropServices.JavaScript"); + private static byte[]? _SystemRuntimeInteropServicesJavaScript; + + /// + /// The image bytes for System.Runtime.InteropServices.RuntimeInformation.dll + /// + public static byte[] SystemRuntimeInteropServicesRuntimeInformation => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServicesRuntimeInformation, "net90.System.Runtime.InteropServices.RuntimeInformation"); + private static byte[]? _SystemRuntimeInteropServicesRuntimeInformation; + + /// + /// The image bytes for System.Runtime.Intrinsics.dll + /// + public static byte[] SystemRuntimeIntrinsics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeIntrinsics, "net90.System.Runtime.Intrinsics"); + private static byte[]? _SystemRuntimeIntrinsics; + + /// + /// The image bytes for System.Runtime.Loader.dll + /// + public static byte[] SystemRuntimeLoader => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeLoader, "net90.System.Runtime.Loader"); + private static byte[]? _SystemRuntimeLoader; + + /// + /// The image bytes for System.Runtime.Numerics.dll + /// + public static byte[] SystemRuntimeNumerics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeNumerics, "net90.System.Runtime.Numerics"); + private static byte[]? _SystemRuntimeNumerics; + + /// + /// The image bytes for System.Runtime.Serialization.dll + /// + public static byte[] SystemRuntimeSerialization => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerialization, "net90.System.Runtime.Serialization"); + private static byte[]? _SystemRuntimeSerialization; + + /// + /// The image bytes for System.Runtime.Serialization.Formatters.dll + /// + public static byte[] SystemRuntimeSerializationFormatters => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationFormatters, "net90.System.Runtime.Serialization.Formatters"); + private static byte[]? _SystemRuntimeSerializationFormatters; + + /// + /// The image bytes for System.Runtime.Serialization.Json.dll + /// + public static byte[] SystemRuntimeSerializationJson => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationJson, "net90.System.Runtime.Serialization.Json"); + private static byte[]? _SystemRuntimeSerializationJson; + + /// + /// The image bytes for System.Runtime.Serialization.Primitives.dll + /// + public static byte[] SystemRuntimeSerializationPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationPrimitives, "net90.System.Runtime.Serialization.Primitives"); + private static byte[]? _SystemRuntimeSerializationPrimitives; + + /// + /// The image bytes for System.Runtime.Serialization.Xml.dll + /// + public static byte[] SystemRuntimeSerializationXml => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationXml, "net90.System.Runtime.Serialization.Xml"); + private static byte[]? _SystemRuntimeSerializationXml; + + /// + /// The image bytes for System.Security.AccessControl.dll + /// + public static byte[] SystemSecurityAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemSecurityAccessControl, "net90.System.Security.AccessControl"); + private static byte[]? _SystemSecurityAccessControl; + + /// + /// The image bytes for System.Security.Claims.dll + /// + public static byte[] SystemSecurityClaims => ResourceLoader.GetOrCreateResource(ref _SystemSecurityClaims, "net90.System.Security.Claims"); + private static byte[]? _SystemSecurityClaims; + + /// + /// The image bytes for System.Security.Cryptography.Algorithms.dll + /// + public static byte[] SystemSecurityCryptographyAlgorithms => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyAlgorithms, "net90.System.Security.Cryptography.Algorithms"); + private static byte[]? _SystemSecurityCryptographyAlgorithms; + + /// + /// The image bytes for System.Security.Cryptography.Cng.dll + /// + public static byte[] SystemSecurityCryptographyCng => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCng, "net90.System.Security.Cryptography.Cng"); + private static byte[]? _SystemSecurityCryptographyCng; + + /// + /// The image bytes for System.Security.Cryptography.Csp.dll + /// + public static byte[] SystemSecurityCryptographyCsp => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCsp, "net90.System.Security.Cryptography.Csp"); + private static byte[]? _SystemSecurityCryptographyCsp; + + /// + /// The image bytes for System.Security.Cryptography.dll + /// + public static byte[] SystemSecurityCryptography => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptography, "net90.System.Security.Cryptography"); + private static byte[]? _SystemSecurityCryptography; + + /// + /// The image bytes for System.Security.Cryptography.Encoding.dll + /// + public static byte[] SystemSecurityCryptographyEncoding => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyEncoding, "net90.System.Security.Cryptography.Encoding"); + private static byte[]? _SystemSecurityCryptographyEncoding; + + /// + /// The image bytes for System.Security.Cryptography.OpenSsl.dll + /// + public static byte[] SystemSecurityCryptographyOpenSsl => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyOpenSsl, "net90.System.Security.Cryptography.OpenSsl"); + private static byte[]? _SystemSecurityCryptographyOpenSsl; + + /// + /// The image bytes for System.Security.Cryptography.Primitives.dll + /// + public static byte[] SystemSecurityCryptographyPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyPrimitives, "net90.System.Security.Cryptography.Primitives"); + private static byte[]? _SystemSecurityCryptographyPrimitives; + + /// + /// The image bytes for System.Security.Cryptography.X509Certificates.dll + /// + public static byte[] SystemSecurityCryptographyX509Certificates => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyX509Certificates, "net90.System.Security.Cryptography.X509Certificates"); + private static byte[]? _SystemSecurityCryptographyX509Certificates; + + /// + /// The image bytes for System.Security.dll + /// + public static byte[] SystemSecurity => ResourceLoader.GetOrCreateResource(ref _SystemSecurity, "net90.System.Security"); + private static byte[]? _SystemSecurity; + + /// + /// The image bytes for System.Security.Principal.dll + /// + public static byte[] SystemSecurityPrincipal => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipal, "net90.System.Security.Principal"); + private static byte[]? _SystemSecurityPrincipal; + + /// + /// The image bytes for System.Security.Principal.Windows.dll + /// + public static byte[] SystemSecurityPrincipalWindows => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipalWindows, "net90.System.Security.Principal.Windows"); + private static byte[]? _SystemSecurityPrincipalWindows; + + /// + /// The image bytes for System.Security.SecureString.dll + /// + public static byte[] SystemSecuritySecureString => ResourceLoader.GetOrCreateResource(ref _SystemSecuritySecureString, "net90.System.Security.SecureString"); + private static byte[]? _SystemSecuritySecureString; + + /// + /// The image bytes for System.ServiceModel.Web.dll + /// + public static byte[] SystemServiceModelWeb => ResourceLoader.GetOrCreateResource(ref _SystemServiceModelWeb, "net90.System.ServiceModel.Web"); + private static byte[]? _SystemServiceModelWeb; + + /// + /// The image bytes for System.ServiceProcess.dll + /// + public static byte[] SystemServiceProcess => ResourceLoader.GetOrCreateResource(ref _SystemServiceProcess, "net90.System.ServiceProcess"); + private static byte[]? _SystemServiceProcess; + + /// + /// The image bytes for System.Text.Encoding.CodePages.dll + /// + public static byte[] SystemTextEncodingCodePages => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingCodePages, "net90.System.Text.Encoding.CodePages"); + private static byte[]? _SystemTextEncodingCodePages; + + /// + /// The image bytes for System.Text.Encoding.dll + /// + public static byte[] SystemTextEncoding => ResourceLoader.GetOrCreateResource(ref _SystemTextEncoding, "net90.System.Text.Encoding"); + private static byte[]? _SystemTextEncoding; + + /// + /// The image bytes for System.Text.Encoding.Extensions.dll + /// + public static byte[] SystemTextEncodingExtensions => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingExtensions, "net90.System.Text.Encoding.Extensions"); + private static byte[]? _SystemTextEncodingExtensions; + + /// + /// The image bytes for System.Text.Encodings.Web.dll + /// + public static byte[] SystemTextEncodingsWeb => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingsWeb, "net90.System.Text.Encodings.Web"); + private static byte[]? _SystemTextEncodingsWeb; + + /// + /// The image bytes for System.Text.Json.dll + /// + public static byte[] SystemTextJson => ResourceLoader.GetOrCreateResource(ref _SystemTextJson, "net90.System.Text.Json"); + private static byte[]? _SystemTextJson; + + /// + /// The image bytes for System.Text.RegularExpressions.dll + /// + public static byte[] SystemTextRegularExpressions => ResourceLoader.GetOrCreateResource(ref _SystemTextRegularExpressions, "net90.System.Text.RegularExpressions"); + private static byte[]? _SystemTextRegularExpressions; + + /// + /// The image bytes for System.Threading.Channels.dll + /// + public static byte[] SystemThreadingChannels => ResourceLoader.GetOrCreateResource(ref _SystemThreadingChannels, "net90.System.Threading.Channels"); + private static byte[]? _SystemThreadingChannels; + + /// + /// The image bytes for System.Threading.dll + /// + public static byte[] SystemThreading => ResourceLoader.GetOrCreateResource(ref _SystemThreading, "net90.System.Threading"); + private static byte[]? _SystemThreading; + + /// + /// The image bytes for System.Threading.Overlapped.dll + /// + public static byte[] SystemThreadingOverlapped => ResourceLoader.GetOrCreateResource(ref _SystemThreadingOverlapped, "net90.System.Threading.Overlapped"); + private static byte[]? _SystemThreadingOverlapped; + + /// + /// The image bytes for System.Threading.Tasks.Dataflow.dll + /// + public static byte[] SystemThreadingTasksDataflow => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksDataflow, "net90.System.Threading.Tasks.Dataflow"); + private static byte[]? _SystemThreadingTasksDataflow; + + /// + /// The image bytes for System.Threading.Tasks.dll + /// + public static byte[] SystemThreadingTasks => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasks, "net90.System.Threading.Tasks"); + private static byte[]? _SystemThreadingTasks; + + /// + /// The image bytes for System.Threading.Tasks.Extensions.dll + /// + public static byte[] SystemThreadingTasksExtensions => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksExtensions, "net90.System.Threading.Tasks.Extensions"); + private static byte[]? _SystemThreadingTasksExtensions; + + /// + /// The image bytes for System.Threading.Tasks.Parallel.dll + /// + public static byte[] SystemThreadingTasksParallel => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksParallel, "net90.System.Threading.Tasks.Parallel"); + private static byte[]? _SystemThreadingTasksParallel; + + /// + /// The image bytes for System.Threading.Thread.dll + /// + public static byte[] SystemThreadingThread => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThread, "net90.System.Threading.Thread"); + private static byte[]? _SystemThreadingThread; + + /// + /// The image bytes for System.Threading.ThreadPool.dll + /// + public static byte[] SystemThreadingThreadPool => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThreadPool, "net90.System.Threading.ThreadPool"); + private static byte[]? _SystemThreadingThreadPool; + + /// + /// The image bytes for System.Threading.Timer.dll + /// + public static byte[] SystemThreadingTimer => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTimer, "net90.System.Threading.Timer"); + private static byte[]? _SystemThreadingTimer; + + /// + /// The image bytes for System.Transactions.dll + /// + public static byte[] SystemTransactions => ResourceLoader.GetOrCreateResource(ref _SystemTransactions, "net90.System.Transactions"); + private static byte[]? _SystemTransactions; + + /// + /// The image bytes for System.Transactions.Local.dll + /// + public static byte[] SystemTransactionsLocal => ResourceLoader.GetOrCreateResource(ref _SystemTransactionsLocal, "net90.System.Transactions.Local"); + private static byte[]? _SystemTransactionsLocal; + + /// + /// The image bytes for System.ValueTuple.dll + /// + public static byte[] SystemValueTuple => ResourceLoader.GetOrCreateResource(ref _SystemValueTuple, "net90.System.ValueTuple"); + private static byte[]? _SystemValueTuple; + + /// + /// The image bytes for System.Web.dll + /// + public static byte[] SystemWeb => ResourceLoader.GetOrCreateResource(ref _SystemWeb, "net90.System.Web"); + private static byte[]? _SystemWeb; + + /// + /// The image bytes for System.Web.HttpUtility.dll + /// + public static byte[] SystemWebHttpUtility => ResourceLoader.GetOrCreateResource(ref _SystemWebHttpUtility, "net90.System.Web.HttpUtility"); + private static byte[]? _SystemWebHttpUtility; + + /// + /// The image bytes for System.Windows.dll + /// + public static byte[] SystemWindows => ResourceLoader.GetOrCreateResource(ref _SystemWindows, "net90.System.Windows"); + private static byte[]? _SystemWindows; + + /// + /// The image bytes for System.Xml.dll + /// + public static byte[] SystemXml => ResourceLoader.GetOrCreateResource(ref _SystemXml, "net90.System.Xml"); + private static byte[]? _SystemXml; + + /// + /// The image bytes for System.Xml.Linq.dll + /// + public static byte[] SystemXmlLinq => ResourceLoader.GetOrCreateResource(ref _SystemXmlLinq, "net90.System.Xml.Linq"); + private static byte[]? _SystemXmlLinq; + + /// + /// The image bytes for System.Xml.ReaderWriter.dll + /// + public static byte[] SystemXmlReaderWriter => ResourceLoader.GetOrCreateResource(ref _SystemXmlReaderWriter, "net90.System.Xml.ReaderWriter"); + private static byte[]? _SystemXmlReaderWriter; + + /// + /// The image bytes for System.Xml.Serialization.dll + /// + public static byte[] SystemXmlSerialization => ResourceLoader.GetOrCreateResource(ref _SystemXmlSerialization, "net90.System.Xml.Serialization"); + private static byte[]? _SystemXmlSerialization; + + /// + /// The image bytes for System.Xml.XDocument.dll + /// + public static byte[] SystemXmlXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXDocument, "net90.System.Xml.XDocument"); + private static byte[]? _SystemXmlXDocument; + + /// + /// The image bytes for System.Xml.XmlDocument.dll + /// + public static byte[] SystemXmlXmlDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlDocument, "net90.System.Xml.XmlDocument"); + private static byte[]? _SystemXmlXmlDocument; + + /// + /// The image bytes for System.Xml.XmlSerializer.dll + /// + public static byte[] SystemXmlXmlSerializer => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlSerializer, "net90.System.Xml.XmlSerializer"); + private static byte[]? _SystemXmlXmlSerializer; + + /// + /// The image bytes for System.Xml.XPath.dll + /// + public static byte[] SystemXmlXPath => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPath, "net90.System.Xml.XPath"); + private static byte[]? _SystemXmlXPath; + + /// + /// The image bytes for System.Xml.XPath.XDocument.dll + /// + public static byte[] SystemXmlXPathXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPathXDocument, "net90.System.Xml.XPath.XDocument"); + private static byte[]? _SystemXmlXPathXDocument; + + /// + /// The image bytes for WindowsBase.dll + /// + public static byte[] WindowsBase => ResourceLoader.GetOrCreateResource(ref _WindowsBase, "net90.WindowsBase"); + private static byte[]? _WindowsBase; + + + } +} + +#if !BASIC_REFERENCE_ASSEMBLIES_COMBINED + public static partial class Net90 + { + + /// + /// Contains different properties of a reference that are interesting for use in testing. + /// + public readonly struct ReferenceInfo + { + /// + /// The file name of the reference. + /// + public string FileName { get; } + + /// + /// The image bytes of the reference + /// + public byte[] ImageBytes { get; } + + /// + /// The reference loaded as a + /// + public PortableExecutableReference Reference { get; } + + /// + /// The MVID of this reference + /// + public Guid Mvid { get; } + + public ReferenceInfo(string fileName, byte[] imageBytes, PortableExecutableReference reference, Guid mvid) + { + FileName = fileName; + ImageBytes = imageBytes; + Reference = reference; + Mvid = mvid; + } + + public void Deconstruct(out string fileName, out byte[] imageBytes, out PortableExecutableReference reference, out Guid mvid) + { + fileName = FileName; + imageBytes = ImageBytes; + reference = Reference; + mvid = Mvid; + } + + public (string FileName, byte[] ImageBytes, PortableExecutableReference Reference, Guid Mvid) AsTuple() => + (FileName, ImageBytes, Reference, Mvid); + } + } +#endif diff --git a/Src/Basic.Reference.Assemblies.Net100/Generated.targets b/Src/Basic.Reference.Assemblies.Net100/Generated.targets new file mode 100644 index 0000000..8f6bc9a --- /dev/null +++ b/Src/Basic.Reference.Assemblies.Net100/Generated.targets @@ -0,0 +1,660 @@ + + + + net90.Microsoft.CSharp + Resources\net90\Microsoft.CSharp.dll + + + net90.Microsoft.VisualBasic.Core + Resources\net90\Microsoft.VisualBasic.Core.dll + + + net90.Microsoft.VisualBasic + Resources\net90\Microsoft.VisualBasic.dll + + + net90.Microsoft.Win32.Primitives + Resources\net90\Microsoft.Win32.Primitives.dll + + + net90.Microsoft.Win32.Registry + Resources\net90\Microsoft.Win32.Registry.dll + + + net90.mscorlib + Resources\net90\mscorlib.dll + + + net90.netstandard + Resources\net90\netstandard.dll + + + net90.System.AppContext + Resources\net90\System.AppContext.dll + + + net90.System.Buffers + Resources\net90\System.Buffers.dll + + + net90.System.Collections.Concurrent + Resources\net90\System.Collections.Concurrent.dll + + + net90.System.Collections + Resources\net90\System.Collections.dll + + + net90.System.Collections.Immutable + Resources\net90\System.Collections.Immutable.dll + + + net90.System.Collections.NonGeneric + Resources\net90\System.Collections.NonGeneric.dll + + + net90.System.Collections.Specialized + Resources\net90\System.Collections.Specialized.dll + + + net90.System.ComponentModel.Annotations + Resources\net90\System.ComponentModel.Annotations.dll + + + net90.System.ComponentModel.DataAnnotations + Resources\net90\System.ComponentModel.DataAnnotations.dll + + + net90.System.ComponentModel + Resources\net90\System.ComponentModel.dll + + + net90.System.ComponentModel.EventBasedAsync + Resources\net90\System.ComponentModel.EventBasedAsync.dll + + + net90.System.ComponentModel.Primitives + Resources\net90\System.ComponentModel.Primitives.dll + + + net90.System.ComponentModel.TypeConverter + Resources\net90\System.ComponentModel.TypeConverter.dll + + + net90.System.Configuration + Resources\net90\System.Configuration.dll + + + net90.System.Console + Resources\net90\System.Console.dll + + + net90.System.Core + Resources\net90\System.Core.dll + + + net90.System.Data.Common + Resources\net90\System.Data.Common.dll + + + net90.System.Data.DataSetExtensions + Resources\net90\System.Data.DataSetExtensions.dll + + + net90.System.Data + Resources\net90\System.Data.dll + + + net90.System.Diagnostics.Contracts + Resources\net90\System.Diagnostics.Contracts.dll + + + net90.System.Diagnostics.Debug + Resources\net90\System.Diagnostics.Debug.dll + + + net90.System.Diagnostics.DiagnosticSource + Resources\net90\System.Diagnostics.DiagnosticSource.dll + + + net90.System.Diagnostics.FileVersionInfo + Resources\net90\System.Diagnostics.FileVersionInfo.dll + + + net90.System.Diagnostics.Process + Resources\net90\System.Diagnostics.Process.dll + + + net90.System.Diagnostics.StackTrace + Resources\net90\System.Diagnostics.StackTrace.dll + + + net90.System.Diagnostics.TextWriterTraceListener + Resources\net90\System.Diagnostics.TextWriterTraceListener.dll + + + net90.System.Diagnostics.Tools + Resources\net90\System.Diagnostics.Tools.dll + + + net90.System.Diagnostics.TraceSource + Resources\net90\System.Diagnostics.TraceSource.dll + + + net90.System.Diagnostics.Tracing + Resources\net90\System.Diagnostics.Tracing.dll + + + net90.System + Resources\net90\System.dll + + + net90.System.Drawing + Resources\net90\System.Drawing.dll + + + net90.System.Drawing.Primitives + Resources\net90\System.Drawing.Primitives.dll + + + net90.System.Dynamic.Runtime + Resources\net90\System.Dynamic.Runtime.dll + + + net90.System.Formats.Asn1 + Resources\net90\System.Formats.Asn1.dll + + + net90.System.Formats.Tar + Resources\net90\System.Formats.Tar.dll + + + net90.System.Globalization.Calendars + Resources\net90\System.Globalization.Calendars.dll + + + net90.System.Globalization + Resources\net90\System.Globalization.dll + + + net90.System.Globalization.Extensions + Resources\net90\System.Globalization.Extensions.dll + + + net90.System.IO.Compression.Brotli + Resources\net90\System.IO.Compression.Brotli.dll + + + net90.System.IO.Compression + Resources\net90\System.IO.Compression.dll + + + net90.System.IO.Compression.FileSystem + Resources\net90\System.IO.Compression.FileSystem.dll + + + net90.System.IO.Compression.ZipFile + Resources\net90\System.IO.Compression.ZipFile.dll + + + net90.System.IO + Resources\net90\System.IO.dll + + + net90.System.IO.FileSystem.AccessControl + Resources\net90\System.IO.FileSystem.AccessControl.dll + + + net90.System.IO.FileSystem + Resources\net90\System.IO.FileSystem.dll + + + net90.System.IO.FileSystem.DriveInfo + Resources\net90\System.IO.FileSystem.DriveInfo.dll + + + net90.System.IO.FileSystem.Primitives + Resources\net90\System.IO.FileSystem.Primitives.dll + + + net90.System.IO.FileSystem.Watcher + Resources\net90\System.IO.FileSystem.Watcher.dll + + + net90.System.IO.IsolatedStorage + Resources\net90\System.IO.IsolatedStorage.dll + + + net90.System.IO.MemoryMappedFiles + Resources\net90\System.IO.MemoryMappedFiles.dll + + + net90.System.IO.Pipelines + Resources\net90\System.IO.Pipelines.dll + + + net90.System.IO.Pipes.AccessControl + Resources\net90\System.IO.Pipes.AccessControl.dll + + + net90.System.IO.Pipes + Resources\net90\System.IO.Pipes.dll + + + net90.System.IO.UnmanagedMemoryStream + Resources\net90\System.IO.UnmanagedMemoryStream.dll + + + net90.System.Linq + Resources\net90\System.Linq.dll + + + net90.System.Linq.Expressions + Resources\net90\System.Linq.Expressions.dll + + + net90.System.Linq.Parallel + Resources\net90\System.Linq.Parallel.dll + + + net90.System.Linq.Queryable + Resources\net90\System.Linq.Queryable.dll + + + net90.System.Memory + Resources\net90\System.Memory.dll + + + net90.System.Net + Resources\net90\System.Net.dll + + + net90.System.Net.Http + Resources\net90\System.Net.Http.dll + + + net90.System.Net.Http.Json + Resources\net90\System.Net.Http.Json.dll + + + net90.System.Net.HttpListener + Resources\net90\System.Net.HttpListener.dll + + + net90.System.Net.Mail + Resources\net90\System.Net.Mail.dll + + + net90.System.Net.NameResolution + Resources\net90\System.Net.NameResolution.dll + + + net90.System.Net.NetworkInformation + Resources\net90\System.Net.NetworkInformation.dll + + + net90.System.Net.Ping + Resources\net90\System.Net.Ping.dll + + + net90.System.Net.Primitives + Resources\net90\System.Net.Primitives.dll + + + net90.System.Net.Quic + Resources\net90\System.Net.Quic.dll + + + net90.System.Net.Requests + Resources\net90\System.Net.Requests.dll + + + net90.System.Net.Security + Resources\net90\System.Net.Security.dll + + + net90.System.Net.ServicePoint + Resources\net90\System.Net.ServicePoint.dll + + + net90.System.Net.Sockets + Resources\net90\System.Net.Sockets.dll + + + net90.System.Net.WebClient + Resources\net90\System.Net.WebClient.dll + + + net90.System.Net.WebHeaderCollection + Resources\net90\System.Net.WebHeaderCollection.dll + + + net90.System.Net.WebProxy + Resources\net90\System.Net.WebProxy.dll + + + net90.System.Net.WebSockets.Client + Resources\net90\System.Net.WebSockets.Client.dll + + + net90.System.Net.WebSockets + Resources\net90\System.Net.WebSockets.dll + + + net90.System.Numerics + Resources\net90\System.Numerics.dll + + + net90.System.Numerics.Vectors + Resources\net90\System.Numerics.Vectors.dll + + + net90.System.ObjectModel + Resources\net90\System.ObjectModel.dll + + + net90.System.Reflection.DispatchProxy + Resources\net90\System.Reflection.DispatchProxy.dll + + + net90.System.Reflection + Resources\net90\System.Reflection.dll + + + net90.System.Reflection.Emit + Resources\net90\System.Reflection.Emit.dll + + + net90.System.Reflection.Emit.ILGeneration + Resources\net90\System.Reflection.Emit.ILGeneration.dll + + + net90.System.Reflection.Emit.Lightweight + Resources\net90\System.Reflection.Emit.Lightweight.dll + + + net90.System.Reflection.Extensions + Resources\net90\System.Reflection.Extensions.dll + + + net90.System.Reflection.Metadata + Resources\net90\System.Reflection.Metadata.dll + + + net90.System.Reflection.Primitives + Resources\net90\System.Reflection.Primitives.dll + + + net90.System.Reflection.TypeExtensions + Resources\net90\System.Reflection.TypeExtensions.dll + + + net90.System.Resources.Reader + Resources\net90\System.Resources.Reader.dll + + + net90.System.Resources.ResourceManager + Resources\net90\System.Resources.ResourceManager.dll + + + net90.System.Resources.Writer + Resources\net90\System.Resources.Writer.dll + + + net90.System.Runtime.CompilerServices.Unsafe + Resources\net90\System.Runtime.CompilerServices.Unsafe.dll + + + net90.System.Runtime.CompilerServices.VisualC + Resources\net90\System.Runtime.CompilerServices.VisualC.dll + + + net90.System.Runtime + Resources\net90\System.Runtime.dll + + + net90.System.Runtime.Extensions + Resources\net90\System.Runtime.Extensions.dll + + + net90.System.Runtime.Handles + Resources\net90\System.Runtime.Handles.dll + + + net90.System.Runtime.InteropServices + Resources\net90\System.Runtime.InteropServices.dll + + + net90.System.Runtime.InteropServices.JavaScript + Resources\net90\System.Runtime.InteropServices.JavaScript.dll + + + net90.System.Runtime.InteropServices.RuntimeInformation + Resources\net90\System.Runtime.InteropServices.RuntimeInformation.dll + + + net90.System.Runtime.Intrinsics + Resources\net90\System.Runtime.Intrinsics.dll + + + net90.System.Runtime.Loader + Resources\net90\System.Runtime.Loader.dll + + + net90.System.Runtime.Numerics + Resources\net90\System.Runtime.Numerics.dll + + + net90.System.Runtime.Serialization + Resources\net90\System.Runtime.Serialization.dll + + + net90.System.Runtime.Serialization.Formatters + Resources\net90\System.Runtime.Serialization.Formatters.dll + + + net90.System.Runtime.Serialization.Json + Resources\net90\System.Runtime.Serialization.Json.dll + + + net90.System.Runtime.Serialization.Primitives + Resources\net90\System.Runtime.Serialization.Primitives.dll + + + net90.System.Runtime.Serialization.Xml + Resources\net90\System.Runtime.Serialization.Xml.dll + + + net90.System.Security.AccessControl + Resources\net90\System.Security.AccessControl.dll + + + net90.System.Security.Claims + Resources\net90\System.Security.Claims.dll + + + net90.System.Security.Cryptography.Algorithms + Resources\net90\System.Security.Cryptography.Algorithms.dll + + + net90.System.Security.Cryptography.Cng + Resources\net90\System.Security.Cryptography.Cng.dll + + + net90.System.Security.Cryptography.Csp + Resources\net90\System.Security.Cryptography.Csp.dll + + + net90.System.Security.Cryptography + Resources\net90\System.Security.Cryptography.dll + + + net90.System.Security.Cryptography.Encoding + Resources\net90\System.Security.Cryptography.Encoding.dll + + + net90.System.Security.Cryptography.OpenSsl + Resources\net90\System.Security.Cryptography.OpenSsl.dll + + + net90.System.Security.Cryptography.Primitives + Resources\net90\System.Security.Cryptography.Primitives.dll + + + net90.System.Security.Cryptography.X509Certificates + Resources\net90\System.Security.Cryptography.X509Certificates.dll + + + net90.System.Security + Resources\net90\System.Security.dll + + + net90.System.Security.Principal + Resources\net90\System.Security.Principal.dll + + + net90.System.Security.Principal.Windows + Resources\net90\System.Security.Principal.Windows.dll + + + net90.System.Security.SecureString + Resources\net90\System.Security.SecureString.dll + + + net90.System.ServiceModel.Web + Resources\net90\System.ServiceModel.Web.dll + + + net90.System.ServiceProcess + Resources\net90\System.ServiceProcess.dll + + + net90.System.Text.Encoding.CodePages + Resources\net90\System.Text.Encoding.CodePages.dll + + + net90.System.Text.Encoding + Resources\net90\System.Text.Encoding.dll + + + net90.System.Text.Encoding.Extensions + Resources\net90\System.Text.Encoding.Extensions.dll + + + net90.System.Text.Encodings.Web + Resources\net90\System.Text.Encodings.Web.dll + + + net90.System.Text.Json + Resources\net90\System.Text.Json.dll + + + net90.System.Text.RegularExpressions + Resources\net90\System.Text.RegularExpressions.dll + + + net90.System.Threading.Channels + Resources\net90\System.Threading.Channels.dll + + + net90.System.Threading + Resources\net90\System.Threading.dll + + + net90.System.Threading.Overlapped + Resources\net90\System.Threading.Overlapped.dll + + + net90.System.Threading.Tasks.Dataflow + Resources\net90\System.Threading.Tasks.Dataflow.dll + + + net90.System.Threading.Tasks + Resources\net90\System.Threading.Tasks.dll + + + net90.System.Threading.Tasks.Extensions + Resources\net90\System.Threading.Tasks.Extensions.dll + + + net90.System.Threading.Tasks.Parallel + Resources\net90\System.Threading.Tasks.Parallel.dll + + + net90.System.Threading.Thread + Resources\net90\System.Threading.Thread.dll + + + net90.System.Threading.ThreadPool + Resources\net90\System.Threading.ThreadPool.dll + + + net90.System.Threading.Timer + Resources\net90\System.Threading.Timer.dll + + + net90.System.Transactions + Resources\net90\System.Transactions.dll + + + net90.System.Transactions.Local + Resources\net90\System.Transactions.Local.dll + + + net90.System.ValueTuple + Resources\net90\System.ValueTuple.dll + + + net90.System.Web + Resources\net90\System.Web.dll + + + net90.System.Web.HttpUtility + Resources\net90\System.Web.HttpUtility.dll + + + net90.System.Windows + Resources\net90\System.Windows.dll + + + net90.System.Xml + Resources\net90\System.Xml.dll + + + net90.System.Xml.Linq + Resources\net90\System.Xml.Linq.dll + + + net90.System.Xml.ReaderWriter + Resources\net90\System.Xml.ReaderWriter.dll + + + net90.System.Xml.Serialization + Resources\net90\System.Xml.Serialization.dll + + + net90.System.Xml.XDocument + Resources\net90\System.Xml.XDocument.dll + + + net90.System.Xml.XmlDocument + Resources\net90\System.Xml.XmlDocument.dll + + + net90.System.Xml.XmlSerializer + Resources\net90\System.Xml.XmlSerializer.dll + + + net90.System.Xml.XPath + Resources\net90\System.Xml.XPath.dll + + + net90.System.Xml.XPath.XDocument + Resources\net90\System.Xml.XPath.XDocument.dll + + + net90.WindowsBase + Resources\net90\WindowsBase.dll + + + diff --git a/Src/Generate/Program.cs b/Src/Generate/Program.cs index a3cef6f..d1eb60a 100644 --- a/Src/Generate/Program.cs +++ b/Src/Generate/Program.cs @@ -16,8 +16,10 @@ Net80(); Net80Windows(); Net90(); +Net100(); AspNet80(); AspNet90(); +AspNet100(); NetStandard13(); NetStandard20(); Net20(); @@ -29,7 +31,7 @@ void NetCoreApp31() { - var content = GetGeneratedContent("NetCoreApp31", [@"microsoft.netcore.app.ref\3.1.0\ref\netcoreapp3.1"]); + var content = GetGeneratedContent("NetCoreApp31", [@"microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.NetCoreApp31"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -37,7 +39,7 @@ void NetCoreApp31() void Net50() { - var content = GetGeneratedContent("Net50", [@"microsoft.netcore.app.ref\5.0.0\ref\net5.0"]); + var content = GetGeneratedContent("Net50", [@"microsoft.netcore.app.ref/5.0.0/ref/net5.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net50"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -45,7 +47,7 @@ void Net50() void Net60() { - var content = GetGeneratedContent("Net60", [@"microsoft.netcore.app.ref\6.0.27\ref\net6.0"]); + var content = GetGeneratedContent("Net60", [@"microsoft.netcore.app.ref/6.0.27/ref/net6.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net60"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -53,7 +55,7 @@ void Net60() void Net60Windows() { - var content = GetGeneratedContent("Net60Windows", [@"microsoft.windowsdesktop.app.ref\6.0.27\ref\net6.0"]); + var content = GetGeneratedContent("Net60Windows", [@"microsoft.windowsdesktop.app.ref/6.0.27/ref/net6.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net60Windows"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -61,7 +63,7 @@ void Net60Windows() void Net70() { - var content = GetGeneratedContent("Net70", [@"microsoft.netcore.app.ref\7.0.16\ref\net7.0"]); + var content = GetGeneratedContent("Net70", [@"microsoft.netcore.app.ref/7.0.16/ref/net7.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net70"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -69,7 +71,7 @@ void Net70() void Net80() { - var content = GetGeneratedContent("Net80", [@"microsoft.netcore.app.ref\8.0.3\ref\net8.0"]); + var content = GetGeneratedContent("Net80", [@"microsoft.netcore.app.ref/8.0.3/ref/net8.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net80"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -80,7 +82,7 @@ void Net80() void Net80Windows() { - var content = GetGeneratedContent("Net80Windows", [@"microsoft.windowsdesktop.app.ref\8.0.8\ref\net8.0"]); + var content = GetGeneratedContent("Net80Windows", [@"microsoft.windowsdesktop.app.ref/8.0.8/ref/net8.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net80Windows"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -88,15 +90,24 @@ void Net80Windows() void Net90() { - var content = GetGeneratedContent("Net90", [@"microsoft.netcore.app.ref\9.0.0\ref\net9.0"]); + var content = GetGeneratedContent("Net90", [@"microsoft.netcore.app.ref/9.0.0/ref/net9.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net90"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); } + +void Net100() +{ + var content = GetGeneratedContent("Net100", [@"microsoft.netcore.app.ref/10.0.0-preview.4.25258.110/ref/net10.0"]); + var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net100"); + File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); + File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); +} + void AspNet80() { - var content = GetGeneratedContent("AspNet80", [@"microsoft.netcore.app.ref\8.0.3\ref\net8.0", @"microsoft.aspnetcore.app.ref\8.0.3\ref\net8.0"]); + var content = GetGeneratedContent("AspNet80", [@"microsoft.netcore.app.ref/8.0.3/ref/net8.0", @"microsoft.aspnetcore.app.ref/8.0.3/ref/net8.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.AspNet80"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -104,12 +115,21 @@ void AspNet80() void AspNet90() { - var content = GetGeneratedContent("AspNet90", [@"microsoft.netcore.app.ref\9.0.0\ref\net9.0", @"microsoft.aspnetcore.app.ref\9.0.0\ref\net9.0"]); + var content = GetGeneratedContent("AspNet90", [@"microsoft.netcore.app.ref/9.0.0/ref/net9.0", @"microsoft.aspnetcore.app.ref/9.0.0/ref/net9.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.AspNet90"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); } + +void AspNet100() +{ + var content = GetGeneratedContent("AspNet100", [@"microsoft.netcore.app.ref/10.0.0-preview.4.25258.110/ref/net10.0", @"microsoft.aspnetcore.app.ref/10.0.0-preview.4.25258.110/ref/net10.0"]); + var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.AspNet100"); + File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); + File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); +} + void NetStandard13() { // netstandard1.3 is a special case because it's not a single package. Instead the collection of DLLs that make @@ -125,11 +145,11 @@ void NetStandard20() { var content = GetGeneratedContent( "NetStandard20", - [@"netstandard.library\2.0.3\build\netstandard2.0\ref"], + [@"netstandard.library/2.0.3/build/netstandard2.0/ref"], [ - @"microsoft.csharp\4.7.0\ref\netstandard2.0", - @"microsoft.visualbasic\10.3.0\ref\netstandard2.0", - @"system.threading.tasks.extensions\4.5.4\lib\netstandard2.0"]); + @"microsoft.csharp/4.7.0/ref/netstandard2.0", + @"microsoft.visualbasic/10.3.0/ref/netstandard2.0", + @"system.threading.tasks.extensions/4.5.4/lib/netstandard2.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.NetStandard20"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -139,7 +159,7 @@ void NetStandard20() void Net20() { - var content = GetGeneratedContent("Net20", [@"microsoft.netframework.referenceassemblies.net20\1.0.3\build\.NETFramework\v2.0"]); + var content = GetGeneratedContent("Net20", [@"microsoft.netframework.referenceassemblies.net20/1.0.3/build/.NETFramework/v2.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net20"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -147,7 +167,7 @@ void Net20() void Net40() { - var content = GetGeneratedContent("Net40", [@"microsoft.netframework.referenceassemblies.net40\1.0.3\build\.NETFramework\v4.0"]); + var content = GetGeneratedContent("Net40", [@"microsoft.netframework.referenceassemblies.net40/1.0.3/build/.NETFramework/v4.0"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net40"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -155,7 +175,7 @@ void Net40() void Net35() { - var content = GetGeneratedContent("Net35", [@"microsoft.netframework.referenceassemblies.net35\1.0.3\build\.NETFramework\v3.5"]); + var content = GetGeneratedContent("Net35", [@"microsoft.netframework.referenceassemblies.net35/1.0.3/build/.NETFramework/v3.5"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net35"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding); @@ -165,10 +185,10 @@ void Net461() { var content = GetGeneratedContent( "Net461", - [@"microsoft.netframework.referenceassemblies.net461\1.0.3\build\.NETFramework\v4.6.1"], + [@"microsoft.netframework.referenceassemblies.net461/1.0.3/build/.NETFramework/v4.6.1"], [ - @"system.threading.tasks.extensions\4.5.4\lib\net461", - @"system.valuetuple\4.5.0\lib\net461" + @"system.threading.tasks.extensions/4.5.4/lib/net461", + @"system.valuetuple/4.5.0/lib/net461" ]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net461"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); @@ -177,7 +197,7 @@ void Net461() void Net472() { - var content = GetGeneratedContent("Net472", [@"microsoft.netframework.referenceassemblies.net472\1.0.3\build\.NETFramework\v4.7.2"]); + var content = GetGeneratedContent("Net472", [@"microsoft.netframework.referenceassemblies.net472/1.0.3/build/.NETFramework/v4.7.2"]); var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net472"); File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding); File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding);