diff --git a/global.json b/global.json
index 4916896..c6cbb9a 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,5 @@
{
"sdk": {
- "version": "5.0.300"
+ "version": "10.0.100"
}
}
\ No newline at end of file
diff --git a/readme.md b/readme.md
index b41021e..7eb1bda 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,6 @@
# Express.NET
-Express.NET is a lightweight, low-ceremony Domain Specific Language (DSL) for building HTTP based services easily. It is based-on .NET / ASP.NET 5. With the use of concise language constructs, this allows you to focus on important bits.. your code and your application! Express.NET handles **DELETE, GET, HEAD, POST, PUT** and **PATCH** requests and provides a simple, elegant syntax for returning a response with just a couple of keystrokes.
+Express.NET is a lightweight, low-ceremony Domain Specific Language (DSL) for building HTTP based services easily. It is based-on .NET / ASP.NET 10. With the use of concise language constructs, this allows you to focus on important bits.. your code and your application! Express.NET handles **DELETE, GET, HEAD, POST, PUT** and **PATCH** requests and provides a simple, elegant syntax for returning a response with just a couple of keystrokes.
# Hello world
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index f279145..4a68193 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -1,5 +1,6 @@
-
- 1-alpha-2
-
-
\ No newline at end of file
+
+ 1-alpha-2
+ 14.0
+
+
diff --git a/src/Express.Net.Base/Express.Net.Base.csproj b/src/Express.Net.Base/Express.Net.Base.csproj
index e3ff598..874af75 100644
--- a/src/Express.Net.Base/Express.Net.Base.csproj
+++ b/src/Express.Net.Base/Express.Net.Base.csproj
@@ -1,7 +1,7 @@
-
+
- net5.0
+ net10.0
Express.Net
true
enable
diff --git a/src/Express.Net.Base/HttpMethodAttribute.cs b/src/Express.Net.Base/HttpMethodAttribute.cs
index bff0bb9..116a3f5 100644
--- a/src/Express.Net.Base/HttpMethodAttribute.cs
+++ b/src/Express.Net.Base/HttpMethodAttribute.cs
@@ -1,4 +1,4 @@
-using Microsoft.AspNetCore.Routing;
+using Microsoft.AspNetCore.Routing;
using System;
using System.Collections.Generic;
@@ -18,7 +18,7 @@ public HttpMethodAttribute(string method, string? template)
{
Method = method;
Template = template;
- HttpMethods = new List() { method };
+ HttpMethods = [method];
}
}
diff --git a/src/Express.Net.Build/Express.Net.Build.csproj b/src/Express.Net.Build/Express.Net.Build.csproj
index 702efd4..5ac0527 100644
--- a/src/Express.Net.Build/Express.Net.Build.csproj
+++ b/src/Express.Net.Build/Express.Net.Build.csproj
@@ -1,12 +1,12 @@
-
+
Exe
enable
- net5.0
+ net10.0
A fast DSL for build microservices.
Vishvaka Ranasinghe
- Express.NET is a DSL for build fast web services effortlessly. This builds on top of .NET / ASP.NET 5.
+ Express.NET is a DSL for build fast web services effortlessly. This builds on top of .NET / ASP.NET 10.
2021 Vishvaka Ranasinghe
https://github.com/Vake93/Express.NET
diff --git a/src/Express.Net.Build/Services/BuildService.cs b/src/Express.Net.Build/Services/BuildService.cs
index dff43c0..77fd393 100644
--- a/src/Express.Net.Build/Services/BuildService.cs
+++ b/src/Express.Net.Build/Services/BuildService.cs
@@ -1,4 +1,4 @@
-using Express.Net.CodeAnalysis;
+using Express.Net.CodeAnalysis;
using Express.Net.CodeAnalysis.Diagnostics;
using Express.Net.Emit;
using Express.Net.Emit.Bootstrapping;
@@ -46,7 +46,7 @@ public static EmitResult BuildProject(string? projectPath, string? outputPath =
Directory.CreateDirectory(executableFolder);
var compilation = new ExpressNetCompilation(projectName, projectFolder, executableFolder, buildConfiguration)
- .SetTargetFrameworks(TargetFrameworks.NetCore50, TargetFrameworks.AspNetCore50, TargetFrameworks.ExpressNet)
+ .SetTargetFrameworks(TargetFrameworks.NetCore10, TargetFrameworks.AspNetCore10, TargetFrameworks.ExpressNet)
.SetBootstrapper(new BasicBootstrapper(projectName, project.GenerateSwaggerDoc, project.AddSwaggerUI));
var packageAssemblies = Enumerable.Empty();
diff --git a/src/Express.Net.Reference.Assemblies/Express.Net.Reference.Assemblies.csproj b/src/Express.Net.Reference.Assemblies/Express.Net.Reference.Assemblies.csproj
index 8f563e7..c028707 100644
--- a/src/Express.Net.Reference.Assemblies/Express.Net.Reference.Assemblies.csproj
+++ b/src/Express.Net.Reference.Assemblies/Express.Net.Reference.Assemblies.csproj
@@ -1,7 +1,7 @@
-
+
- net5.0
+ net10.0
true
enable
A fast DSL for build microservices.
@@ -9,13 +9,13 @@
-
-
-
+
+
+
-
-
+
+
diff --git a/src/Express.Net.Reference.Assemblies/Generated.AspNet50.cs b/src/Express.Net.Reference.Assemblies/Generated.AspNet10.cs
similarity index 74%
rename from src/Express.Net.Reference.Assemblies/Generated.AspNet50.cs
rename to src/Express.Net.Reference.Assemblies/Generated.AspNet10.cs
index 3144d30..faaa447 100644
--- a/src/Express.Net.Reference.Assemblies/Generated.AspNet50.cs
+++ b/src/Express.Net.Reference.Assemblies/Generated.AspNet10.cs
@@ -5,404 +5,404 @@
namespace Express.Net.Reference.Assemblies
{
- internal static class AspNet50Resources
+ internal static class AspNet10Resources
{
private static byte[]? _MicrosoftAspNetCoreAntiforgery;
- internal static byte[] MicrosoftAspNetCoreAntiforgery => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAntiforgery, "aspnet50.Microsoft.AspNetCore.Antiforgery");
+ internal static byte[] MicrosoftAspNetCoreAntiforgery => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAntiforgery, "aspnet10.Microsoft.AspNetCore.Antiforgery");
private static byte[]? _MicrosoftAspNetCoreAuthenticationAbstractions;
- internal static byte[] MicrosoftAspNetCoreAuthenticationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationAbstractions, "aspnet50.Microsoft.AspNetCore.Authentication.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreAuthenticationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationAbstractions, "aspnet10.Microsoft.AspNetCore.Authentication.Abstractions");
private static byte[]? _MicrosoftAspNetCoreAuthenticationCookies;
- internal static byte[] MicrosoftAspNetCoreAuthenticationCookies => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationCookies, "aspnet50.Microsoft.AspNetCore.Authentication.Cookies");
+ internal static byte[] MicrosoftAspNetCoreAuthenticationCookies => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationCookies, "aspnet10.Microsoft.AspNetCore.Authentication.Cookies");
private static byte[]? _MicrosoftAspNetCoreAuthenticationCore;
- internal static byte[] MicrosoftAspNetCoreAuthenticationCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationCore, "aspnet50.Microsoft.AspNetCore.Authentication.Core");
+ internal static byte[] MicrosoftAspNetCoreAuthenticationCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationCore, "aspnet10.Microsoft.AspNetCore.Authentication.Core");
private static byte[]? _MicrosoftAspNetCoreAuthentication;
- internal static byte[] MicrosoftAspNetCoreAuthentication => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthentication, "aspnet50.Microsoft.AspNetCore.Authentication");
+ internal static byte[] MicrosoftAspNetCoreAuthentication => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthentication, "aspnet10.Microsoft.AspNetCore.Authentication");
private static byte[]? _MicrosoftAspNetCoreAuthenticationOAuth;
- internal static byte[] MicrosoftAspNetCoreAuthenticationOAuth => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationOAuth, "aspnet50.Microsoft.AspNetCore.Authentication.OAuth");
+ internal static byte[] MicrosoftAspNetCoreAuthenticationOAuth => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthenticationOAuth, "aspnet10.Microsoft.AspNetCore.Authentication.OAuth");
private static byte[]? _MicrosoftAspNetCoreAuthorization;
- internal static byte[] MicrosoftAspNetCoreAuthorization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthorization, "aspnet50.Microsoft.AspNetCore.Authorization");
+ internal static byte[] MicrosoftAspNetCoreAuthorization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthorization, "aspnet10.Microsoft.AspNetCore.Authorization");
private static byte[]? _MicrosoftAspNetCoreAuthorizationPolicy;
- internal static byte[] MicrosoftAspNetCoreAuthorizationPolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthorizationPolicy, "aspnet50.Microsoft.AspNetCore.Authorization.Policy");
+ internal static byte[] MicrosoftAspNetCoreAuthorizationPolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreAuthorizationPolicy, "aspnet10.Microsoft.AspNetCore.Authorization.Policy");
private static byte[]? _MicrosoftAspNetCoreComponentsAuthorization;
- internal static byte[] MicrosoftAspNetCoreComponentsAuthorization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsAuthorization, "aspnet50.Microsoft.AspNetCore.Components.Authorization");
+ internal static byte[] MicrosoftAspNetCoreComponentsAuthorization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsAuthorization, "aspnet10.Microsoft.AspNetCore.Components.Authorization");
private static byte[]? _MicrosoftAspNetCoreComponents;
- internal static byte[] MicrosoftAspNetCoreComponents => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponents, "aspnet50.Microsoft.AspNetCore.Components");
+ internal static byte[] MicrosoftAspNetCoreComponents => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponents, "aspnet10.Microsoft.AspNetCore.Components");
private static byte[]? _MicrosoftAspNetCoreComponentsForms;
- internal static byte[] MicrosoftAspNetCoreComponentsForms => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsForms, "aspnet50.Microsoft.AspNetCore.Components.Forms");
+ internal static byte[] MicrosoftAspNetCoreComponentsForms => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsForms, "aspnet10.Microsoft.AspNetCore.Components.Forms");
private static byte[]? _MicrosoftAspNetCoreComponentsServer;
- internal static byte[] MicrosoftAspNetCoreComponentsServer => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsServer, "aspnet50.Microsoft.AspNetCore.Components.Server");
+ internal static byte[] MicrosoftAspNetCoreComponentsServer => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsServer, "aspnet10.Microsoft.AspNetCore.Components.Server");
private static byte[]? _MicrosoftAspNetCoreComponentsWeb;
- internal static byte[] MicrosoftAspNetCoreComponentsWeb => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsWeb, "aspnet50.Microsoft.AspNetCore.Components.Web");
+ internal static byte[] MicrosoftAspNetCoreComponentsWeb => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreComponentsWeb, "aspnet10.Microsoft.AspNetCore.Components.Web");
private static byte[]? _MicrosoftAspNetCoreConnectionsAbstractions;
- internal static byte[] MicrosoftAspNetCoreConnectionsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreConnectionsAbstractions, "aspnet50.Microsoft.AspNetCore.Connections.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreConnectionsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreConnectionsAbstractions, "aspnet10.Microsoft.AspNetCore.Connections.Abstractions");
private static byte[]? _MicrosoftAspNetCoreCookiePolicy;
- internal static byte[] MicrosoftAspNetCoreCookiePolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCookiePolicy, "aspnet50.Microsoft.AspNetCore.CookiePolicy");
+ internal static byte[] MicrosoftAspNetCoreCookiePolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCookiePolicy, "aspnet10.Microsoft.AspNetCore.CookiePolicy");
private static byte[]? _MicrosoftAspNetCoreCors;
- internal static byte[] MicrosoftAspNetCoreCors => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCors, "aspnet50.Microsoft.AspNetCore.Cors");
+ internal static byte[] MicrosoftAspNetCoreCors => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCors, "aspnet10.Microsoft.AspNetCore.Cors");
private static byte[]? _MicrosoftAspNetCoreCryptographyInternal;
- internal static byte[] MicrosoftAspNetCoreCryptographyInternal => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCryptographyInternal, "aspnet50.Microsoft.AspNetCore.Cryptography.Internal");
+ internal static byte[] MicrosoftAspNetCoreCryptographyInternal => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCryptographyInternal, "aspnet10.Microsoft.AspNetCore.Cryptography.Internal");
private static byte[]? _MicrosoftAspNetCoreCryptographyKeyDerivation;
- internal static byte[] MicrosoftAspNetCoreCryptographyKeyDerivation => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCryptographyKeyDerivation, "aspnet50.Microsoft.AspNetCore.Cryptography.KeyDerivation");
+ internal static byte[] MicrosoftAspNetCoreCryptographyKeyDerivation => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreCryptographyKeyDerivation, "aspnet10.Microsoft.AspNetCore.Cryptography.KeyDerivation");
private static byte[]? _MicrosoftAspNetCoreDataProtectionAbstractions;
- internal static byte[] MicrosoftAspNetCoreDataProtectionAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtectionAbstractions, "aspnet50.Microsoft.AspNetCore.DataProtection.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreDataProtectionAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtectionAbstractions, "aspnet10.Microsoft.AspNetCore.DataProtection.Abstractions");
private static byte[]? _MicrosoftAspNetCoreDataProtection;
- internal static byte[] MicrosoftAspNetCoreDataProtection => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtection, "aspnet50.Microsoft.AspNetCore.DataProtection");
+ internal static byte[] MicrosoftAspNetCoreDataProtection => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtection, "aspnet10.Microsoft.AspNetCore.DataProtection");
private static byte[]? _MicrosoftAspNetCoreDataProtectionExtensions;
- internal static byte[] MicrosoftAspNetCoreDataProtectionExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtectionExtensions, "aspnet50.Microsoft.AspNetCore.DataProtection.Extensions");
+ internal static byte[] MicrosoftAspNetCoreDataProtectionExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDataProtectionExtensions, "aspnet10.Microsoft.AspNetCore.DataProtection.Extensions");
private static byte[]? _MicrosoftAspNetCoreDiagnosticsAbstractions;
- internal static byte[] MicrosoftAspNetCoreDiagnosticsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnosticsAbstractions, "aspnet50.Microsoft.AspNetCore.Diagnostics.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreDiagnosticsAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnosticsAbstractions, "aspnet10.Microsoft.AspNetCore.Diagnostics.Abstractions");
private static byte[]? _MicrosoftAspNetCoreDiagnostics;
- internal static byte[] MicrosoftAspNetCoreDiagnostics => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnostics, "aspnet50.Microsoft.AspNetCore.Diagnostics");
+ internal static byte[] MicrosoftAspNetCoreDiagnostics => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnostics, "aspnet10.Microsoft.AspNetCore.Diagnostics");
private static byte[]? _MicrosoftAspNetCoreDiagnosticsHealthChecks;
- internal static byte[] MicrosoftAspNetCoreDiagnosticsHealthChecks => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnosticsHealthChecks, "aspnet50.Microsoft.AspNetCore.Diagnostics.HealthChecks");
+ internal static byte[] MicrosoftAspNetCoreDiagnosticsHealthChecks => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreDiagnosticsHealthChecks, "aspnet10.Microsoft.AspNetCore.Diagnostics.HealthChecks");
private static byte[]? _MicrosoftAspNetCore;
- internal static byte[] MicrosoftAspNetCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCore, "aspnet50.Microsoft.AspNetCore");
+ internal static byte[] MicrosoftAspNetCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCore, "aspnet10.Microsoft.AspNetCore");
private static byte[]? _MicrosoftAspNetCoreHostFiltering;
- internal static byte[] MicrosoftAspNetCoreHostFiltering => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostFiltering, "aspnet50.Microsoft.AspNetCore.HostFiltering");
+ internal static byte[] MicrosoftAspNetCoreHostFiltering => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostFiltering, "aspnet10.Microsoft.AspNetCore.HostFiltering");
private static byte[]? _MicrosoftAspNetCoreHostingAbstractions;
- internal static byte[] MicrosoftAspNetCoreHostingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostingAbstractions, "aspnet50.Microsoft.AspNetCore.Hosting.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreHostingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostingAbstractions, "aspnet10.Microsoft.AspNetCore.Hosting.Abstractions");
private static byte[]? _MicrosoftAspNetCoreHosting;
- internal static byte[] MicrosoftAspNetCoreHosting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHosting, "aspnet50.Microsoft.AspNetCore.Hosting");
+ internal static byte[] MicrosoftAspNetCoreHosting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHosting, "aspnet10.Microsoft.AspNetCore.Hosting");
private static byte[]? _MicrosoftAspNetCoreHostingServerAbstractions;
- internal static byte[] MicrosoftAspNetCoreHostingServerAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostingServerAbstractions, "aspnet50.Microsoft.AspNetCore.Hosting.Server.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreHostingServerAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHostingServerAbstractions, "aspnet10.Microsoft.AspNetCore.Hosting.Server.Abstractions");
private static byte[]? _MicrosoftAspNetCoreHtmlAbstractions;
- internal static byte[] MicrosoftAspNetCoreHtmlAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHtmlAbstractions, "aspnet50.Microsoft.AspNetCore.Html.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreHtmlAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHtmlAbstractions, "aspnet10.Microsoft.AspNetCore.Html.Abstractions");
private static byte[]? _MicrosoftAspNetCoreHttpAbstractions;
- internal static byte[] MicrosoftAspNetCoreHttpAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpAbstractions, "aspnet50.Microsoft.AspNetCore.Http.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreHttpAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpAbstractions, "aspnet10.Microsoft.AspNetCore.Http.Abstractions");
private static byte[]? _MicrosoftAspNetCoreHttpConnectionsCommon;
- internal static byte[] MicrosoftAspNetCoreHttpConnectionsCommon => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpConnectionsCommon, "aspnet50.Microsoft.AspNetCore.Http.Connections.Common");
+ internal static byte[] MicrosoftAspNetCoreHttpConnectionsCommon => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpConnectionsCommon, "aspnet10.Microsoft.AspNetCore.Http.Connections.Common");
private static byte[]? _MicrosoftAspNetCoreHttpConnections;
- internal static byte[] MicrosoftAspNetCoreHttpConnections => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpConnections, "aspnet50.Microsoft.AspNetCore.Http.Connections");
+ internal static byte[] MicrosoftAspNetCoreHttpConnections => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpConnections, "aspnet10.Microsoft.AspNetCore.Http.Connections");
private static byte[]? _MicrosoftAspNetCoreHttp;
- internal static byte[] MicrosoftAspNetCoreHttp => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttp, "aspnet50.Microsoft.AspNetCore.Http");
+ internal static byte[] MicrosoftAspNetCoreHttp => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttp, "aspnet10.Microsoft.AspNetCore.Http");
private static byte[]? _MicrosoftAspNetCoreHttpExtensions;
- internal static byte[] MicrosoftAspNetCoreHttpExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpExtensions, "aspnet50.Microsoft.AspNetCore.Http.Extensions");
+ internal static byte[] MicrosoftAspNetCoreHttpExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpExtensions, "aspnet10.Microsoft.AspNetCore.Http.Extensions");
private static byte[]? _MicrosoftAspNetCoreHttpFeatures;
- internal static byte[] MicrosoftAspNetCoreHttpFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpFeatures, "aspnet50.Microsoft.AspNetCore.Http.Features");
+ internal static byte[] MicrosoftAspNetCoreHttpFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpFeatures, "aspnet10.Microsoft.AspNetCore.Http.Features");
private static byte[]? _MicrosoftAspNetCoreHttpOverrides;
- internal static byte[] MicrosoftAspNetCoreHttpOverrides => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpOverrides, "aspnet50.Microsoft.AspNetCore.HttpOverrides");
+ internal static byte[] MicrosoftAspNetCoreHttpOverrides => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpOverrides, "aspnet10.Microsoft.AspNetCore.HttpOverrides");
private static byte[]? _MicrosoftAspNetCoreHttpsPolicy;
- internal static byte[] MicrosoftAspNetCoreHttpsPolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpsPolicy, "aspnet50.Microsoft.AspNetCore.HttpsPolicy");
+ internal static byte[] MicrosoftAspNetCoreHttpsPolicy => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreHttpsPolicy, "aspnet10.Microsoft.AspNetCore.HttpsPolicy");
private static byte[]? _MicrosoftAspNetCoreIdentity;
- internal static byte[] MicrosoftAspNetCoreIdentity => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreIdentity, "aspnet50.Microsoft.AspNetCore.Identity");
+ internal static byte[] MicrosoftAspNetCoreIdentity => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreIdentity, "aspnet10.Microsoft.AspNetCore.Identity");
private static byte[]? _MicrosoftAspNetCoreLocalization;
- internal static byte[] MicrosoftAspNetCoreLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreLocalization, "aspnet50.Microsoft.AspNetCore.Localization");
+ internal static byte[] MicrosoftAspNetCoreLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreLocalization, "aspnet10.Microsoft.AspNetCore.Localization");
private static byte[]? _MicrosoftAspNetCoreLocalizationRouting;
- internal static byte[] MicrosoftAspNetCoreLocalizationRouting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreLocalizationRouting, "aspnet50.Microsoft.AspNetCore.Localization.Routing");
+ internal static byte[] MicrosoftAspNetCoreLocalizationRouting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreLocalizationRouting, "aspnet10.Microsoft.AspNetCore.Localization.Routing");
private static byte[]? _MicrosoftAspNetCoreMetadata;
- internal static byte[] MicrosoftAspNetCoreMetadata => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMetadata, "aspnet50.Microsoft.AspNetCore.Metadata");
+ internal static byte[] MicrosoftAspNetCoreMetadata => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMetadata, "aspnet10.Microsoft.AspNetCore.Metadata");
private static byte[]? _MicrosoftAspNetCoreMvcAbstractions;
- internal static byte[] MicrosoftAspNetCoreMvcAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcAbstractions, "aspnet50.Microsoft.AspNetCore.Mvc.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreMvcAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcAbstractions, "aspnet10.Microsoft.AspNetCore.Mvc.Abstractions");
private static byte[]? _MicrosoftAspNetCoreMvcApiExplorer;
- internal static byte[] MicrosoftAspNetCoreMvcApiExplorer => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcApiExplorer, "aspnet50.Microsoft.AspNetCore.Mvc.ApiExplorer");
+ internal static byte[] MicrosoftAspNetCoreMvcApiExplorer => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcApiExplorer, "aspnet10.Microsoft.AspNetCore.Mvc.ApiExplorer");
private static byte[]? _MicrosoftAspNetCoreMvcCore;
- internal static byte[] MicrosoftAspNetCoreMvcCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcCore, "aspnet50.Microsoft.AspNetCore.Mvc.Core");
+ internal static byte[] MicrosoftAspNetCoreMvcCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcCore, "aspnet10.Microsoft.AspNetCore.Mvc.Core");
private static byte[]? _MicrosoftAspNetCoreMvcCors;
- internal static byte[] MicrosoftAspNetCoreMvcCors => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcCors, "aspnet50.Microsoft.AspNetCore.Mvc.Cors");
+ internal static byte[] MicrosoftAspNetCoreMvcCors => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcCors, "aspnet10.Microsoft.AspNetCore.Mvc.Cors");
private static byte[]? _MicrosoftAspNetCoreMvcDataAnnotations;
- internal static byte[] MicrosoftAspNetCoreMvcDataAnnotations => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcDataAnnotations, "aspnet50.Microsoft.AspNetCore.Mvc.DataAnnotations");
+ internal static byte[] MicrosoftAspNetCoreMvcDataAnnotations => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcDataAnnotations, "aspnet10.Microsoft.AspNetCore.Mvc.DataAnnotations");
private static byte[]? _MicrosoftAspNetCoreMvc;
- internal static byte[] MicrosoftAspNetCoreMvc => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvc, "aspnet50.Microsoft.AspNetCore.Mvc");
+ internal static byte[] MicrosoftAspNetCoreMvc => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvc, "aspnet10.Microsoft.AspNetCore.Mvc");
private static byte[]? _MicrosoftAspNetCoreMvcFormattersJson;
- internal static byte[] MicrosoftAspNetCoreMvcFormattersJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcFormattersJson, "aspnet50.Microsoft.AspNetCore.Mvc.Formatters.Json");
+ internal static byte[] MicrosoftAspNetCoreMvcFormattersJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcFormattersJson, "aspnet10.Microsoft.AspNetCore.Mvc.Formatters.Json");
private static byte[]? _MicrosoftAspNetCoreMvcFormattersXml;
- internal static byte[] MicrosoftAspNetCoreMvcFormattersXml => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcFormattersXml, "aspnet50.Microsoft.AspNetCore.Mvc.Formatters.Xml");
+ internal static byte[] MicrosoftAspNetCoreMvcFormattersXml => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcFormattersXml, "aspnet10.Microsoft.AspNetCore.Mvc.Formatters.Xml");
private static byte[]? _MicrosoftAspNetCoreMvcLocalization;
- internal static byte[] MicrosoftAspNetCoreMvcLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcLocalization, "aspnet50.Microsoft.AspNetCore.Mvc.Localization");
+ internal static byte[] MicrosoftAspNetCoreMvcLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcLocalization, "aspnet10.Microsoft.AspNetCore.Mvc.Localization");
private static byte[]? _MicrosoftAspNetCoreMvcRazor;
- internal static byte[] MicrosoftAspNetCoreMvcRazor => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcRazor, "aspnet50.Microsoft.AspNetCore.Mvc.Razor");
+ internal static byte[] MicrosoftAspNetCoreMvcRazor => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcRazor, "aspnet10.Microsoft.AspNetCore.Mvc.Razor");
private static byte[]? _MicrosoftAspNetCoreMvcRazorPages;
- internal static byte[] MicrosoftAspNetCoreMvcRazorPages => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcRazorPages, "aspnet50.Microsoft.AspNetCore.Mvc.RazorPages");
+ internal static byte[] MicrosoftAspNetCoreMvcRazorPages => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcRazorPages, "aspnet10.Microsoft.AspNetCore.Mvc.RazorPages");
private static byte[]? _MicrosoftAspNetCoreMvcTagHelpers;
- internal static byte[] MicrosoftAspNetCoreMvcTagHelpers => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcTagHelpers, "aspnet50.Microsoft.AspNetCore.Mvc.TagHelpers");
+ internal static byte[] MicrosoftAspNetCoreMvcTagHelpers => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcTagHelpers, "aspnet10.Microsoft.AspNetCore.Mvc.TagHelpers");
private static byte[]? _MicrosoftAspNetCoreMvcViewFeatures;
- internal static byte[] MicrosoftAspNetCoreMvcViewFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcViewFeatures, "aspnet50.Microsoft.AspNetCore.Mvc.ViewFeatures");
+ internal static byte[] MicrosoftAspNetCoreMvcViewFeatures => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreMvcViewFeatures, "aspnet10.Microsoft.AspNetCore.Mvc.ViewFeatures");
private static byte[]? _MicrosoftAspNetCoreRazor;
- internal static byte[] MicrosoftAspNetCoreRazor => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRazor, "aspnet50.Microsoft.AspNetCore.Razor");
+ internal static byte[] MicrosoftAspNetCoreRazor => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRazor, "aspnet10.Microsoft.AspNetCore.Razor");
private static byte[]? _MicrosoftAspNetCoreRazorRuntime;
- internal static byte[] MicrosoftAspNetCoreRazorRuntime => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRazorRuntime, "aspnet50.Microsoft.AspNetCore.Razor.Runtime");
+ internal static byte[] MicrosoftAspNetCoreRazorRuntime => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRazorRuntime, "aspnet10.Microsoft.AspNetCore.Razor.Runtime");
private static byte[]? _MicrosoftAspNetCoreResponseCachingAbstractions;
- internal static byte[] MicrosoftAspNetCoreResponseCachingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCachingAbstractions, "aspnet50.Microsoft.AspNetCore.ResponseCaching.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreResponseCachingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCachingAbstractions, "aspnet10.Microsoft.AspNetCore.ResponseCaching.Abstractions");
private static byte[]? _MicrosoftAspNetCoreResponseCaching;
- internal static byte[] MicrosoftAspNetCoreResponseCaching => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCaching, "aspnet50.Microsoft.AspNetCore.ResponseCaching");
+ internal static byte[] MicrosoftAspNetCoreResponseCaching => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCaching, "aspnet10.Microsoft.AspNetCore.ResponseCaching");
private static byte[]? _MicrosoftAspNetCoreResponseCompression;
- internal static byte[] MicrosoftAspNetCoreResponseCompression => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCompression, "aspnet50.Microsoft.AspNetCore.ResponseCompression");
+ internal static byte[] MicrosoftAspNetCoreResponseCompression => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreResponseCompression, "aspnet10.Microsoft.AspNetCore.ResponseCompression");
private static byte[]? _MicrosoftAspNetCoreRewrite;
- internal static byte[] MicrosoftAspNetCoreRewrite => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRewrite, "aspnet50.Microsoft.AspNetCore.Rewrite");
+ internal static byte[] MicrosoftAspNetCoreRewrite => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRewrite, "aspnet10.Microsoft.AspNetCore.Rewrite");
private static byte[]? _MicrosoftAspNetCoreRoutingAbstractions;
- internal static byte[] MicrosoftAspNetCoreRoutingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRoutingAbstractions, "aspnet50.Microsoft.AspNetCore.Routing.Abstractions");
+ internal static byte[] MicrosoftAspNetCoreRoutingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRoutingAbstractions, "aspnet10.Microsoft.AspNetCore.Routing.Abstractions");
private static byte[]? _MicrosoftAspNetCoreRouting;
- internal static byte[] MicrosoftAspNetCoreRouting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRouting, "aspnet50.Microsoft.AspNetCore.Routing");
+ internal static byte[] MicrosoftAspNetCoreRouting => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreRouting, "aspnet10.Microsoft.AspNetCore.Routing");
private static byte[]? _MicrosoftAspNetCoreServerHttpSys;
- internal static byte[] MicrosoftAspNetCoreServerHttpSys => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerHttpSys, "aspnet50.Microsoft.AspNetCore.Server.HttpSys");
+ internal static byte[] MicrosoftAspNetCoreServerHttpSys => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerHttpSys, "aspnet10.Microsoft.AspNetCore.Server.HttpSys");
private static byte[]? _MicrosoftAspNetCoreServerIIS;
- internal static byte[] MicrosoftAspNetCoreServerIIS => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerIIS, "aspnet50.Microsoft.AspNetCore.Server.IIS");
+ internal static byte[] MicrosoftAspNetCoreServerIIS => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerIIS, "aspnet10.Microsoft.AspNetCore.Server.IIS");
private static byte[]? _MicrosoftAspNetCoreServerIISIntegration;
- internal static byte[] MicrosoftAspNetCoreServerIISIntegration => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerIISIntegration, "aspnet50.Microsoft.AspNetCore.Server.IISIntegration");
+ internal static byte[] MicrosoftAspNetCoreServerIISIntegration => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerIISIntegration, "aspnet10.Microsoft.AspNetCore.Server.IISIntegration");
private static byte[]? _MicrosoftAspNetCoreServerKestrelCore;
- internal static byte[] MicrosoftAspNetCoreServerKestrelCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelCore, "aspnet50.Microsoft.AspNetCore.Server.Kestrel.Core");
+ internal static byte[] MicrosoftAspNetCoreServerKestrelCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelCore, "aspnet10.Microsoft.AspNetCore.Server.Kestrel.Core");
private static byte[]? _MicrosoftAspNetCoreServerKestrel;
- internal static byte[] MicrosoftAspNetCoreServerKestrel => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrel, "aspnet50.Microsoft.AspNetCore.Server.Kestrel");
+ internal static byte[] MicrosoftAspNetCoreServerKestrel => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrel, "aspnet10.Microsoft.AspNetCore.Server.Kestrel");
private static byte[]? _MicrosoftAspNetCoreServerKestrelTransportSockets;
- internal static byte[] MicrosoftAspNetCoreServerKestrelTransportSockets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelTransportSockets, "aspnet50.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets");
+ internal static byte[] MicrosoftAspNetCoreServerKestrelTransportSockets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreServerKestrelTransportSockets, "aspnet10.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets");
private static byte[]? _MicrosoftAspNetCoreSession;
- internal static byte[] MicrosoftAspNetCoreSession => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSession, "aspnet50.Microsoft.AspNetCore.Session");
+ internal static byte[] MicrosoftAspNetCoreSession => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSession, "aspnet10.Microsoft.AspNetCore.Session");
private static byte[]? _MicrosoftAspNetCoreSignalRCommon;
- internal static byte[] MicrosoftAspNetCoreSignalRCommon => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRCommon, "aspnet50.Microsoft.AspNetCore.SignalR.Common");
+ internal static byte[] MicrosoftAspNetCoreSignalRCommon => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRCommon, "aspnet10.Microsoft.AspNetCore.SignalR.Common");
private static byte[]? _MicrosoftAspNetCoreSignalRCore;
- internal static byte[] MicrosoftAspNetCoreSignalRCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRCore, "aspnet50.Microsoft.AspNetCore.SignalR.Core");
+ internal static byte[] MicrosoftAspNetCoreSignalRCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRCore, "aspnet10.Microsoft.AspNetCore.SignalR.Core");
private static byte[]? _MicrosoftAspNetCoreSignalR;
- internal static byte[] MicrosoftAspNetCoreSignalR => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalR, "aspnet50.Microsoft.AspNetCore.SignalR");
+ internal static byte[] MicrosoftAspNetCoreSignalR => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalR, "aspnet10.Microsoft.AspNetCore.SignalR");
private static byte[]? _MicrosoftAspNetCoreSignalRProtocolsJson;
- internal static byte[] MicrosoftAspNetCoreSignalRProtocolsJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRProtocolsJson, "aspnet50.Microsoft.AspNetCore.SignalR.Protocols.Json");
+ internal static byte[] MicrosoftAspNetCoreSignalRProtocolsJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreSignalRProtocolsJson, "aspnet10.Microsoft.AspNetCore.SignalR.Protocols.Json");
private static byte[]? _MicrosoftAspNetCoreStaticFiles;
- internal static byte[] MicrosoftAspNetCoreStaticFiles => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreStaticFiles, "aspnet50.Microsoft.AspNetCore.StaticFiles");
+ internal static byte[] MicrosoftAspNetCoreStaticFiles => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreStaticFiles, "aspnet10.Microsoft.AspNetCore.StaticFiles");
private static byte[]? _MicrosoftAspNetCoreWebSockets;
- internal static byte[] MicrosoftAspNetCoreWebSockets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreWebSockets, "aspnet50.Microsoft.AspNetCore.WebSockets");
+ internal static byte[] MicrosoftAspNetCoreWebSockets => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreWebSockets, "aspnet10.Microsoft.AspNetCore.WebSockets");
private static byte[]? _MicrosoftAspNetCoreWebUtilities;
- internal static byte[] MicrosoftAspNetCoreWebUtilities => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreWebUtilities, "aspnet50.Microsoft.AspNetCore.WebUtilities");
+ internal static byte[] MicrosoftAspNetCoreWebUtilities => ResourceLoader.GetOrCreateResource(ref _MicrosoftAspNetCoreWebUtilities, "aspnet10.Microsoft.AspNetCore.WebUtilities");
private static byte[]? _MicrosoftExtensionsCachingAbstractions;
- internal static byte[] MicrosoftExtensionsCachingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsCachingAbstractions, "aspnet50.Microsoft.Extensions.Caching.Abstractions");
+ internal static byte[] MicrosoftExtensionsCachingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsCachingAbstractions, "aspnet10.Microsoft.Extensions.Caching.Abstractions");
private static byte[]? _MicrosoftExtensionsCachingMemory;
- internal static byte[] MicrosoftExtensionsCachingMemory => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsCachingMemory, "aspnet50.Microsoft.Extensions.Caching.Memory");
+ internal static byte[] MicrosoftExtensionsCachingMemory => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsCachingMemory, "aspnet10.Microsoft.Extensions.Caching.Memory");
private static byte[]? _MicrosoftExtensionsConfigurationAbstractions;
- internal static byte[] MicrosoftExtensionsConfigurationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationAbstractions, "aspnet50.Microsoft.Extensions.Configuration.Abstractions");
+ internal static byte[] MicrosoftExtensionsConfigurationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationAbstractions, "aspnet10.Microsoft.Extensions.Configuration.Abstractions");
private static byte[]? _MicrosoftExtensionsConfigurationBinder;
- internal static byte[] MicrosoftExtensionsConfigurationBinder => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationBinder, "aspnet50.Microsoft.Extensions.Configuration.Binder");
+ internal static byte[] MicrosoftExtensionsConfigurationBinder => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationBinder, "aspnet10.Microsoft.Extensions.Configuration.Binder");
private static byte[]? _MicrosoftExtensionsConfigurationCommandLine;
- internal static byte[] MicrosoftExtensionsConfigurationCommandLine => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationCommandLine, "aspnet50.Microsoft.Extensions.Configuration.CommandLine");
+ internal static byte[] MicrosoftExtensionsConfigurationCommandLine => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationCommandLine, "aspnet10.Microsoft.Extensions.Configuration.CommandLine");
private static byte[]? _MicrosoftExtensionsConfiguration;
- internal static byte[] MicrosoftExtensionsConfiguration => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfiguration, "aspnet50.Microsoft.Extensions.Configuration");
+ internal static byte[] MicrosoftExtensionsConfiguration => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfiguration, "aspnet10.Microsoft.Extensions.Configuration");
private static byte[]? _MicrosoftExtensionsConfigurationEnvironmentVariables;
- internal static byte[] MicrosoftExtensionsConfigurationEnvironmentVariables => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationEnvironmentVariables, "aspnet50.Microsoft.Extensions.Configuration.EnvironmentVariables");
+ internal static byte[] MicrosoftExtensionsConfigurationEnvironmentVariables => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationEnvironmentVariables, "aspnet10.Microsoft.Extensions.Configuration.EnvironmentVariables");
private static byte[]? _MicrosoftExtensionsConfigurationFileExtensions;
- internal static byte[] MicrosoftExtensionsConfigurationFileExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationFileExtensions, "aspnet50.Microsoft.Extensions.Configuration.FileExtensions");
+ internal static byte[] MicrosoftExtensionsConfigurationFileExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationFileExtensions, "aspnet10.Microsoft.Extensions.Configuration.FileExtensions");
private static byte[]? _MicrosoftExtensionsConfigurationIni;
- internal static byte[] MicrosoftExtensionsConfigurationIni => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationIni, "aspnet50.Microsoft.Extensions.Configuration.Ini");
+ internal static byte[] MicrosoftExtensionsConfigurationIni => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationIni, "aspnet10.Microsoft.Extensions.Configuration.Ini");
private static byte[]? _MicrosoftExtensionsConfigurationJson;
- internal static byte[] MicrosoftExtensionsConfigurationJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationJson, "aspnet50.Microsoft.Extensions.Configuration.Json");
+ internal static byte[] MicrosoftExtensionsConfigurationJson => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationJson, "aspnet10.Microsoft.Extensions.Configuration.Json");
private static byte[]? _MicrosoftExtensionsConfigurationKeyPerFile;
- internal static byte[] MicrosoftExtensionsConfigurationKeyPerFile => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationKeyPerFile, "aspnet50.Microsoft.Extensions.Configuration.KeyPerFile");
+ internal static byte[] MicrosoftExtensionsConfigurationKeyPerFile => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationKeyPerFile, "aspnet10.Microsoft.Extensions.Configuration.KeyPerFile");
private static byte[]? _MicrosoftExtensionsConfigurationUserSecrets;
- internal static byte[] MicrosoftExtensionsConfigurationUserSecrets => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationUserSecrets, "aspnet50.Microsoft.Extensions.Configuration.UserSecrets");
+ internal static byte[] MicrosoftExtensionsConfigurationUserSecrets => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationUserSecrets, "aspnet10.Microsoft.Extensions.Configuration.UserSecrets");
private static byte[]? _MicrosoftExtensionsConfigurationXml;
- internal static byte[] MicrosoftExtensionsConfigurationXml => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationXml, "aspnet50.Microsoft.Extensions.Configuration.Xml");
+ internal static byte[] MicrosoftExtensionsConfigurationXml => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsConfigurationXml, "aspnet10.Microsoft.Extensions.Configuration.Xml");
private static byte[]? _MicrosoftExtensionsDependencyInjectionAbstractions;
- internal static byte[] MicrosoftExtensionsDependencyInjectionAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDependencyInjectionAbstractions, "aspnet50.Microsoft.Extensions.DependencyInjection.Abstractions");
+ internal static byte[] MicrosoftExtensionsDependencyInjectionAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDependencyInjectionAbstractions, "aspnet10.Microsoft.Extensions.DependencyInjection.Abstractions");
private static byte[]? _MicrosoftExtensionsDependencyInjection;
- internal static byte[] MicrosoftExtensionsDependencyInjection => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDependencyInjection, "aspnet50.Microsoft.Extensions.DependencyInjection");
+ internal static byte[] MicrosoftExtensionsDependencyInjection => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDependencyInjection, "aspnet10.Microsoft.Extensions.DependencyInjection");
private static byte[]? _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions;
- internal static byte[] MicrosoftExtensionsDiagnosticsHealthChecksAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, "aspnet50.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions");
+ internal static byte[] MicrosoftExtensionsDiagnosticsHealthChecksAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsHealthChecksAbstractions, "aspnet10.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions");
private static byte[]? _MicrosoftExtensionsDiagnosticsHealthChecks;
- internal static byte[] MicrosoftExtensionsDiagnosticsHealthChecks => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsHealthChecks, "aspnet50.Microsoft.Extensions.Diagnostics.HealthChecks");
+ internal static byte[] MicrosoftExtensionsDiagnosticsHealthChecks => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsDiagnosticsHealthChecks, "aspnet10.Microsoft.Extensions.Diagnostics.HealthChecks");
private static byte[]? _MicrosoftExtensionsFileProvidersAbstractions;
- internal static byte[] MicrosoftExtensionsFileProvidersAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersAbstractions, "aspnet50.Microsoft.Extensions.FileProviders.Abstractions");
+ internal static byte[] MicrosoftExtensionsFileProvidersAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersAbstractions, "aspnet10.Microsoft.Extensions.FileProviders.Abstractions");
private static byte[]? _MicrosoftExtensionsFileProvidersComposite;
- internal static byte[] MicrosoftExtensionsFileProvidersComposite => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersComposite, "aspnet50.Microsoft.Extensions.FileProviders.Composite");
+ internal static byte[] MicrosoftExtensionsFileProvidersComposite => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersComposite, "aspnet10.Microsoft.Extensions.FileProviders.Composite");
private static byte[]? _MicrosoftExtensionsFileProvidersEmbedded;
- internal static byte[] MicrosoftExtensionsFileProvidersEmbedded => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersEmbedded, "aspnet50.Microsoft.Extensions.FileProviders.Embedded");
+ internal static byte[] MicrosoftExtensionsFileProvidersEmbedded => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersEmbedded, "aspnet10.Microsoft.Extensions.FileProviders.Embedded");
private static byte[]? _MicrosoftExtensionsFileProvidersPhysical;
- internal static byte[] MicrosoftExtensionsFileProvidersPhysical => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersPhysical, "aspnet50.Microsoft.Extensions.FileProviders.Physical");
+ internal static byte[] MicrosoftExtensionsFileProvidersPhysical => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileProvidersPhysical, "aspnet10.Microsoft.Extensions.FileProviders.Physical");
private static byte[]? _MicrosoftExtensionsFileSystemGlobbing;
- internal static byte[] MicrosoftExtensionsFileSystemGlobbing => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileSystemGlobbing, "aspnet50.Microsoft.Extensions.FileSystemGlobbing");
+ internal static byte[] MicrosoftExtensionsFileSystemGlobbing => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsFileSystemGlobbing, "aspnet10.Microsoft.Extensions.FileSystemGlobbing");
private static byte[]? _MicrosoftExtensionsHostingAbstractions;
- internal static byte[] MicrosoftExtensionsHostingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHostingAbstractions, "aspnet50.Microsoft.Extensions.Hosting.Abstractions");
+ internal static byte[] MicrosoftExtensionsHostingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHostingAbstractions, "aspnet10.Microsoft.Extensions.Hosting.Abstractions");
private static byte[]? _MicrosoftExtensionsHosting;
- internal static byte[] MicrosoftExtensionsHosting => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHosting, "aspnet50.Microsoft.Extensions.Hosting");
+ internal static byte[] MicrosoftExtensionsHosting => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHosting, "aspnet10.Microsoft.Extensions.Hosting");
private static byte[]? _MicrosoftExtensionsHttp;
- internal static byte[] MicrosoftExtensionsHttp => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHttp, "aspnet50.Microsoft.Extensions.Http");
+ internal static byte[] MicrosoftExtensionsHttp => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsHttp, "aspnet10.Microsoft.Extensions.Http");
private static byte[]? _MicrosoftExtensionsIdentityCore;
- internal static byte[] MicrosoftExtensionsIdentityCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsIdentityCore, "aspnet50.Microsoft.Extensions.Identity.Core");
+ internal static byte[] MicrosoftExtensionsIdentityCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsIdentityCore, "aspnet10.Microsoft.Extensions.Identity.Core");
private static byte[]? _MicrosoftExtensionsIdentityStores;
- internal static byte[] MicrosoftExtensionsIdentityStores => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsIdentityStores, "aspnet50.Microsoft.Extensions.Identity.Stores");
+ internal static byte[] MicrosoftExtensionsIdentityStores => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsIdentityStores, "aspnet10.Microsoft.Extensions.Identity.Stores");
private static byte[]? _MicrosoftExtensionsLocalizationAbstractions;
- internal static byte[] MicrosoftExtensionsLocalizationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLocalizationAbstractions, "aspnet50.Microsoft.Extensions.Localization.Abstractions");
+ internal static byte[] MicrosoftExtensionsLocalizationAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLocalizationAbstractions, "aspnet10.Microsoft.Extensions.Localization.Abstractions");
private static byte[]? _MicrosoftExtensionsLocalization;
- internal static byte[] MicrosoftExtensionsLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLocalization, "aspnet50.Microsoft.Extensions.Localization");
+ internal static byte[] MicrosoftExtensionsLocalization => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLocalization, "aspnet10.Microsoft.Extensions.Localization");
private static byte[]? _MicrosoftExtensionsLoggingAbstractions;
- internal static byte[] MicrosoftExtensionsLoggingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingAbstractions, "aspnet50.Microsoft.Extensions.Logging.Abstractions");
+ internal static byte[] MicrosoftExtensionsLoggingAbstractions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingAbstractions, "aspnet10.Microsoft.Extensions.Logging.Abstractions");
private static byte[]? _MicrosoftExtensionsLoggingConfiguration;
- internal static byte[] MicrosoftExtensionsLoggingConfiguration => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingConfiguration, "aspnet50.Microsoft.Extensions.Logging.Configuration");
+ internal static byte[] MicrosoftExtensionsLoggingConfiguration => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingConfiguration, "aspnet10.Microsoft.Extensions.Logging.Configuration");
private static byte[]? _MicrosoftExtensionsLoggingConsole;
- internal static byte[] MicrosoftExtensionsLoggingConsole => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingConsole, "aspnet50.Microsoft.Extensions.Logging.Console");
+ internal static byte[] MicrosoftExtensionsLoggingConsole => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingConsole, "aspnet10.Microsoft.Extensions.Logging.Console");
private static byte[]? _MicrosoftExtensionsLoggingDebug;
- internal static byte[] MicrosoftExtensionsLoggingDebug => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingDebug, "aspnet50.Microsoft.Extensions.Logging.Debug");
+ internal static byte[] MicrosoftExtensionsLoggingDebug => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingDebug, "aspnet10.Microsoft.Extensions.Logging.Debug");
private static byte[]? _MicrosoftExtensionsLogging;
- internal static byte[] MicrosoftExtensionsLogging => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLogging, "aspnet50.Microsoft.Extensions.Logging");
+ internal static byte[] MicrosoftExtensionsLogging => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLogging, "aspnet10.Microsoft.Extensions.Logging");
private static byte[]? _MicrosoftExtensionsLoggingEventLog;
- internal static byte[] MicrosoftExtensionsLoggingEventLog => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingEventLog, "aspnet50.Microsoft.Extensions.Logging.EventLog");
+ internal static byte[] MicrosoftExtensionsLoggingEventLog => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingEventLog, "aspnet10.Microsoft.Extensions.Logging.EventLog");
private static byte[]? _MicrosoftExtensionsLoggingEventSource;
- internal static byte[] MicrosoftExtensionsLoggingEventSource => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingEventSource, "aspnet50.Microsoft.Extensions.Logging.EventSource");
+ internal static byte[] MicrosoftExtensionsLoggingEventSource => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingEventSource, "aspnet10.Microsoft.Extensions.Logging.EventSource");
private static byte[]? _MicrosoftExtensionsLoggingTraceSource;
- internal static byte[] MicrosoftExtensionsLoggingTraceSource => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingTraceSource, "aspnet50.Microsoft.Extensions.Logging.TraceSource");
+ internal static byte[] MicrosoftExtensionsLoggingTraceSource => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsLoggingTraceSource, "aspnet10.Microsoft.Extensions.Logging.TraceSource");
private static byte[]? _MicrosoftExtensionsObjectPool;
- internal static byte[] MicrosoftExtensionsObjectPool => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsObjectPool, "aspnet50.Microsoft.Extensions.ObjectPool");
+ internal static byte[] MicrosoftExtensionsObjectPool => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsObjectPool, "aspnet10.Microsoft.Extensions.ObjectPool");
private static byte[]? _MicrosoftExtensionsOptionsConfigurationExtensions;
- internal static byte[] MicrosoftExtensionsOptionsConfigurationExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptionsConfigurationExtensions, "aspnet50.Microsoft.Extensions.Options.ConfigurationExtensions");
+ internal static byte[] MicrosoftExtensionsOptionsConfigurationExtensions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptionsConfigurationExtensions, "aspnet10.Microsoft.Extensions.Options.ConfigurationExtensions");
private static byte[]? _MicrosoftExtensionsOptionsDataAnnotations;
- internal static byte[] MicrosoftExtensionsOptionsDataAnnotations => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptionsDataAnnotations, "aspnet50.Microsoft.Extensions.Options.DataAnnotations");
+ internal static byte[] MicrosoftExtensionsOptionsDataAnnotations => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptionsDataAnnotations, "aspnet10.Microsoft.Extensions.Options.DataAnnotations");
private static byte[]? _MicrosoftExtensionsOptions;
- internal static byte[] MicrosoftExtensionsOptions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptions, "aspnet50.Microsoft.Extensions.Options");
+ internal static byte[] MicrosoftExtensionsOptions => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsOptions, "aspnet10.Microsoft.Extensions.Options");
private static byte[]? _MicrosoftExtensionsPrimitives;
- internal static byte[] MicrosoftExtensionsPrimitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsPrimitives, "aspnet50.Microsoft.Extensions.Primitives");
+ internal static byte[] MicrosoftExtensionsPrimitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsPrimitives, "aspnet10.Microsoft.Extensions.Primitives");
private static byte[]? _MicrosoftExtensionsWebEncoders;
- internal static byte[] MicrosoftExtensionsWebEncoders => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsWebEncoders, "aspnet50.Microsoft.Extensions.WebEncoders");
+ internal static byte[] MicrosoftExtensionsWebEncoders => ResourceLoader.GetOrCreateResource(ref _MicrosoftExtensionsWebEncoders, "aspnet10.Microsoft.Extensions.WebEncoders");
private static byte[]? _MicrosoftJSInterop;
- internal static byte[] MicrosoftJSInterop => ResourceLoader.GetOrCreateResource(ref _MicrosoftJSInterop, "aspnet50.Microsoft.JSInterop");
+ internal static byte[] MicrosoftJSInterop => ResourceLoader.GetOrCreateResource(ref _MicrosoftJSInterop, "aspnet10.Microsoft.JSInterop");
private static byte[]? _MicrosoftNetHttpHeaders;
- internal static byte[] MicrosoftNetHttpHeaders => ResourceLoader.GetOrCreateResource(ref _MicrosoftNetHttpHeaders, "aspnet50.Microsoft.Net.Http.Headers");
+ internal static byte[] MicrosoftNetHttpHeaders => ResourceLoader.GetOrCreateResource(ref _MicrosoftNetHttpHeaders, "aspnet10.Microsoft.Net.Http.Headers");
private static byte[]? _MicrosoftWin32Registry;
- internal static byte[] MicrosoftWin32Registry => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Registry, "aspnet50.Microsoft.Win32.Registry");
+ internal static byte[] MicrosoftWin32Registry => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Registry, "aspnet10.Microsoft.Win32.Registry");
private static byte[]? _SystemDiagnosticsEventLog;
- internal static byte[] SystemDiagnosticsEventLog => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsEventLog, "aspnet50.System.Diagnostics.EventLog");
+ internal static byte[] SystemDiagnosticsEventLog => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsEventLog, "aspnet10.System.Diagnostics.EventLog");
private static byte[]? _SystemIOPipelines;
- internal static byte[] SystemIOPipelines => ResourceLoader.GetOrCreateResource(ref _SystemIOPipelines, "aspnet50.System.IO.Pipelines");
+ internal static byte[] SystemIOPipelines => ResourceLoader.GetOrCreateResource(ref _SystemIOPipelines, "aspnet10.System.IO.Pipelines");
private static byte[]? _SystemSecurityAccessControl;
- internal static byte[] SystemSecurityAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemSecurityAccessControl, "aspnet50.System.Security.AccessControl");
+ internal static byte[] SystemSecurityAccessControl => ResourceLoader.GetOrCreateResource(ref _SystemSecurityAccessControl, "aspnet10.System.Security.AccessControl");
private static byte[]? _SystemSecurityCryptographyCng;
- internal static byte[] SystemSecurityCryptographyCng => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCng, "aspnet50.System.Security.Cryptography.Cng");
+ internal static byte[] SystemSecurityCryptographyCng => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCng, "aspnet10.System.Security.Cryptography.Cng");
private static byte[]? _SystemSecurityCryptographyXml;
- internal static byte[] SystemSecurityCryptographyXml => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyXml, "aspnet50.System.Security.Cryptography.Xml");
+ internal static byte[] SystemSecurityCryptographyXml => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyXml, "aspnet10.System.Security.Cryptography.Xml");
private static byte[]? _SystemSecurityPermissions;
- internal static byte[] SystemSecurityPermissions => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPermissions, "aspnet50.System.Security.Permissions");
+ internal static byte[] SystemSecurityPermissions => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPermissions, "aspnet10.System.Security.Permissions");
private static byte[]? _SystemSecurityPrincipalWindows;
- internal static byte[] SystemSecurityPrincipalWindows => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipalWindows, "aspnet50.System.Security.Principal.Windows");
+ internal static byte[] SystemSecurityPrincipalWindows => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipalWindows, "aspnet10.System.Security.Principal.Windows");
private static byte[]? _SystemWindowsExtensions;
- internal static byte[] SystemWindowsExtensions => ResourceLoader.GetOrCreateResource(ref _SystemWindowsExtensions, "aspnet50.System.Windows.Extensions");
+ internal static byte[] SystemWindowsExtensions => ResourceLoader.GetOrCreateResource(ref _SystemWindowsExtensions, "aspnet10.System.Windows.Extensions");
}
- public static class AspNet50
+ public static class AspNet10
{
- public static PortableExecutableReference MicrosoftAspNetCoreAntiforgery { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAntiforgery).GetReference(filePath: "Microsoft.AspNetCore.Antiforgery.dll", display: "Microsoft.AspNetCore.Antiforgery (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthenticationAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Abstractions.dll", display: "Microsoft.AspNetCore.Authentication.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationCookies { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthenticationCookies).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Cookies.dll", display: "Microsoft.AspNetCore.Authentication.Cookies (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationCore { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthenticationCore).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Core.dll", display: "Microsoft.AspNetCore.Authentication.Core (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthentication { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthentication).GetReference(filePath: "Microsoft.AspNetCore.Authentication.dll", display: "Microsoft.AspNetCore.Authentication (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationOAuth { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthenticationOAuth).GetReference(filePath: "Microsoft.AspNetCore.Authentication.OAuth.dll", display: "Microsoft.AspNetCore.Authentication.OAuth (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthorization { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthorization).GetReference(filePath: "Microsoft.AspNetCore.Authorization.dll", display: "Microsoft.AspNetCore.Authorization (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreAuthorizationPolicy { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreAuthorizationPolicy).GetReference(filePath: "Microsoft.AspNetCore.Authorization.Policy.dll", display: "Microsoft.AspNetCore.Authorization.Policy (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreComponentsAuthorization { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreComponentsAuthorization).GetReference(filePath: "Microsoft.AspNetCore.Components.Authorization.dll", display: "Microsoft.AspNetCore.Components.Authorization (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreComponents { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreComponents).GetReference(filePath: "Microsoft.AspNetCore.Components.dll", display: "Microsoft.AspNetCore.Components (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreComponentsForms { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreComponentsForms).GetReference(filePath: "Microsoft.AspNetCore.Components.Forms.dll", display: "Microsoft.AspNetCore.Components.Forms (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreComponentsServer { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreComponentsServer).GetReference(filePath: "Microsoft.AspNetCore.Components.Server.dll", display: "Microsoft.AspNetCore.Components.Server (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreComponentsWeb { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreComponentsWeb).GetReference(filePath: "Microsoft.AspNetCore.Components.Web.dll", display: "Microsoft.AspNetCore.Components.Web (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreConnectionsAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreConnectionsAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Connections.Abstractions.dll", display: "Microsoft.AspNetCore.Connections.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreCookiePolicy { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreCookiePolicy).GetReference(filePath: "Microsoft.AspNetCore.CookiePolicy.dll", display: "Microsoft.AspNetCore.CookiePolicy (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreCors { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreCors).GetReference(filePath: "Microsoft.AspNetCore.Cors.dll", display: "Microsoft.AspNetCore.Cors (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreCryptographyInternal { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreCryptographyInternal).GetReference(filePath: "Microsoft.AspNetCore.Cryptography.Internal.dll", display: "Microsoft.AspNetCore.Cryptography.Internal (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreCryptographyKeyDerivation { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreCryptographyKeyDerivation).GetReference(filePath: "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", display: "Microsoft.AspNetCore.Cryptography.KeyDerivation (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreDataProtectionAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreDataProtectionAbstractions).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.Abstractions.dll", display: "Microsoft.AspNetCore.DataProtection.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreDataProtection { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreDataProtection).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.dll", display: "Microsoft.AspNetCore.DataProtection (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreDataProtectionExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreDataProtectionExtensions).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.Extensions.dll", display: "Microsoft.AspNetCore.DataProtection.Extensions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreDiagnosticsAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreDiagnosticsAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.Abstractions.dll", display: "Microsoft.AspNetCore.Diagnostics.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreDiagnostics { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreDiagnostics).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.dll", display: "Microsoft.AspNetCore.Diagnostics (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreDiagnosticsHealthChecks { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreDiagnosticsHealthChecks).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll", display: "Microsoft.AspNetCore.Diagnostics.HealthChecks (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCore { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCore).GetReference(filePath: "Microsoft.AspNetCore.dll", display: "Microsoft.AspNetCore (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHostFiltering { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHostFiltering).GetReference(filePath: "Microsoft.AspNetCore.HostFiltering.dll", display: "Microsoft.AspNetCore.HostFiltering (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHostingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHostingAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Hosting.Abstractions.dll", display: "Microsoft.AspNetCore.Hosting.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHosting { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHosting).GetReference(filePath: "Microsoft.AspNetCore.Hosting.dll", display: "Microsoft.AspNetCore.Hosting (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHostingServerAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHostingServerAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", display: "Microsoft.AspNetCore.Hosting.Server.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHtmlAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHtmlAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Html.Abstractions.dll", display: "Microsoft.AspNetCore.Html.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Http.Abstractions.dll", display: "Microsoft.AspNetCore.Http.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpConnectionsCommon { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpConnectionsCommon).GetReference(filePath: "Microsoft.AspNetCore.Http.Connections.Common.dll", display: "Microsoft.AspNetCore.Http.Connections.Common (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpConnections { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpConnections).GetReference(filePath: "Microsoft.AspNetCore.Http.Connections.dll", display: "Microsoft.AspNetCore.Http.Connections (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttp { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttp).GetReference(filePath: "Microsoft.AspNetCore.Http.dll", display: "Microsoft.AspNetCore.Http (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpExtensions).GetReference(filePath: "Microsoft.AspNetCore.Http.Extensions.dll", display: "Microsoft.AspNetCore.Http.Extensions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpFeatures { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpFeatures).GetReference(filePath: "Microsoft.AspNetCore.Http.Features.dll", display: "Microsoft.AspNetCore.Http.Features (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpOverrides { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpOverrides).GetReference(filePath: "Microsoft.AspNetCore.HttpOverrides.dll", display: "Microsoft.AspNetCore.HttpOverrides (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreHttpsPolicy { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreHttpsPolicy).GetReference(filePath: "Microsoft.AspNetCore.HttpsPolicy.dll", display: "Microsoft.AspNetCore.HttpsPolicy (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreIdentity { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreIdentity).GetReference(filePath: "Microsoft.AspNetCore.Identity.dll", display: "Microsoft.AspNetCore.Identity (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreLocalization { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreLocalization).GetReference(filePath: "Microsoft.AspNetCore.Localization.dll", display: "Microsoft.AspNetCore.Localization (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreLocalizationRouting { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreLocalizationRouting).GetReference(filePath: "Microsoft.AspNetCore.Localization.Routing.dll", display: "Microsoft.AspNetCore.Localization.Routing (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMetadata { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMetadata).GetReference(filePath: "Microsoft.AspNetCore.Metadata.dll", display: "Microsoft.AspNetCore.Metadata (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Abstractions.dll", display: "Microsoft.AspNetCore.Mvc.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcApiExplorer { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcApiExplorer).GetReference(filePath: "Microsoft.AspNetCore.Mvc.ApiExplorer.dll", display: "Microsoft.AspNetCore.Mvc.ApiExplorer (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcCore { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcCore).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Core.dll", display: "Microsoft.AspNetCore.Mvc.Core (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcCors { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcCors).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Cors.dll", display: "Microsoft.AspNetCore.Mvc.Cors (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcDataAnnotations { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcDataAnnotations).GetReference(filePath: "Microsoft.AspNetCore.Mvc.DataAnnotations.dll", display: "Microsoft.AspNetCore.Mvc.DataAnnotations (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvc { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvc).GetReference(filePath: "Microsoft.AspNetCore.Mvc.dll", display: "Microsoft.AspNetCore.Mvc (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcFormattersJson { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcFormattersJson).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Formatters.Json.dll", display: "Microsoft.AspNetCore.Mvc.Formatters.Json (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcFormattersXml { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcFormattersXml).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll", display: "Microsoft.AspNetCore.Mvc.Formatters.Xml (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcLocalization { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcLocalization).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Localization.dll", display: "Microsoft.AspNetCore.Mvc.Localization (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcRazor { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcRazor).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Razor.dll", display: "Microsoft.AspNetCore.Mvc.Razor (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcRazorPages { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcRazorPages).GetReference(filePath: "Microsoft.AspNetCore.Mvc.RazorPages.dll", display: "Microsoft.AspNetCore.Mvc.RazorPages (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcTagHelpers { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcTagHelpers).GetReference(filePath: "Microsoft.AspNetCore.Mvc.TagHelpers.dll", display: "Microsoft.AspNetCore.Mvc.TagHelpers (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreMvcViewFeatures { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreMvcViewFeatures).GetReference(filePath: "Microsoft.AspNetCore.Mvc.ViewFeatures.dll", display: "Microsoft.AspNetCore.Mvc.ViewFeatures (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreRazor { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreRazor).GetReference(filePath: "Microsoft.AspNetCore.Razor.dll", display: "Microsoft.AspNetCore.Razor (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreRazorRuntime { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreRazorRuntime).GetReference(filePath: "Microsoft.AspNetCore.Razor.Runtime.dll", display: "Microsoft.AspNetCore.Razor.Runtime (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreResponseCachingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreResponseCachingAbstractions).GetReference(filePath: "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", display: "Microsoft.AspNetCore.ResponseCaching.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreResponseCaching { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreResponseCaching).GetReference(filePath: "Microsoft.AspNetCore.ResponseCaching.dll", display: "Microsoft.AspNetCore.ResponseCaching (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreResponseCompression { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreResponseCompression).GetReference(filePath: "Microsoft.AspNetCore.ResponseCompression.dll", display: "Microsoft.AspNetCore.ResponseCompression (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreRewrite { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreRewrite).GetReference(filePath: "Microsoft.AspNetCore.Rewrite.dll", display: "Microsoft.AspNetCore.Rewrite (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreRoutingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreRoutingAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Routing.Abstractions.dll", display: "Microsoft.AspNetCore.Routing.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreRouting { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreRouting).GetReference(filePath: "Microsoft.AspNetCore.Routing.dll", display: "Microsoft.AspNetCore.Routing (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreServerHttpSys { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreServerHttpSys).GetReference(filePath: "Microsoft.AspNetCore.Server.HttpSys.dll", display: "Microsoft.AspNetCore.Server.HttpSys (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreServerIIS { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreServerIIS).GetReference(filePath: "Microsoft.AspNetCore.Server.IIS.dll", display: "Microsoft.AspNetCore.Server.IIS (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreServerIISIntegration { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreServerIISIntegration).GetReference(filePath: "Microsoft.AspNetCore.Server.IISIntegration.dll", display: "Microsoft.AspNetCore.Server.IISIntegration (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelCore { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreServerKestrelCore).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Core.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Core (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreServerKestrel { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreServerKestrel).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.dll", display: "Microsoft.AspNetCore.Server.Kestrel (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelTransportSockets { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreServerKestrelTransportSockets).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreSession { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreSession).GetReference(filePath: "Microsoft.AspNetCore.Session.dll", display: "Microsoft.AspNetCore.Session (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreSignalRCommon { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreSignalRCommon).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Common.dll", display: "Microsoft.AspNetCore.SignalR.Common (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreSignalRCore { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreSignalRCore).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Core.dll", display: "Microsoft.AspNetCore.SignalR.Core (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreSignalR { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreSignalR).GetReference(filePath: "Microsoft.AspNetCore.SignalR.dll", display: "Microsoft.AspNetCore.SignalR (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreSignalRProtocolsJson { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreSignalRProtocolsJson).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Protocols.Json.dll", display: "Microsoft.AspNetCore.SignalR.Protocols.Json (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreStaticFiles { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreStaticFiles).GetReference(filePath: "Microsoft.AspNetCore.StaticFiles.dll", display: "Microsoft.AspNetCore.StaticFiles (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreWebSockets { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreWebSockets).GetReference(filePath: "Microsoft.AspNetCore.WebSockets.dll", display: "Microsoft.AspNetCore.WebSockets (aspnet50)");
- public static PortableExecutableReference MicrosoftAspNetCoreWebUtilities { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftAspNetCoreWebUtilities).GetReference(filePath: "Microsoft.AspNetCore.WebUtilities.dll", display: "Microsoft.AspNetCore.WebUtilities (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsCachingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsCachingAbstractions).GetReference(filePath: "Microsoft.Extensions.Caching.Abstractions.dll", display: "Microsoft.Extensions.Caching.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsCachingMemory { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsCachingMemory).GetReference(filePath: "Microsoft.Extensions.Caching.Memory.dll", display: "Microsoft.Extensions.Caching.Memory (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationAbstractions).GetReference(filePath: "Microsoft.Extensions.Configuration.Abstractions.dll", display: "Microsoft.Extensions.Configuration.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationBinder { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationBinder).GetReference(filePath: "Microsoft.Extensions.Configuration.Binder.dll", display: "Microsoft.Extensions.Configuration.Binder (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationCommandLine { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationCommandLine).GetReference(filePath: "Microsoft.Extensions.Configuration.CommandLine.dll", display: "Microsoft.Extensions.Configuration.CommandLine (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfiguration { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfiguration).GetReference(filePath: "Microsoft.Extensions.Configuration.dll", display: "Microsoft.Extensions.Configuration (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationEnvironmentVariables { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationEnvironmentVariables).GetReference(filePath: "Microsoft.Extensions.Configuration.EnvironmentVariables.dll", display: "Microsoft.Extensions.Configuration.EnvironmentVariables (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationFileExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationFileExtensions).GetReference(filePath: "Microsoft.Extensions.Configuration.FileExtensions.dll", display: "Microsoft.Extensions.Configuration.FileExtensions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationIni { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationIni).GetReference(filePath: "Microsoft.Extensions.Configuration.Ini.dll", display: "Microsoft.Extensions.Configuration.Ini (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationJson { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationJson).GetReference(filePath: "Microsoft.Extensions.Configuration.Json.dll", display: "Microsoft.Extensions.Configuration.Json (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationKeyPerFile { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationKeyPerFile).GetReference(filePath: "Microsoft.Extensions.Configuration.KeyPerFile.dll", display: "Microsoft.Extensions.Configuration.KeyPerFile (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationUserSecrets { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationUserSecrets).GetReference(filePath: "Microsoft.Extensions.Configuration.UserSecrets.dll", display: "Microsoft.Extensions.Configuration.UserSecrets (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsConfigurationXml { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsConfigurationXml).GetReference(filePath: "Microsoft.Extensions.Configuration.Xml.dll", display: "Microsoft.Extensions.Configuration.Xml (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsDependencyInjectionAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsDependencyInjectionAbstractions).GetReference(filePath: "Microsoft.Extensions.DependencyInjection.Abstractions.dll", display: "Microsoft.Extensions.DependencyInjection.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsDependencyInjection { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsDependencyInjection).GetReference(filePath: "Microsoft.Extensions.DependencyInjection.dll", display: "Microsoft.Extensions.DependencyInjection (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsDiagnosticsHealthChecksAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsDiagnosticsHealthChecksAbstractions).GetReference(filePath: "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", display: "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsDiagnosticsHealthChecks { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsDiagnosticsHealthChecks).GetReference(filePath: "Microsoft.Extensions.Diagnostics.HealthChecks.dll", display: "Microsoft.Extensions.Diagnostics.HealthChecks (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsFileProvidersAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsFileProvidersAbstractions).GetReference(filePath: "Microsoft.Extensions.FileProviders.Abstractions.dll", display: "Microsoft.Extensions.FileProviders.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsFileProvidersComposite { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsFileProvidersComposite).GetReference(filePath: "Microsoft.Extensions.FileProviders.Composite.dll", display: "Microsoft.Extensions.FileProviders.Composite (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsFileProvidersEmbedded { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsFileProvidersEmbedded).GetReference(filePath: "Microsoft.Extensions.FileProviders.Embedded.dll", display: "Microsoft.Extensions.FileProviders.Embedded (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsFileProvidersPhysical { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsFileProvidersPhysical).GetReference(filePath: "Microsoft.Extensions.FileProviders.Physical.dll", display: "Microsoft.Extensions.FileProviders.Physical (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsFileSystemGlobbing { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsFileSystemGlobbing).GetReference(filePath: "Microsoft.Extensions.FileSystemGlobbing.dll", display: "Microsoft.Extensions.FileSystemGlobbing (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsHostingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsHostingAbstractions).GetReference(filePath: "Microsoft.Extensions.Hosting.Abstractions.dll", display: "Microsoft.Extensions.Hosting.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsHosting { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsHosting).GetReference(filePath: "Microsoft.Extensions.Hosting.dll", display: "Microsoft.Extensions.Hosting (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsHttp { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsHttp).GetReference(filePath: "Microsoft.Extensions.Http.dll", display: "Microsoft.Extensions.Http (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsIdentityCore { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsIdentityCore).GetReference(filePath: "Microsoft.Extensions.Identity.Core.dll", display: "Microsoft.Extensions.Identity.Core (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsIdentityStores { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsIdentityStores).GetReference(filePath: "Microsoft.Extensions.Identity.Stores.dll", display: "Microsoft.Extensions.Identity.Stores (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLocalizationAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLocalizationAbstractions).GetReference(filePath: "Microsoft.Extensions.Localization.Abstractions.dll", display: "Microsoft.Extensions.Localization.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLocalization { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLocalization).GetReference(filePath: "Microsoft.Extensions.Localization.dll", display: "Microsoft.Extensions.Localization (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingAbstractions).GetReference(filePath: "Microsoft.Extensions.Logging.Abstractions.dll", display: "Microsoft.Extensions.Logging.Abstractions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingConfiguration { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingConfiguration).GetReference(filePath: "Microsoft.Extensions.Logging.Configuration.dll", display: "Microsoft.Extensions.Logging.Configuration (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingConsole { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingConsole).GetReference(filePath: "Microsoft.Extensions.Logging.Console.dll", display: "Microsoft.Extensions.Logging.Console (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingDebug { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingDebug).GetReference(filePath: "Microsoft.Extensions.Logging.Debug.dll", display: "Microsoft.Extensions.Logging.Debug (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLogging { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLogging).GetReference(filePath: "Microsoft.Extensions.Logging.dll", display: "Microsoft.Extensions.Logging (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingEventLog { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingEventLog).GetReference(filePath: "Microsoft.Extensions.Logging.EventLog.dll", display: "Microsoft.Extensions.Logging.EventLog (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingEventSource { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingEventSource).GetReference(filePath: "Microsoft.Extensions.Logging.EventSource.dll", display: "Microsoft.Extensions.Logging.EventSource (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsLoggingTraceSource { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsLoggingTraceSource).GetReference(filePath: "Microsoft.Extensions.Logging.TraceSource.dll", display: "Microsoft.Extensions.Logging.TraceSource (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsObjectPool { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsObjectPool).GetReference(filePath: "Microsoft.Extensions.ObjectPool.dll", display: "Microsoft.Extensions.ObjectPool (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsOptionsConfigurationExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsOptionsConfigurationExtensions).GetReference(filePath: "Microsoft.Extensions.Options.ConfigurationExtensions.dll", display: "Microsoft.Extensions.Options.ConfigurationExtensions (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsOptionsDataAnnotations { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsOptionsDataAnnotations).GetReference(filePath: "Microsoft.Extensions.Options.DataAnnotations.dll", display: "Microsoft.Extensions.Options.DataAnnotations (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsOptions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsOptions).GetReference(filePath: "Microsoft.Extensions.Options.dll", display: "Microsoft.Extensions.Options (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsPrimitives { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsPrimitives).GetReference(filePath: "Microsoft.Extensions.Primitives.dll", display: "Microsoft.Extensions.Primitives (aspnet50)");
- public static PortableExecutableReference MicrosoftExtensionsWebEncoders { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftExtensionsWebEncoders).GetReference(filePath: "Microsoft.Extensions.WebEncoders.dll", display: "Microsoft.Extensions.WebEncoders (aspnet50)");
- public static PortableExecutableReference MicrosoftJSInterop { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftJSInterop).GetReference(filePath: "Microsoft.JSInterop.dll", display: "Microsoft.JSInterop (aspnet50)");
- public static PortableExecutableReference MicrosoftNetHttpHeaders { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftNetHttpHeaders).GetReference(filePath: "Microsoft.Net.Http.Headers.dll", display: "Microsoft.Net.Http.Headers (aspnet50)");
- public static PortableExecutableReference MicrosoftWin32Registry { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.MicrosoftWin32Registry).GetReference(filePath: "Microsoft.Win32.Registry.dll", display: "Microsoft.Win32.Registry (aspnet50)");
- public static PortableExecutableReference SystemDiagnosticsEventLog { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemDiagnosticsEventLog).GetReference(filePath: "System.Diagnostics.EventLog.dll", display: "System.Diagnostics.EventLog (aspnet50)");
- public static PortableExecutableReference SystemIOPipelines { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemIOPipelines).GetReference(filePath: "System.IO.Pipelines.dll", display: "System.IO.Pipelines (aspnet50)");
- public static PortableExecutableReference SystemSecurityAccessControl { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemSecurityAccessControl).GetReference(filePath: "System.Security.AccessControl.dll", display: "System.Security.AccessControl (aspnet50)");
- public static PortableExecutableReference SystemSecurityCryptographyCng { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemSecurityCryptographyCng).GetReference(filePath: "System.Security.Cryptography.Cng.dll", display: "System.Security.Cryptography.Cng (aspnet50)");
- public static PortableExecutableReference SystemSecurityCryptographyXml { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemSecurityCryptographyXml).GetReference(filePath: "System.Security.Cryptography.Xml.dll", display: "System.Security.Cryptography.Xml (aspnet50)");
- public static PortableExecutableReference SystemSecurityPermissions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemSecurityPermissions).GetReference(filePath: "System.Security.Permissions.dll", display: "System.Security.Permissions (aspnet50)");
- public static PortableExecutableReference SystemSecurityPrincipalWindows { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemSecurityPrincipalWindows).GetReference(filePath: "System.Security.Principal.Windows.dll", display: "System.Security.Principal.Windows (aspnet50)");
- public static PortableExecutableReference SystemWindowsExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet50Resources.SystemWindowsExtensions).GetReference(filePath: "System.Windows.Extensions.dll", display: "System.Windows.Extensions (aspnet50)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAntiforgery { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAntiforgery).GetReference(filePath: "Microsoft.AspNetCore.Antiforgery.dll", display: "Microsoft.AspNetCore.Antiforgery (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthenticationAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Abstractions.dll", display: "Microsoft.AspNetCore.Authentication.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationCookies { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthenticationCookies).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Cookies.dll", display: "Microsoft.AspNetCore.Authentication.Cookies (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationCore { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthenticationCore).GetReference(filePath: "Microsoft.AspNetCore.Authentication.Core.dll", display: "Microsoft.AspNetCore.Authentication.Core (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthentication { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthentication).GetReference(filePath: "Microsoft.AspNetCore.Authentication.dll", display: "Microsoft.AspNetCore.Authentication (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthenticationOAuth { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthenticationOAuth).GetReference(filePath: "Microsoft.AspNetCore.Authentication.OAuth.dll", display: "Microsoft.AspNetCore.Authentication.OAuth (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthorization { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthorization).GetReference(filePath: "Microsoft.AspNetCore.Authorization.dll", display: "Microsoft.AspNetCore.Authorization (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreAuthorizationPolicy { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreAuthorizationPolicy).GetReference(filePath: "Microsoft.AspNetCore.Authorization.Policy.dll", display: "Microsoft.AspNetCore.Authorization.Policy (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreComponentsAuthorization { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreComponentsAuthorization).GetReference(filePath: "Microsoft.AspNetCore.Components.Authorization.dll", display: "Microsoft.AspNetCore.Components.Authorization (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreComponents { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreComponents).GetReference(filePath: "Microsoft.AspNetCore.Components.dll", display: "Microsoft.AspNetCore.Components (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreComponentsForms { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreComponentsForms).GetReference(filePath: "Microsoft.AspNetCore.Components.Forms.dll", display: "Microsoft.AspNetCore.Components.Forms (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreComponentsServer { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreComponentsServer).GetReference(filePath: "Microsoft.AspNetCore.Components.Server.dll", display: "Microsoft.AspNetCore.Components.Server (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreComponentsWeb { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreComponentsWeb).GetReference(filePath: "Microsoft.AspNetCore.Components.Web.dll", display: "Microsoft.AspNetCore.Components.Web (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreConnectionsAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreConnectionsAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Connections.Abstractions.dll", display: "Microsoft.AspNetCore.Connections.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreCookiePolicy { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreCookiePolicy).GetReference(filePath: "Microsoft.AspNetCore.CookiePolicy.dll", display: "Microsoft.AspNetCore.CookiePolicy (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreCors { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreCors).GetReference(filePath: "Microsoft.AspNetCore.Cors.dll", display: "Microsoft.AspNetCore.Cors (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreCryptographyInternal { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreCryptographyInternal).GetReference(filePath: "Microsoft.AspNetCore.Cryptography.Internal.dll", display: "Microsoft.AspNetCore.Cryptography.Internal (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreCryptographyKeyDerivation { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreCryptographyKeyDerivation).GetReference(filePath: "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", display: "Microsoft.AspNetCore.Cryptography.KeyDerivation (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreDataProtectionAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreDataProtectionAbstractions).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.Abstractions.dll", display: "Microsoft.AspNetCore.DataProtection.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreDataProtection { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreDataProtection).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.dll", display: "Microsoft.AspNetCore.DataProtection (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreDataProtectionExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreDataProtectionExtensions).GetReference(filePath: "Microsoft.AspNetCore.DataProtection.Extensions.dll", display: "Microsoft.AspNetCore.DataProtection.Extensions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreDiagnosticsAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreDiagnosticsAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.Abstractions.dll", display: "Microsoft.AspNetCore.Diagnostics.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreDiagnostics { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreDiagnostics).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.dll", display: "Microsoft.AspNetCore.Diagnostics (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreDiagnosticsHealthChecks { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreDiagnosticsHealthChecks).GetReference(filePath: "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll", display: "Microsoft.AspNetCore.Diagnostics.HealthChecks (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCore { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCore).GetReference(filePath: "Microsoft.AspNetCore.dll", display: "Microsoft.AspNetCore (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHostFiltering { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHostFiltering).GetReference(filePath: "Microsoft.AspNetCore.HostFiltering.dll", display: "Microsoft.AspNetCore.HostFiltering (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHostingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHostingAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Hosting.Abstractions.dll", display: "Microsoft.AspNetCore.Hosting.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHosting { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHosting).GetReference(filePath: "Microsoft.AspNetCore.Hosting.dll", display: "Microsoft.AspNetCore.Hosting (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHostingServerAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHostingServerAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", display: "Microsoft.AspNetCore.Hosting.Server.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHtmlAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHtmlAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Html.Abstractions.dll", display: "Microsoft.AspNetCore.Html.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Http.Abstractions.dll", display: "Microsoft.AspNetCore.Http.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpConnectionsCommon { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpConnectionsCommon).GetReference(filePath: "Microsoft.AspNetCore.Http.Connections.Common.dll", display: "Microsoft.AspNetCore.Http.Connections.Common (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpConnections { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpConnections).GetReference(filePath: "Microsoft.AspNetCore.Http.Connections.dll", display: "Microsoft.AspNetCore.Http.Connections (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttp { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttp).GetReference(filePath: "Microsoft.AspNetCore.Http.dll", display: "Microsoft.AspNetCore.Http (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpExtensions).GetReference(filePath: "Microsoft.AspNetCore.Http.Extensions.dll", display: "Microsoft.AspNetCore.Http.Extensions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpFeatures { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpFeatures).GetReference(filePath: "Microsoft.AspNetCore.Http.Features.dll", display: "Microsoft.AspNetCore.Http.Features (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpOverrides { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpOverrides).GetReference(filePath: "Microsoft.AspNetCore.HttpOverrides.dll", display: "Microsoft.AspNetCore.HttpOverrides (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreHttpsPolicy { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreHttpsPolicy).GetReference(filePath: "Microsoft.AspNetCore.HttpsPolicy.dll", display: "Microsoft.AspNetCore.HttpsPolicy (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreIdentity { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreIdentity).GetReference(filePath: "Microsoft.AspNetCore.Identity.dll", display: "Microsoft.AspNetCore.Identity (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreLocalization { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreLocalization).GetReference(filePath: "Microsoft.AspNetCore.Localization.dll", display: "Microsoft.AspNetCore.Localization (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreLocalizationRouting { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreLocalizationRouting).GetReference(filePath: "Microsoft.AspNetCore.Localization.Routing.dll", display: "Microsoft.AspNetCore.Localization.Routing (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMetadata { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMetadata).GetReference(filePath: "Microsoft.AspNetCore.Metadata.dll", display: "Microsoft.AspNetCore.Metadata (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Abstractions.dll", display: "Microsoft.AspNetCore.Mvc.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcApiExplorer { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcApiExplorer).GetReference(filePath: "Microsoft.AspNetCore.Mvc.ApiExplorer.dll", display: "Microsoft.AspNetCore.Mvc.ApiExplorer (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcCore { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcCore).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Core.dll", display: "Microsoft.AspNetCore.Mvc.Core (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcCors { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcCors).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Cors.dll", display: "Microsoft.AspNetCore.Mvc.Cors (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcDataAnnotations { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcDataAnnotations).GetReference(filePath: "Microsoft.AspNetCore.Mvc.DataAnnotations.dll", display: "Microsoft.AspNetCore.Mvc.DataAnnotations (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvc { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvc).GetReference(filePath: "Microsoft.AspNetCore.Mvc.dll", display: "Microsoft.AspNetCore.Mvc (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcFormattersJson { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcFormattersJson).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Formatters.Json.dll", display: "Microsoft.AspNetCore.Mvc.Formatters.Json (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcFormattersXml { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcFormattersXml).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll", display: "Microsoft.AspNetCore.Mvc.Formatters.Xml (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcLocalization { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcLocalization).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Localization.dll", display: "Microsoft.AspNetCore.Mvc.Localization (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcRazor { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcRazor).GetReference(filePath: "Microsoft.AspNetCore.Mvc.Razor.dll", display: "Microsoft.AspNetCore.Mvc.Razor (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcRazorPages { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcRazorPages).GetReference(filePath: "Microsoft.AspNetCore.Mvc.RazorPages.dll", display: "Microsoft.AspNetCore.Mvc.RazorPages (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcTagHelpers { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcTagHelpers).GetReference(filePath: "Microsoft.AspNetCore.Mvc.TagHelpers.dll", display: "Microsoft.AspNetCore.Mvc.TagHelpers (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreMvcViewFeatures { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreMvcViewFeatures).GetReference(filePath: "Microsoft.AspNetCore.Mvc.ViewFeatures.dll", display: "Microsoft.AspNetCore.Mvc.ViewFeatures (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreRazor { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreRazor).GetReference(filePath: "Microsoft.AspNetCore.Razor.dll", display: "Microsoft.AspNetCore.Razor (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreRazorRuntime { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreRazorRuntime).GetReference(filePath: "Microsoft.AspNetCore.Razor.Runtime.dll", display: "Microsoft.AspNetCore.Razor.Runtime (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreResponseCachingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreResponseCachingAbstractions).GetReference(filePath: "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", display: "Microsoft.AspNetCore.ResponseCaching.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreResponseCaching { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreResponseCaching).GetReference(filePath: "Microsoft.AspNetCore.ResponseCaching.dll", display: "Microsoft.AspNetCore.ResponseCaching (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreResponseCompression { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreResponseCompression).GetReference(filePath: "Microsoft.AspNetCore.ResponseCompression.dll", display: "Microsoft.AspNetCore.ResponseCompression (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreRewrite { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreRewrite).GetReference(filePath: "Microsoft.AspNetCore.Rewrite.dll", display: "Microsoft.AspNetCore.Rewrite (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreRoutingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreRoutingAbstractions).GetReference(filePath: "Microsoft.AspNetCore.Routing.Abstractions.dll", display: "Microsoft.AspNetCore.Routing.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreRouting { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreRouting).GetReference(filePath: "Microsoft.AspNetCore.Routing.dll", display: "Microsoft.AspNetCore.Routing (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreServerHttpSys { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreServerHttpSys).GetReference(filePath: "Microsoft.AspNetCore.Server.HttpSys.dll", display: "Microsoft.AspNetCore.Server.HttpSys (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreServerIIS { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreServerIIS).GetReference(filePath: "Microsoft.AspNetCore.Server.IIS.dll", display: "Microsoft.AspNetCore.Server.IIS (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreServerIISIntegration { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreServerIISIntegration).GetReference(filePath: "Microsoft.AspNetCore.Server.IISIntegration.dll", display: "Microsoft.AspNetCore.Server.IISIntegration (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelCore { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreServerKestrelCore).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Core.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Core (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreServerKestrel { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreServerKestrel).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.dll", display: "Microsoft.AspNetCore.Server.Kestrel (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreServerKestrelTransportSockets { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreServerKestrelTransportSockets).GetReference(filePath: "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", display: "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreSession { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreSession).GetReference(filePath: "Microsoft.AspNetCore.Session.dll", display: "Microsoft.AspNetCore.Session (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreSignalRCommon { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreSignalRCommon).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Common.dll", display: "Microsoft.AspNetCore.SignalR.Common (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreSignalRCore { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreSignalRCore).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Core.dll", display: "Microsoft.AspNetCore.SignalR.Core (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreSignalR { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreSignalR).GetReference(filePath: "Microsoft.AspNetCore.SignalR.dll", display: "Microsoft.AspNetCore.SignalR (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreSignalRProtocolsJson { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreSignalRProtocolsJson).GetReference(filePath: "Microsoft.AspNetCore.SignalR.Protocols.Json.dll", display: "Microsoft.AspNetCore.SignalR.Protocols.Json (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreStaticFiles { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreStaticFiles).GetReference(filePath: "Microsoft.AspNetCore.StaticFiles.dll", display: "Microsoft.AspNetCore.StaticFiles (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreWebSockets { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreWebSockets).GetReference(filePath: "Microsoft.AspNetCore.WebSockets.dll", display: "Microsoft.AspNetCore.WebSockets (aspnet10)");
+ public static PortableExecutableReference MicrosoftAspNetCoreWebUtilities { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftAspNetCoreWebUtilities).GetReference(filePath: "Microsoft.AspNetCore.WebUtilities.dll", display: "Microsoft.AspNetCore.WebUtilities (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsCachingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsCachingAbstractions).GetReference(filePath: "Microsoft.Extensions.Caching.Abstractions.dll", display: "Microsoft.Extensions.Caching.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsCachingMemory { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsCachingMemory).GetReference(filePath: "Microsoft.Extensions.Caching.Memory.dll", display: "Microsoft.Extensions.Caching.Memory (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationAbstractions).GetReference(filePath: "Microsoft.Extensions.Configuration.Abstractions.dll", display: "Microsoft.Extensions.Configuration.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationBinder { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationBinder).GetReference(filePath: "Microsoft.Extensions.Configuration.Binder.dll", display: "Microsoft.Extensions.Configuration.Binder (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationCommandLine { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationCommandLine).GetReference(filePath: "Microsoft.Extensions.Configuration.CommandLine.dll", display: "Microsoft.Extensions.Configuration.CommandLine (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfiguration { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfiguration).GetReference(filePath: "Microsoft.Extensions.Configuration.dll", display: "Microsoft.Extensions.Configuration (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationEnvironmentVariables { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationEnvironmentVariables).GetReference(filePath: "Microsoft.Extensions.Configuration.EnvironmentVariables.dll", display: "Microsoft.Extensions.Configuration.EnvironmentVariables (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationFileExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationFileExtensions).GetReference(filePath: "Microsoft.Extensions.Configuration.FileExtensions.dll", display: "Microsoft.Extensions.Configuration.FileExtensions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationIni { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationIni).GetReference(filePath: "Microsoft.Extensions.Configuration.Ini.dll", display: "Microsoft.Extensions.Configuration.Ini (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationJson { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationJson).GetReference(filePath: "Microsoft.Extensions.Configuration.Json.dll", display: "Microsoft.Extensions.Configuration.Json (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationKeyPerFile { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationKeyPerFile).GetReference(filePath: "Microsoft.Extensions.Configuration.KeyPerFile.dll", display: "Microsoft.Extensions.Configuration.KeyPerFile (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationUserSecrets { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationUserSecrets).GetReference(filePath: "Microsoft.Extensions.Configuration.UserSecrets.dll", display: "Microsoft.Extensions.Configuration.UserSecrets (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsConfigurationXml { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsConfigurationXml).GetReference(filePath: "Microsoft.Extensions.Configuration.Xml.dll", display: "Microsoft.Extensions.Configuration.Xml (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsDependencyInjectionAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsDependencyInjectionAbstractions).GetReference(filePath: "Microsoft.Extensions.DependencyInjection.Abstractions.dll", display: "Microsoft.Extensions.DependencyInjection.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsDependencyInjection { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsDependencyInjection).GetReference(filePath: "Microsoft.Extensions.DependencyInjection.dll", display: "Microsoft.Extensions.DependencyInjection (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsDiagnosticsHealthChecksAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsDiagnosticsHealthChecksAbstractions).GetReference(filePath: "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll", display: "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsDiagnosticsHealthChecks { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsDiagnosticsHealthChecks).GetReference(filePath: "Microsoft.Extensions.Diagnostics.HealthChecks.dll", display: "Microsoft.Extensions.Diagnostics.HealthChecks (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsFileProvidersAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsFileProvidersAbstractions).GetReference(filePath: "Microsoft.Extensions.FileProviders.Abstractions.dll", display: "Microsoft.Extensions.FileProviders.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsFileProvidersComposite { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsFileProvidersComposite).GetReference(filePath: "Microsoft.Extensions.FileProviders.Composite.dll", display: "Microsoft.Extensions.FileProviders.Composite (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsFileProvidersEmbedded { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsFileProvidersEmbedded).GetReference(filePath: "Microsoft.Extensions.FileProviders.Embedded.dll", display: "Microsoft.Extensions.FileProviders.Embedded (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsFileProvidersPhysical { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsFileProvidersPhysical).GetReference(filePath: "Microsoft.Extensions.FileProviders.Physical.dll", display: "Microsoft.Extensions.FileProviders.Physical (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsFileSystemGlobbing { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsFileSystemGlobbing).GetReference(filePath: "Microsoft.Extensions.FileSystemGlobbing.dll", display: "Microsoft.Extensions.FileSystemGlobbing (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsHostingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsHostingAbstractions).GetReference(filePath: "Microsoft.Extensions.Hosting.Abstractions.dll", display: "Microsoft.Extensions.Hosting.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsHosting { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsHosting).GetReference(filePath: "Microsoft.Extensions.Hosting.dll", display: "Microsoft.Extensions.Hosting (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsHttp { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsHttp).GetReference(filePath: "Microsoft.Extensions.Http.dll", display: "Microsoft.Extensions.Http (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsIdentityCore { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsIdentityCore).GetReference(filePath: "Microsoft.Extensions.Identity.Core.dll", display: "Microsoft.Extensions.Identity.Core (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsIdentityStores { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsIdentityStores).GetReference(filePath: "Microsoft.Extensions.Identity.Stores.dll", display: "Microsoft.Extensions.Identity.Stores (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLocalizationAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLocalizationAbstractions).GetReference(filePath: "Microsoft.Extensions.Localization.Abstractions.dll", display: "Microsoft.Extensions.Localization.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLocalization { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLocalization).GetReference(filePath: "Microsoft.Extensions.Localization.dll", display: "Microsoft.Extensions.Localization (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingAbstractions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingAbstractions).GetReference(filePath: "Microsoft.Extensions.Logging.Abstractions.dll", display: "Microsoft.Extensions.Logging.Abstractions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingConfiguration { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingConfiguration).GetReference(filePath: "Microsoft.Extensions.Logging.Configuration.dll", display: "Microsoft.Extensions.Logging.Configuration (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingConsole { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingConsole).GetReference(filePath: "Microsoft.Extensions.Logging.Console.dll", display: "Microsoft.Extensions.Logging.Console (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingDebug { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingDebug).GetReference(filePath: "Microsoft.Extensions.Logging.Debug.dll", display: "Microsoft.Extensions.Logging.Debug (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLogging { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLogging).GetReference(filePath: "Microsoft.Extensions.Logging.dll", display: "Microsoft.Extensions.Logging (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingEventLog { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingEventLog).GetReference(filePath: "Microsoft.Extensions.Logging.EventLog.dll", display: "Microsoft.Extensions.Logging.EventLog (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingEventSource { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingEventSource).GetReference(filePath: "Microsoft.Extensions.Logging.EventSource.dll", display: "Microsoft.Extensions.Logging.EventSource (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsLoggingTraceSource { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsLoggingTraceSource).GetReference(filePath: "Microsoft.Extensions.Logging.TraceSource.dll", display: "Microsoft.Extensions.Logging.TraceSource (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsObjectPool { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsObjectPool).GetReference(filePath: "Microsoft.Extensions.ObjectPool.dll", display: "Microsoft.Extensions.ObjectPool (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsOptionsConfigurationExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsOptionsConfigurationExtensions).GetReference(filePath: "Microsoft.Extensions.Options.ConfigurationExtensions.dll", display: "Microsoft.Extensions.Options.ConfigurationExtensions (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsOptionsDataAnnotations { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsOptionsDataAnnotations).GetReference(filePath: "Microsoft.Extensions.Options.DataAnnotations.dll", display: "Microsoft.Extensions.Options.DataAnnotations (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsOptions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsOptions).GetReference(filePath: "Microsoft.Extensions.Options.dll", display: "Microsoft.Extensions.Options (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsPrimitives { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsPrimitives).GetReference(filePath: "Microsoft.Extensions.Primitives.dll", display: "Microsoft.Extensions.Primitives (aspnet10)");
+ public static PortableExecutableReference MicrosoftExtensionsWebEncoders { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftExtensionsWebEncoders).GetReference(filePath: "Microsoft.Extensions.WebEncoders.dll", display: "Microsoft.Extensions.WebEncoders (aspnet10)");
+ public static PortableExecutableReference MicrosoftJSInterop { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftJSInterop).GetReference(filePath: "Microsoft.JSInterop.dll", display: "Microsoft.JSInterop (aspnet10)");
+ public static PortableExecutableReference MicrosoftNetHttpHeaders { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftNetHttpHeaders).GetReference(filePath: "Microsoft.Net.Http.Headers.dll", display: "Microsoft.Net.Http.Headers (aspnet10)");
+ public static PortableExecutableReference MicrosoftWin32Registry { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.MicrosoftWin32Registry).GetReference(filePath: "Microsoft.Win32.Registry.dll", display: "Microsoft.Win32.Registry (aspnet10)");
+ public static PortableExecutableReference SystemDiagnosticsEventLog { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemDiagnosticsEventLog).GetReference(filePath: "System.Diagnostics.EventLog.dll", display: "System.Diagnostics.EventLog (aspnet10)");
+ public static PortableExecutableReference SystemIOPipelines { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemIOPipelines).GetReference(filePath: "System.IO.Pipelines.dll", display: "System.IO.Pipelines (aspnet10)");
+ public static PortableExecutableReference SystemSecurityAccessControl { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemSecurityAccessControl).GetReference(filePath: "System.Security.AccessControl.dll", display: "System.Security.AccessControl (aspnet10)");
+ public static PortableExecutableReference SystemSecurityCryptographyCng { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemSecurityCryptographyCng).GetReference(filePath: "System.Security.Cryptography.Cng.dll", display: "System.Security.Cryptography.Cng (aspnet10)");
+ public static PortableExecutableReference SystemSecurityCryptographyXml { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemSecurityCryptographyXml).GetReference(filePath: "System.Security.Cryptography.Xml.dll", display: "System.Security.Cryptography.Xml (aspnet10)");
+ public static PortableExecutableReference SystemSecurityPermissions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemSecurityPermissions).GetReference(filePath: "System.Security.Permissions.dll", display: "System.Security.Permissions (aspnet10)");
+ public static PortableExecutableReference SystemSecurityPrincipalWindows { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemSecurityPrincipalWindows).GetReference(filePath: "System.Security.Principal.Windows.dll", display: "System.Security.Principal.Windows (aspnet10)");
+ public static PortableExecutableReference SystemWindowsExtensions { get; } = AssemblyMetadata.CreateFromImage(AspNet10Resources.SystemWindowsExtensions).GetReference(filePath: "System.Windows.Extensions.dll", display: "System.Windows.Extensions (aspnet10)");
public static IEnumerable All { get; }= new PortableExecutableReference[]
{
MicrosoftAspNetCoreAntiforgery,
diff --git a/src/Express.Net.Reference.Assemblies/Generated.AspNet10.targets b/src/Express.Net.Reference.Assemblies/Generated.AspNet10.targets
new file mode 100644
index 0000000..05505f2
--- /dev/null
+++ b/src/Express.Net.Reference.Assemblies/Generated.AspNet10.targets
@@ -0,0 +1,528 @@
+
+
+
+ aspnet10.Microsoft.AspNetCore.Antiforgery
+ Resources\aspnet10\Microsoft.AspNetCore.Antiforgery.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authentication.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Authentication.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authentication.Cookies
+ Resources\aspnet10\Microsoft.AspNetCore.Authentication.Cookies.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authentication.Core
+ Resources\aspnet10\Microsoft.AspNetCore.Authentication.Core.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authentication
+ Resources\aspnet10\Microsoft.AspNetCore.Authentication.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authentication.OAuth
+ Resources\aspnet10\Microsoft.AspNetCore.Authentication.OAuth.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authorization
+ Resources\aspnet10\Microsoft.AspNetCore.Authorization.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Authorization.Policy
+ Resources\aspnet10\Microsoft.AspNetCore.Authorization.Policy.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Components.Authorization
+ Resources\aspnet10\Microsoft.AspNetCore.Components.Authorization.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Components
+ Resources\aspnet10\Microsoft.AspNetCore.Components.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Components.Forms
+ Resources\aspnet10\Microsoft.AspNetCore.Components.Forms.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Components.Server
+ Resources\aspnet10\Microsoft.AspNetCore.Components.Server.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Components.Web
+ Resources\aspnet10\Microsoft.AspNetCore.Components.Web.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Connections.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Connections.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.CookiePolicy
+ Resources\aspnet10\Microsoft.AspNetCore.CookiePolicy.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Cors
+ Resources\aspnet10\Microsoft.AspNetCore.Cors.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Cryptography.Internal
+ Resources\aspnet10\Microsoft.AspNetCore.Cryptography.Internal.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Cryptography.KeyDerivation
+ Resources\aspnet10\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
+
+
+ aspnet10.Microsoft.AspNetCore.DataProtection.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.DataProtection.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.DataProtection
+ Resources\aspnet10\Microsoft.AspNetCore.DataProtection.dll
+
+
+ aspnet10.Microsoft.AspNetCore.DataProtection.Extensions
+ Resources\aspnet10\Microsoft.AspNetCore.DataProtection.Extensions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Diagnostics.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Diagnostics.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Diagnostics
+ Resources\aspnet10\Microsoft.AspNetCore.Diagnostics.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Diagnostics.HealthChecks
+ Resources\aspnet10\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll
+
+
+ aspnet10.Microsoft.AspNetCore
+ Resources\aspnet10\Microsoft.AspNetCore.dll
+
+
+ aspnet10.Microsoft.AspNetCore.HostFiltering
+ Resources\aspnet10\Microsoft.AspNetCore.HostFiltering.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Hosting.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Hosting.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Hosting
+ Resources\aspnet10\Microsoft.AspNetCore.Hosting.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Hosting.Server.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Html.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Html.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Http.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Http.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Http.Connections.Common
+ Resources\aspnet10\Microsoft.AspNetCore.Http.Connections.Common.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Http.Connections
+ Resources\aspnet10\Microsoft.AspNetCore.Http.Connections.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Http
+ Resources\aspnet10\Microsoft.AspNetCore.Http.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Http.Extensions
+ Resources\aspnet10\Microsoft.AspNetCore.Http.Extensions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Http.Features
+ Resources\aspnet10\Microsoft.AspNetCore.Http.Features.dll
+
+
+ aspnet10.Microsoft.AspNetCore.HttpOverrides
+ Resources\aspnet10\Microsoft.AspNetCore.HttpOverrides.dll
+
+
+ aspnet10.Microsoft.AspNetCore.HttpsPolicy
+ Resources\aspnet10\Microsoft.AspNetCore.HttpsPolicy.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Identity
+ Resources\aspnet10\Microsoft.AspNetCore.Identity.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Localization
+ Resources\aspnet10\Microsoft.AspNetCore.Localization.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Localization.Routing
+ Resources\aspnet10\Microsoft.AspNetCore.Localization.Routing.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Metadata
+ Resources\aspnet10\Microsoft.AspNetCore.Metadata.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.ApiExplorer
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.ApiExplorer.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Core
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Core.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Cors
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Cors.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.DataAnnotations
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.DataAnnotations.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Formatters.Json
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Formatters.Json.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Formatters.Xml
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Localization
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Localization.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.Razor
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.Razor.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.RazorPages
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.RazorPages.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.TagHelpers
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.TagHelpers.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Mvc.ViewFeatures
+ Resources\aspnet10\Microsoft.AspNetCore.Mvc.ViewFeatures.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Razor
+ Resources\aspnet10\Microsoft.AspNetCore.Razor.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Razor.Runtime
+ Resources\aspnet10\Microsoft.AspNetCore.Razor.Runtime.dll
+
+
+ aspnet10.Microsoft.AspNetCore.ResponseCaching.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.ResponseCaching
+ Resources\aspnet10\Microsoft.AspNetCore.ResponseCaching.dll
+
+
+ aspnet10.Microsoft.AspNetCore.ResponseCompression
+ Resources\aspnet10\Microsoft.AspNetCore.ResponseCompression.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Rewrite
+ Resources\aspnet10\Microsoft.AspNetCore.Rewrite.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Routing.Abstractions
+ Resources\aspnet10\Microsoft.AspNetCore.Routing.Abstractions.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Routing
+ Resources\aspnet10\Microsoft.AspNetCore.Routing.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Server.HttpSys
+ Resources\aspnet10\Microsoft.AspNetCore.Server.HttpSys.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Server.IIS
+ Resources\aspnet10\Microsoft.AspNetCore.Server.IIS.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Server.IISIntegration
+ Resources\aspnet10\Microsoft.AspNetCore.Server.IISIntegration.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Server.Kestrel.Core
+ Resources\aspnet10\Microsoft.AspNetCore.Server.Kestrel.Core.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Server.Kestrel
+ Resources\aspnet10\Microsoft.AspNetCore.Server.Kestrel.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets
+ Resources\aspnet10\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
+
+
+ aspnet10.Microsoft.AspNetCore.Session
+ Resources\aspnet10\Microsoft.AspNetCore.Session.dll
+
+
+ aspnet10.Microsoft.AspNetCore.SignalR.Common
+ Resources\aspnet10\Microsoft.AspNetCore.SignalR.Common.dll
+
+
+ aspnet10.Microsoft.AspNetCore.SignalR.Core
+ Resources\aspnet10\Microsoft.AspNetCore.SignalR.Core.dll
+
+
+ aspnet10.Microsoft.AspNetCore.SignalR
+ Resources\aspnet10\Microsoft.AspNetCore.SignalR.dll
+
+
+ aspnet10.Microsoft.AspNetCore.SignalR.Protocols.Json
+ Resources\aspnet10\Microsoft.AspNetCore.SignalR.Protocols.Json.dll
+
+
+ aspnet10.Microsoft.AspNetCore.StaticFiles
+ Resources\aspnet10\Microsoft.AspNetCore.StaticFiles.dll
+
+
+ aspnet10.Microsoft.AspNetCore.WebSockets
+ Resources\aspnet10\Microsoft.AspNetCore.WebSockets.dll
+
+
+ aspnet10.Microsoft.AspNetCore.WebUtilities
+ Resources\aspnet10\Microsoft.AspNetCore.WebUtilities.dll
+
+
+ aspnet10.Microsoft.Extensions.Caching.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.Caching.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.Caching.Memory
+ Resources\aspnet10\Microsoft.Extensions.Caching.Memory.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.Configuration.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.Binder
+ Resources\aspnet10\Microsoft.Extensions.Configuration.Binder.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.CommandLine
+ Resources\aspnet10\Microsoft.Extensions.Configuration.CommandLine.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration
+ Resources\aspnet10\Microsoft.Extensions.Configuration.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.EnvironmentVariables
+ Resources\aspnet10\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.FileExtensions
+ Resources\aspnet10\Microsoft.Extensions.Configuration.FileExtensions.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.Ini
+ Resources\aspnet10\Microsoft.Extensions.Configuration.Ini.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.Json
+ Resources\aspnet10\Microsoft.Extensions.Configuration.Json.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.KeyPerFile
+ Resources\aspnet10\Microsoft.Extensions.Configuration.KeyPerFile.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.UserSecrets
+ Resources\aspnet10\Microsoft.Extensions.Configuration.UserSecrets.dll
+
+
+ aspnet10.Microsoft.Extensions.Configuration.Xml
+ Resources\aspnet10\Microsoft.Extensions.Configuration.Xml.dll
+
+
+ aspnet10.Microsoft.Extensions.DependencyInjection.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.DependencyInjection
+ Resources\aspnet10\Microsoft.Extensions.DependencyInjection.dll
+
+
+ aspnet10.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.Diagnostics.HealthChecks
+ Resources\aspnet10\Microsoft.Extensions.Diagnostics.HealthChecks.dll
+
+
+ aspnet10.Microsoft.Extensions.FileProviders.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.FileProviders.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.FileProviders.Composite
+ Resources\aspnet10\Microsoft.Extensions.FileProviders.Composite.dll
+
+
+ aspnet10.Microsoft.Extensions.FileProviders.Embedded
+ Resources\aspnet10\Microsoft.Extensions.FileProviders.Embedded.dll
+
+
+ aspnet10.Microsoft.Extensions.FileProviders.Physical
+ Resources\aspnet10\Microsoft.Extensions.FileProviders.Physical.dll
+
+
+ aspnet10.Microsoft.Extensions.FileSystemGlobbing
+ Resources\aspnet10\Microsoft.Extensions.FileSystemGlobbing.dll
+
+
+ aspnet10.Microsoft.Extensions.Hosting.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.Hosting.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.Hosting
+ Resources\aspnet10\Microsoft.Extensions.Hosting.dll
+
+
+ aspnet10.Microsoft.Extensions.Http
+ Resources\aspnet10\Microsoft.Extensions.Http.dll
+
+
+ aspnet10.Microsoft.Extensions.Identity.Core
+ Resources\aspnet10\Microsoft.Extensions.Identity.Core.dll
+
+
+ aspnet10.Microsoft.Extensions.Identity.Stores
+ Resources\aspnet10\Microsoft.Extensions.Identity.Stores.dll
+
+
+ aspnet10.Microsoft.Extensions.Localization.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.Localization.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.Localization
+ Resources\aspnet10\Microsoft.Extensions.Localization.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.Abstractions
+ Resources\aspnet10\Microsoft.Extensions.Logging.Abstractions.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.Configuration
+ Resources\aspnet10\Microsoft.Extensions.Logging.Configuration.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.Console
+ Resources\aspnet10\Microsoft.Extensions.Logging.Console.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.Debug
+ Resources\aspnet10\Microsoft.Extensions.Logging.Debug.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging
+ Resources\aspnet10\Microsoft.Extensions.Logging.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.EventLog
+ Resources\aspnet10\Microsoft.Extensions.Logging.EventLog.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.EventSource
+ Resources\aspnet10\Microsoft.Extensions.Logging.EventSource.dll
+
+
+ aspnet10.Microsoft.Extensions.Logging.TraceSource
+ Resources\aspnet10\Microsoft.Extensions.Logging.TraceSource.dll
+
+
+ aspnet10.Microsoft.Extensions.ObjectPool
+ Resources\aspnet10\Microsoft.Extensions.ObjectPool.dll
+
+
+ aspnet10.Microsoft.Extensions.Options.ConfigurationExtensions
+ Resources\aspnet10\Microsoft.Extensions.Options.ConfigurationExtensions.dll
+
+
+ aspnet10.Microsoft.Extensions.Options.DataAnnotations
+ Resources\aspnet10\Microsoft.Extensions.Options.DataAnnotations.dll
+
+
+ aspnet10.Microsoft.Extensions.Options
+ Resources\aspnet10\Microsoft.Extensions.Options.dll
+
+
+ aspnet10.Microsoft.Extensions.Primitives
+ Resources\aspnet10\Microsoft.Extensions.Primitives.dll
+
+
+ aspnet10.Microsoft.Extensions.WebEncoders
+ Resources\aspnet10\Microsoft.Extensions.WebEncoders.dll
+
+
+ aspnet10.Microsoft.JSInterop
+ Resources\aspnet10\Microsoft.JSInterop.dll
+
+
+ aspnet10.Microsoft.Net.Http.Headers
+ Resources\aspnet10\Microsoft.Net.Http.Headers.dll
+
+
+ aspnet10.Microsoft.Win32.Registry
+ Resources\aspnet10\Microsoft.Win32.Registry.dll
+
+
+ aspnet10.System.Diagnostics.EventLog
+ Resources\aspnet10\System.Diagnostics.EventLog.dll
+
+
+ aspnet10.System.IO.Pipelines
+ Resources\aspnet10\System.IO.Pipelines.dll
+
+
+ aspnet10.System.Security.AccessControl
+ Resources\aspnet10\System.Security.AccessControl.dll
+
+
+ aspnet10.System.Security.Cryptography.Cng
+ Resources\aspnet10\System.Security.Cryptography.Cng.dll
+
+
+ aspnet10.System.Security.Cryptography.Xml
+ Resources\aspnet10\System.Security.Cryptography.Xml.dll
+
+
+ aspnet10.System.Security.Permissions
+ Resources\aspnet10\System.Security.Permissions.dll
+
+
+ aspnet10.System.Security.Principal.Windows
+ Resources\aspnet10\System.Security.Principal.Windows.dll
+
+
+ aspnet10.System.Windows.Extensions
+ Resources\aspnet10\System.Windows.Extensions.dll
+
+
+
diff --git a/src/Express.Net.Reference.Assemblies/Generated.AspNet50.targets b/src/Express.Net.Reference.Assemblies/Generated.AspNet50.targets
deleted file mode 100644
index 1be2d8f..0000000
--- a/src/Express.Net.Reference.Assemblies/Generated.AspNet50.targets
+++ /dev/null
@@ -1,528 +0,0 @@
-
-
-
- aspnet50.Microsoft.AspNetCore.Antiforgery
- Resources\aspnet50\Microsoft.AspNetCore.Antiforgery.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authentication.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Authentication.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authentication.Cookies
- Resources\aspnet50\Microsoft.AspNetCore.Authentication.Cookies.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authentication.Core
- Resources\aspnet50\Microsoft.AspNetCore.Authentication.Core.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authentication
- Resources\aspnet50\Microsoft.AspNetCore.Authentication.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authentication.OAuth
- Resources\aspnet50\Microsoft.AspNetCore.Authentication.OAuth.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authorization
- Resources\aspnet50\Microsoft.AspNetCore.Authorization.dll
-
-
- aspnet50.Microsoft.AspNetCore.Authorization.Policy
- Resources\aspnet50\Microsoft.AspNetCore.Authorization.Policy.dll
-
-
- aspnet50.Microsoft.AspNetCore.Components.Authorization
- Resources\aspnet50\Microsoft.AspNetCore.Components.Authorization.dll
-
-
- aspnet50.Microsoft.AspNetCore.Components
- Resources\aspnet50\Microsoft.AspNetCore.Components.dll
-
-
- aspnet50.Microsoft.AspNetCore.Components.Forms
- Resources\aspnet50\Microsoft.AspNetCore.Components.Forms.dll
-
-
- aspnet50.Microsoft.AspNetCore.Components.Server
- Resources\aspnet50\Microsoft.AspNetCore.Components.Server.dll
-
-
- aspnet50.Microsoft.AspNetCore.Components.Web
- Resources\aspnet50\Microsoft.AspNetCore.Components.Web.dll
-
-
- aspnet50.Microsoft.AspNetCore.Connections.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Connections.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.CookiePolicy
- Resources\aspnet50\Microsoft.AspNetCore.CookiePolicy.dll
-
-
- aspnet50.Microsoft.AspNetCore.Cors
- Resources\aspnet50\Microsoft.AspNetCore.Cors.dll
-
-
- aspnet50.Microsoft.AspNetCore.Cryptography.Internal
- Resources\aspnet50\Microsoft.AspNetCore.Cryptography.Internal.dll
-
-
- aspnet50.Microsoft.AspNetCore.Cryptography.KeyDerivation
- Resources\aspnet50\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
-
-
- aspnet50.Microsoft.AspNetCore.DataProtection.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.DataProtection.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.DataProtection
- Resources\aspnet50\Microsoft.AspNetCore.DataProtection.dll
-
-
- aspnet50.Microsoft.AspNetCore.DataProtection.Extensions
- Resources\aspnet50\Microsoft.AspNetCore.DataProtection.Extensions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Diagnostics.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Diagnostics.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Diagnostics
- Resources\aspnet50\Microsoft.AspNetCore.Diagnostics.dll
-
-
- aspnet50.Microsoft.AspNetCore.Diagnostics.HealthChecks
- Resources\aspnet50\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll
-
-
- aspnet50.Microsoft.AspNetCore
- Resources\aspnet50\Microsoft.AspNetCore.dll
-
-
- aspnet50.Microsoft.AspNetCore.HostFiltering
- Resources\aspnet50\Microsoft.AspNetCore.HostFiltering.dll
-
-
- aspnet50.Microsoft.AspNetCore.Hosting.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Hosting.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Hosting
- Resources\aspnet50\Microsoft.AspNetCore.Hosting.dll
-
-
- aspnet50.Microsoft.AspNetCore.Hosting.Server.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Html.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Html.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Http.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Http.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Http.Connections.Common
- Resources\aspnet50\Microsoft.AspNetCore.Http.Connections.Common.dll
-
-
- aspnet50.Microsoft.AspNetCore.Http.Connections
- Resources\aspnet50\Microsoft.AspNetCore.Http.Connections.dll
-
-
- aspnet50.Microsoft.AspNetCore.Http
- Resources\aspnet50\Microsoft.AspNetCore.Http.dll
-
-
- aspnet50.Microsoft.AspNetCore.Http.Extensions
- Resources\aspnet50\Microsoft.AspNetCore.Http.Extensions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Http.Features
- Resources\aspnet50\Microsoft.AspNetCore.Http.Features.dll
-
-
- aspnet50.Microsoft.AspNetCore.HttpOverrides
- Resources\aspnet50\Microsoft.AspNetCore.HttpOverrides.dll
-
-
- aspnet50.Microsoft.AspNetCore.HttpsPolicy
- Resources\aspnet50\Microsoft.AspNetCore.HttpsPolicy.dll
-
-
- aspnet50.Microsoft.AspNetCore.Identity
- Resources\aspnet50\Microsoft.AspNetCore.Identity.dll
-
-
- aspnet50.Microsoft.AspNetCore.Localization
- Resources\aspnet50\Microsoft.AspNetCore.Localization.dll
-
-
- aspnet50.Microsoft.AspNetCore.Localization.Routing
- Resources\aspnet50\Microsoft.AspNetCore.Localization.Routing.dll
-
-
- aspnet50.Microsoft.AspNetCore.Metadata
- Resources\aspnet50\Microsoft.AspNetCore.Metadata.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.ApiExplorer
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.ApiExplorer.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Core
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Core.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Cors
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Cors.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.DataAnnotations
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.DataAnnotations.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Formatters.Json
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Formatters.Json.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Formatters.Xml
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Localization
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Localization.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.Razor
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.Razor.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.RazorPages
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.RazorPages.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.TagHelpers
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.TagHelpers.dll
-
-
- aspnet50.Microsoft.AspNetCore.Mvc.ViewFeatures
- Resources\aspnet50\Microsoft.AspNetCore.Mvc.ViewFeatures.dll
-
-
- aspnet50.Microsoft.AspNetCore.Razor
- Resources\aspnet50\Microsoft.AspNetCore.Razor.dll
-
-
- aspnet50.Microsoft.AspNetCore.Razor.Runtime
- Resources\aspnet50\Microsoft.AspNetCore.Razor.Runtime.dll
-
-
- aspnet50.Microsoft.AspNetCore.ResponseCaching.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.ResponseCaching
- Resources\aspnet50\Microsoft.AspNetCore.ResponseCaching.dll
-
-
- aspnet50.Microsoft.AspNetCore.ResponseCompression
- Resources\aspnet50\Microsoft.AspNetCore.ResponseCompression.dll
-
-
- aspnet50.Microsoft.AspNetCore.Rewrite
- Resources\aspnet50\Microsoft.AspNetCore.Rewrite.dll
-
-
- aspnet50.Microsoft.AspNetCore.Routing.Abstractions
- Resources\aspnet50\Microsoft.AspNetCore.Routing.Abstractions.dll
-
-
- aspnet50.Microsoft.AspNetCore.Routing
- Resources\aspnet50\Microsoft.AspNetCore.Routing.dll
-
-
- aspnet50.Microsoft.AspNetCore.Server.HttpSys
- Resources\aspnet50\Microsoft.AspNetCore.Server.HttpSys.dll
-
-
- aspnet50.Microsoft.AspNetCore.Server.IIS
- Resources\aspnet50\Microsoft.AspNetCore.Server.IIS.dll
-
-
- aspnet50.Microsoft.AspNetCore.Server.IISIntegration
- Resources\aspnet50\Microsoft.AspNetCore.Server.IISIntegration.dll
-
-
- aspnet50.Microsoft.AspNetCore.Server.Kestrel.Core
- Resources\aspnet50\Microsoft.AspNetCore.Server.Kestrel.Core.dll
-
-
- aspnet50.Microsoft.AspNetCore.Server.Kestrel
- Resources\aspnet50\Microsoft.AspNetCore.Server.Kestrel.dll
-
-
- aspnet50.Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets
- Resources\aspnet50\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
-
-
- aspnet50.Microsoft.AspNetCore.Session
- Resources\aspnet50\Microsoft.AspNetCore.Session.dll
-
-
- aspnet50.Microsoft.AspNetCore.SignalR.Common
- Resources\aspnet50\Microsoft.AspNetCore.SignalR.Common.dll
-
-
- aspnet50.Microsoft.AspNetCore.SignalR.Core
- Resources\aspnet50\Microsoft.AspNetCore.SignalR.Core.dll
-
-
- aspnet50.Microsoft.AspNetCore.SignalR
- Resources\aspnet50\Microsoft.AspNetCore.SignalR.dll
-
-
- aspnet50.Microsoft.AspNetCore.SignalR.Protocols.Json
- Resources\aspnet50\Microsoft.AspNetCore.SignalR.Protocols.Json.dll
-
-
- aspnet50.Microsoft.AspNetCore.StaticFiles
- Resources\aspnet50\Microsoft.AspNetCore.StaticFiles.dll
-
-
- aspnet50.Microsoft.AspNetCore.WebSockets
- Resources\aspnet50\Microsoft.AspNetCore.WebSockets.dll
-
-
- aspnet50.Microsoft.AspNetCore.WebUtilities
- Resources\aspnet50\Microsoft.AspNetCore.WebUtilities.dll
-
-
- aspnet50.Microsoft.Extensions.Caching.Abstractions
- Resources\aspnet50\Microsoft.Extensions.Caching.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.Caching.Memory
- Resources\aspnet50\Microsoft.Extensions.Caching.Memory.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.Abstractions
- Resources\aspnet50\Microsoft.Extensions.Configuration.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.Binder
- Resources\aspnet50\Microsoft.Extensions.Configuration.Binder.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.CommandLine
- Resources\aspnet50\Microsoft.Extensions.Configuration.CommandLine.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration
- Resources\aspnet50\Microsoft.Extensions.Configuration.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.EnvironmentVariables
- Resources\aspnet50\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.FileExtensions
- Resources\aspnet50\Microsoft.Extensions.Configuration.FileExtensions.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.Ini
- Resources\aspnet50\Microsoft.Extensions.Configuration.Ini.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.Json
- Resources\aspnet50\Microsoft.Extensions.Configuration.Json.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.KeyPerFile
- Resources\aspnet50\Microsoft.Extensions.Configuration.KeyPerFile.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.UserSecrets
- Resources\aspnet50\Microsoft.Extensions.Configuration.UserSecrets.dll
-
-
- aspnet50.Microsoft.Extensions.Configuration.Xml
- Resources\aspnet50\Microsoft.Extensions.Configuration.Xml.dll
-
-
- aspnet50.Microsoft.Extensions.DependencyInjection.Abstractions
- Resources\aspnet50\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.DependencyInjection
- Resources\aspnet50\Microsoft.Extensions.DependencyInjection.dll
-
-
- aspnet50.Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions
- Resources\aspnet50\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.Diagnostics.HealthChecks
- Resources\aspnet50\Microsoft.Extensions.Diagnostics.HealthChecks.dll
-
-
- aspnet50.Microsoft.Extensions.FileProviders.Abstractions
- Resources\aspnet50\Microsoft.Extensions.FileProviders.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.FileProviders.Composite
- Resources\aspnet50\Microsoft.Extensions.FileProviders.Composite.dll
-
-
- aspnet50.Microsoft.Extensions.FileProviders.Embedded
- Resources\aspnet50\Microsoft.Extensions.FileProviders.Embedded.dll
-
-
- aspnet50.Microsoft.Extensions.FileProviders.Physical
- Resources\aspnet50\Microsoft.Extensions.FileProviders.Physical.dll
-
-
- aspnet50.Microsoft.Extensions.FileSystemGlobbing
- Resources\aspnet50\Microsoft.Extensions.FileSystemGlobbing.dll
-
-
- aspnet50.Microsoft.Extensions.Hosting.Abstractions
- Resources\aspnet50\Microsoft.Extensions.Hosting.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.Hosting
- Resources\aspnet50\Microsoft.Extensions.Hosting.dll
-
-
- aspnet50.Microsoft.Extensions.Http
- Resources\aspnet50\Microsoft.Extensions.Http.dll
-
-
- aspnet50.Microsoft.Extensions.Identity.Core
- Resources\aspnet50\Microsoft.Extensions.Identity.Core.dll
-
-
- aspnet50.Microsoft.Extensions.Identity.Stores
- Resources\aspnet50\Microsoft.Extensions.Identity.Stores.dll
-
-
- aspnet50.Microsoft.Extensions.Localization.Abstractions
- Resources\aspnet50\Microsoft.Extensions.Localization.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.Localization
- Resources\aspnet50\Microsoft.Extensions.Localization.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.Abstractions
- Resources\aspnet50\Microsoft.Extensions.Logging.Abstractions.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.Configuration
- Resources\aspnet50\Microsoft.Extensions.Logging.Configuration.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.Console
- Resources\aspnet50\Microsoft.Extensions.Logging.Console.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.Debug
- Resources\aspnet50\Microsoft.Extensions.Logging.Debug.dll
-
-
- aspnet50.Microsoft.Extensions.Logging
- Resources\aspnet50\Microsoft.Extensions.Logging.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.EventLog
- Resources\aspnet50\Microsoft.Extensions.Logging.EventLog.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.EventSource
- Resources\aspnet50\Microsoft.Extensions.Logging.EventSource.dll
-
-
- aspnet50.Microsoft.Extensions.Logging.TraceSource
- Resources\aspnet50\Microsoft.Extensions.Logging.TraceSource.dll
-
-
- aspnet50.Microsoft.Extensions.ObjectPool
- Resources\aspnet50\Microsoft.Extensions.ObjectPool.dll
-
-
- aspnet50.Microsoft.Extensions.Options.ConfigurationExtensions
- Resources\aspnet50\Microsoft.Extensions.Options.ConfigurationExtensions.dll
-
-
- aspnet50.Microsoft.Extensions.Options.DataAnnotations
- Resources\aspnet50\Microsoft.Extensions.Options.DataAnnotations.dll
-
-
- aspnet50.Microsoft.Extensions.Options
- Resources\aspnet50\Microsoft.Extensions.Options.dll
-
-
- aspnet50.Microsoft.Extensions.Primitives
- Resources\aspnet50\Microsoft.Extensions.Primitives.dll
-
-
- aspnet50.Microsoft.Extensions.WebEncoders
- Resources\aspnet50\Microsoft.Extensions.WebEncoders.dll
-
-
- aspnet50.Microsoft.JSInterop
- Resources\aspnet50\Microsoft.JSInterop.dll
-
-
- aspnet50.Microsoft.Net.Http.Headers
- Resources\aspnet50\Microsoft.Net.Http.Headers.dll
-
-
- aspnet50.Microsoft.Win32.Registry
- Resources\aspnet50\Microsoft.Win32.Registry.dll
-
-
- aspnet50.System.Diagnostics.EventLog
- Resources\aspnet50\System.Diagnostics.EventLog.dll
-
-
- aspnet50.System.IO.Pipelines
- Resources\aspnet50\System.IO.Pipelines.dll
-
-
- aspnet50.System.Security.AccessControl
- Resources\aspnet50\System.Security.AccessControl.dll
-
-
- aspnet50.System.Security.Cryptography.Cng
- Resources\aspnet50\System.Security.Cryptography.Cng.dll
-
-
- aspnet50.System.Security.Cryptography.Xml
- Resources\aspnet50\System.Security.Cryptography.Xml.dll
-
-
- aspnet50.System.Security.Permissions
- Resources\aspnet50\System.Security.Permissions.dll
-
-
- aspnet50.System.Security.Principal.Windows
- Resources\aspnet50\System.Security.Principal.Windows.dll
-
-
- aspnet50.System.Windows.Extensions
- Resources\aspnet50\System.Windows.Extensions.dll
-
-
-
diff --git a/src/Express.Net.Reference.Assemblies/Generated.Net50.cs b/src/Express.Net.Reference.Assemblies/Generated.Net10.cs
similarity index 68%
rename from src/Express.Net.Reference.Assemblies/Generated.Net50.cs
rename to src/Express.Net.Reference.Assemblies/Generated.Net10.cs
index 207e7cc..2e70508 100644
--- a/src/Express.Net.Reference.Assemblies/Generated.Net50.cs
+++ b/src/Express.Net.Reference.Assemblies/Generated.Net10.cs
@@ -5,467 +5,467 @@
namespace Express.Net.Reference.Assemblies
{
- internal static class Net50Resources
+ internal static class Net10Resources
{
private static byte[]? _MicrosoftCSharp;
- internal static byte[] MicrosoftCSharp => ResourceLoader.GetOrCreateResource(ref _MicrosoftCSharp, "net50.Microsoft.CSharp");
+ internal static byte[] MicrosoftCSharp => ResourceLoader.GetOrCreateResource(ref _MicrosoftCSharp, "net10.Microsoft.CSharp");
private static byte[]? _MicrosoftVisualBasicCore;
- internal static byte[] MicrosoftVisualBasicCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasicCore, "net50.Microsoft.VisualBasic.Core");
+ internal static byte[] MicrosoftVisualBasicCore => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasicCore, "net10.Microsoft.VisualBasic.Core");
private static byte[]? _MicrosoftVisualBasic;
- internal static byte[] MicrosoftVisualBasic => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasic, "net50.Microsoft.VisualBasic");
+ internal static byte[] MicrosoftVisualBasic => ResourceLoader.GetOrCreateResource(ref _MicrosoftVisualBasic, "net10.Microsoft.VisualBasic");
private static byte[]? _MicrosoftWin32Primitives;
- internal static byte[] MicrosoftWin32Primitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Primitives, "net50.Microsoft.Win32.Primitives");
+ internal static byte[] MicrosoftWin32Primitives => ResourceLoader.GetOrCreateResource(ref _MicrosoftWin32Primitives, "net10.Microsoft.Win32.Primitives");
private static byte[]? _mscorlib;
- internal static byte[] mscorlib => ResourceLoader.GetOrCreateResource(ref _mscorlib, "net50.mscorlib");
+ internal static byte[] mscorlib => ResourceLoader.GetOrCreateResource(ref _mscorlib, "net10.mscorlib");
private static byte[]? _netstandard;
- internal static byte[] netstandard => ResourceLoader.GetOrCreateResource(ref _netstandard, "net50.netstandard");
+ internal static byte[] netstandard => ResourceLoader.GetOrCreateResource(ref _netstandard, "net10.netstandard");
private static byte[]? _SystemAppContext;
- internal static byte[] SystemAppContext => ResourceLoader.GetOrCreateResource(ref _SystemAppContext, "net50.System.AppContext");
+ internal static byte[] SystemAppContext => ResourceLoader.GetOrCreateResource(ref _SystemAppContext, "net10.System.AppContext");
private static byte[]? _SystemBuffers;
- internal static byte[] SystemBuffers => ResourceLoader.GetOrCreateResource(ref _SystemBuffers, "net50.System.Buffers");
+ internal static byte[] SystemBuffers => ResourceLoader.GetOrCreateResource(ref _SystemBuffers, "net10.System.Buffers");
private static byte[]? _SystemCollectionsConcurrent;
- internal static byte[] SystemCollectionsConcurrent => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsConcurrent, "net50.System.Collections.Concurrent");
+ internal static byte[] SystemCollectionsConcurrent => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsConcurrent, "net10.System.Collections.Concurrent");
private static byte[]? _SystemCollections;
- internal static byte[] SystemCollections => ResourceLoader.GetOrCreateResource(ref _SystemCollections, "net50.System.Collections");
+ internal static byte[] SystemCollections => ResourceLoader.GetOrCreateResource(ref _SystemCollections, "net10.System.Collections");
private static byte[]? _SystemCollectionsImmutable;
- internal static byte[] SystemCollectionsImmutable => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsImmutable, "net50.System.Collections.Immutable");
+ internal static byte[] SystemCollectionsImmutable => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsImmutable, "net10.System.Collections.Immutable");
private static byte[]? _SystemCollectionsNonGeneric;
- internal static byte[] SystemCollectionsNonGeneric => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsNonGeneric, "net50.System.Collections.NonGeneric");
+ internal static byte[] SystemCollectionsNonGeneric => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsNonGeneric, "net10.System.Collections.NonGeneric");
private static byte[]? _SystemCollectionsSpecialized;
- internal static byte[] SystemCollectionsSpecialized => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsSpecialized, "net50.System.Collections.Specialized");
+ internal static byte[] SystemCollectionsSpecialized => ResourceLoader.GetOrCreateResource(ref _SystemCollectionsSpecialized, "net10.System.Collections.Specialized");
private static byte[]? _SystemComponentModelAnnotations;
- internal static byte[] SystemComponentModelAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelAnnotations, "net50.System.ComponentModel.Annotations");
+ internal static byte[] SystemComponentModelAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelAnnotations, "net10.System.ComponentModel.Annotations");
private static byte[]? _SystemComponentModelDataAnnotations;
- internal static byte[] SystemComponentModelDataAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelDataAnnotations, "net50.System.ComponentModel.DataAnnotations");
+ internal static byte[] SystemComponentModelDataAnnotations => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelDataAnnotations, "net10.System.ComponentModel.DataAnnotations");
private static byte[]? _SystemComponentModel;
- internal static byte[] SystemComponentModel => ResourceLoader.GetOrCreateResource(ref _SystemComponentModel, "net50.System.ComponentModel");
+ internal static byte[] SystemComponentModel => ResourceLoader.GetOrCreateResource(ref _SystemComponentModel, "net10.System.ComponentModel");
private static byte[]? _SystemComponentModelEventBasedAsync;
- internal static byte[] SystemComponentModelEventBasedAsync => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelEventBasedAsync, "net50.System.ComponentModel.EventBasedAsync");
+ internal static byte[] SystemComponentModelEventBasedAsync => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelEventBasedAsync, "net10.System.ComponentModel.EventBasedAsync");
private static byte[]? _SystemComponentModelPrimitives;
- internal static byte[] SystemComponentModelPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelPrimitives, "net50.System.ComponentModel.Primitives");
+ internal static byte[] SystemComponentModelPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelPrimitives, "net10.System.ComponentModel.Primitives");
private static byte[]? _SystemComponentModelTypeConverter;
- internal static byte[] SystemComponentModelTypeConverter => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelTypeConverter, "net50.System.ComponentModel.TypeConverter");
+ internal static byte[] SystemComponentModelTypeConverter => ResourceLoader.GetOrCreateResource(ref _SystemComponentModelTypeConverter, "net10.System.ComponentModel.TypeConverter");
private static byte[]? _SystemConfiguration;
- internal static byte[] SystemConfiguration => ResourceLoader.GetOrCreateResource(ref _SystemConfiguration, "net50.System.Configuration");
+ internal static byte[] SystemConfiguration => ResourceLoader.GetOrCreateResource(ref _SystemConfiguration, "net10.System.Configuration");
private static byte[]? _SystemConsole;
- internal static byte[] SystemConsole => ResourceLoader.GetOrCreateResource(ref _SystemConsole, "net50.System.Console");
+ internal static byte[] SystemConsole => ResourceLoader.GetOrCreateResource(ref _SystemConsole, "net10.System.Console");
private static byte[]? _SystemCore;
- internal static byte[] SystemCore => ResourceLoader.GetOrCreateResource(ref _SystemCore, "net50.System.Core");
+ internal static byte[] SystemCore => ResourceLoader.GetOrCreateResource(ref _SystemCore, "net10.System.Core");
private static byte[]? _SystemDataCommon;
- internal static byte[] SystemDataCommon => ResourceLoader.GetOrCreateResource(ref _SystemDataCommon, "net50.System.Data.Common");
+ internal static byte[] SystemDataCommon => ResourceLoader.GetOrCreateResource(ref _SystemDataCommon, "net10.System.Data.Common");
private static byte[]? _SystemDataDataSetExtensions;
- internal static byte[] SystemDataDataSetExtensions => ResourceLoader.GetOrCreateResource(ref _SystemDataDataSetExtensions, "net50.System.Data.DataSetExtensions");
+ internal static byte[] SystemDataDataSetExtensions => ResourceLoader.GetOrCreateResource(ref _SystemDataDataSetExtensions, "net10.System.Data.DataSetExtensions");
private static byte[]? _SystemData;
- internal static byte[] SystemData => ResourceLoader.GetOrCreateResource(ref _SystemData, "net50.System.Data");
+ internal static byte[] SystemData => ResourceLoader.GetOrCreateResource(ref _SystemData, "net10.System.Data");
private static byte[]? _SystemDiagnosticsContracts;
- internal static byte[] SystemDiagnosticsContracts => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsContracts, "net50.System.Diagnostics.Contracts");
+ internal static byte[] SystemDiagnosticsContracts => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsContracts, "net10.System.Diagnostics.Contracts");
private static byte[]? _SystemDiagnosticsDebug;
- internal static byte[] SystemDiagnosticsDebug => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDebug, "net50.System.Diagnostics.Debug");
+ internal static byte[] SystemDiagnosticsDebug => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDebug, "net10.System.Diagnostics.Debug");
private static byte[]? _SystemDiagnosticsDiagnosticSource;
- internal static byte[] SystemDiagnosticsDiagnosticSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDiagnosticSource, "net50.System.Diagnostics.DiagnosticSource");
+ internal static byte[] SystemDiagnosticsDiagnosticSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsDiagnosticSource, "net10.System.Diagnostics.DiagnosticSource");
private static byte[]? _SystemDiagnosticsFileVersionInfo;
- internal static byte[] SystemDiagnosticsFileVersionInfo => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsFileVersionInfo, "net50.System.Diagnostics.FileVersionInfo");
+ internal static byte[] SystemDiagnosticsFileVersionInfo => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsFileVersionInfo, "net10.System.Diagnostics.FileVersionInfo");
private static byte[]? _SystemDiagnosticsProcess;
- internal static byte[] SystemDiagnosticsProcess => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsProcess, "net50.System.Diagnostics.Process");
+ internal static byte[] SystemDiagnosticsProcess => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsProcess, "net10.System.Diagnostics.Process");
private static byte[]? _SystemDiagnosticsStackTrace;
- internal static byte[] SystemDiagnosticsStackTrace => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsStackTrace, "net50.System.Diagnostics.StackTrace");
+ internal static byte[] SystemDiagnosticsStackTrace => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsStackTrace, "net10.System.Diagnostics.StackTrace");
private static byte[]? _SystemDiagnosticsTextWriterTraceListener;
- internal static byte[] SystemDiagnosticsTextWriterTraceListener => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTextWriterTraceListener, "net50.System.Diagnostics.TextWriterTraceListener");
+ internal static byte[] SystemDiagnosticsTextWriterTraceListener => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTextWriterTraceListener, "net10.System.Diagnostics.TextWriterTraceListener");
private static byte[]? _SystemDiagnosticsTools;
- internal static byte[] SystemDiagnosticsTools => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTools, "net50.System.Diagnostics.Tools");
+ internal static byte[] SystemDiagnosticsTools => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTools, "net10.System.Diagnostics.Tools");
private static byte[]? _SystemDiagnosticsTraceSource;
- internal static byte[] SystemDiagnosticsTraceSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTraceSource, "net50.System.Diagnostics.TraceSource");
+ internal static byte[] SystemDiagnosticsTraceSource => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTraceSource, "net10.System.Diagnostics.TraceSource");
private static byte[]? _SystemDiagnosticsTracing;
- internal static byte[] SystemDiagnosticsTracing => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTracing, "net50.System.Diagnostics.Tracing");
+ internal static byte[] SystemDiagnosticsTracing => ResourceLoader.GetOrCreateResource(ref _SystemDiagnosticsTracing, "net10.System.Diagnostics.Tracing");
private static byte[]? _System;
- internal static byte[] System => ResourceLoader.GetOrCreateResource(ref _System, "net50.System");
+ internal static byte[] System => ResourceLoader.GetOrCreateResource(ref _System, "net10.System");
private static byte[]? _SystemDrawing;
- internal static byte[] SystemDrawing => ResourceLoader.GetOrCreateResource(ref _SystemDrawing, "net50.System.Drawing");
+ internal static byte[] SystemDrawing => ResourceLoader.GetOrCreateResource(ref _SystemDrawing, "net10.System.Drawing");
private static byte[]? _SystemDrawingPrimitives;
- internal static byte[] SystemDrawingPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemDrawingPrimitives, "net50.System.Drawing.Primitives");
+ internal static byte[] SystemDrawingPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemDrawingPrimitives, "net10.System.Drawing.Primitives");
private static byte[]? _SystemDynamicRuntime;
- internal static byte[] SystemDynamicRuntime => ResourceLoader.GetOrCreateResource(ref _SystemDynamicRuntime, "net50.System.Dynamic.Runtime");
+ internal static byte[] SystemDynamicRuntime => ResourceLoader.GetOrCreateResource(ref _SystemDynamicRuntime, "net10.System.Dynamic.Runtime");
private static byte[]? _SystemFormatsAsn1;
- internal static byte[] SystemFormatsAsn1 => ResourceLoader.GetOrCreateResource(ref _SystemFormatsAsn1, "net50.System.Formats.Asn1");
+ internal static byte[] SystemFormatsAsn1 => ResourceLoader.GetOrCreateResource(ref _SystemFormatsAsn1, "net10.System.Formats.Asn1");
private static byte[]? _SystemGlobalizationCalendars;
- internal static byte[] SystemGlobalizationCalendars => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationCalendars, "net50.System.Globalization.Calendars");
+ internal static byte[] SystemGlobalizationCalendars => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationCalendars, "net10.System.Globalization.Calendars");
private static byte[]? _SystemGlobalization;
- internal static byte[] SystemGlobalization => ResourceLoader.GetOrCreateResource(ref _SystemGlobalization, "net50.System.Globalization");
+ internal static byte[] SystemGlobalization => ResourceLoader.GetOrCreateResource(ref _SystemGlobalization, "net10.System.Globalization");
private static byte[]? _SystemGlobalizationExtensions;
- internal static byte[] SystemGlobalizationExtensions => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationExtensions, "net50.System.Globalization.Extensions");
+ internal static byte[] SystemGlobalizationExtensions => ResourceLoader.GetOrCreateResource(ref _SystemGlobalizationExtensions, "net10.System.Globalization.Extensions");
private static byte[]? _SystemIOCompressionBrotli;
- internal static byte[] SystemIOCompressionBrotli => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionBrotli, "net50.System.IO.Compression.Brotli");
+ internal static byte[] SystemIOCompressionBrotli => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionBrotli, "net10.System.IO.Compression.Brotli");
private static byte[]? _SystemIOCompression;
- internal static byte[] SystemIOCompression => ResourceLoader.GetOrCreateResource(ref _SystemIOCompression, "net50.System.IO.Compression");
+ internal static byte[] SystemIOCompression => ResourceLoader.GetOrCreateResource(ref _SystemIOCompression, "net10.System.IO.Compression");
private static byte[]? _SystemIOCompressionFileSystem;
- internal static byte[] SystemIOCompressionFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionFileSystem, "net50.System.IO.Compression.FileSystem");
+ internal static byte[] SystemIOCompressionFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionFileSystem, "net10.System.IO.Compression.FileSystem");
private static byte[]? _SystemIOCompressionZipFile;
- internal static byte[] SystemIOCompressionZipFile => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionZipFile, "net50.System.IO.Compression.ZipFile");
+ internal static byte[] SystemIOCompressionZipFile => ResourceLoader.GetOrCreateResource(ref _SystemIOCompressionZipFile, "net10.System.IO.Compression.ZipFile");
private static byte[]? _SystemIO;
- internal static byte[] SystemIO => ResourceLoader.GetOrCreateResource(ref _SystemIO, "net50.System.IO");
+ internal static byte[] SystemIO => ResourceLoader.GetOrCreateResource(ref _SystemIO, "net10.System.IO");
private static byte[]? _SystemIOFileSystem;
- internal static byte[] SystemIOFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystem, "net50.System.IO.FileSystem");
+ internal static byte[] SystemIOFileSystem => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystem, "net10.System.IO.FileSystem");
private static byte[]? _SystemIOFileSystemDriveInfo;
- internal static byte[] SystemIOFileSystemDriveInfo => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemDriveInfo, "net50.System.IO.FileSystem.DriveInfo");
+ internal static byte[] SystemIOFileSystemDriveInfo => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemDriveInfo, "net10.System.IO.FileSystem.DriveInfo");
private static byte[]? _SystemIOFileSystemPrimitives;
- internal static byte[] SystemIOFileSystemPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemPrimitives, "net50.System.IO.FileSystem.Primitives");
+ internal static byte[] SystemIOFileSystemPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemPrimitives, "net10.System.IO.FileSystem.Primitives");
private static byte[]? _SystemIOFileSystemWatcher;
- internal static byte[] SystemIOFileSystemWatcher => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemWatcher, "net50.System.IO.FileSystem.Watcher");
+ internal static byte[] SystemIOFileSystemWatcher => ResourceLoader.GetOrCreateResource(ref _SystemIOFileSystemWatcher, "net10.System.IO.FileSystem.Watcher");
private static byte[]? _SystemIOIsolatedStorage;
- internal static byte[] SystemIOIsolatedStorage => ResourceLoader.GetOrCreateResource(ref _SystemIOIsolatedStorage, "net50.System.IO.IsolatedStorage");
+ internal static byte[] SystemIOIsolatedStorage => ResourceLoader.GetOrCreateResource(ref _SystemIOIsolatedStorage, "net10.System.IO.IsolatedStorage");
private static byte[]? _SystemIOMemoryMappedFiles;
- internal static byte[] SystemIOMemoryMappedFiles => ResourceLoader.GetOrCreateResource(ref _SystemIOMemoryMappedFiles, "net50.System.IO.MemoryMappedFiles");
+ internal static byte[] SystemIOMemoryMappedFiles => ResourceLoader.GetOrCreateResource(ref _SystemIOMemoryMappedFiles, "net10.System.IO.MemoryMappedFiles");
private static byte[]? _SystemIOPipes;
- internal static byte[] SystemIOPipes => ResourceLoader.GetOrCreateResource(ref _SystemIOPipes, "net50.System.IO.Pipes");
+ internal static byte[] SystemIOPipes => ResourceLoader.GetOrCreateResource(ref _SystemIOPipes, "net10.System.IO.Pipes");
private static byte[]? _SystemIOUnmanagedMemoryStream;
- internal static byte[] SystemIOUnmanagedMemoryStream => ResourceLoader.GetOrCreateResource(ref _SystemIOUnmanagedMemoryStream, "net50.System.IO.UnmanagedMemoryStream");
+ internal static byte[] SystemIOUnmanagedMemoryStream => ResourceLoader.GetOrCreateResource(ref _SystemIOUnmanagedMemoryStream, "net10.System.IO.UnmanagedMemoryStream");
private static byte[]? _SystemLinq;
- internal static byte[] SystemLinq => ResourceLoader.GetOrCreateResource(ref _SystemLinq, "net50.System.Linq");
+ internal static byte[] SystemLinq => ResourceLoader.GetOrCreateResource(ref _SystemLinq, "net10.System.Linq");
private static byte[]? _SystemLinqExpressions;
- internal static byte[] SystemLinqExpressions => ResourceLoader.GetOrCreateResource(ref _SystemLinqExpressions, "net50.System.Linq.Expressions");
+ internal static byte[] SystemLinqExpressions => ResourceLoader.GetOrCreateResource(ref _SystemLinqExpressions, "net10.System.Linq.Expressions");
private static byte[]? _SystemLinqParallel;
- internal static byte[] SystemLinqParallel => ResourceLoader.GetOrCreateResource(ref _SystemLinqParallel, "net50.System.Linq.Parallel");
+ internal static byte[] SystemLinqParallel => ResourceLoader.GetOrCreateResource(ref _SystemLinqParallel, "net10.System.Linq.Parallel");
private static byte[]? _SystemLinqQueryable;
- internal static byte[] SystemLinqQueryable => ResourceLoader.GetOrCreateResource(ref _SystemLinqQueryable, "net50.System.Linq.Queryable");
+ internal static byte[] SystemLinqQueryable => ResourceLoader.GetOrCreateResource(ref _SystemLinqQueryable, "net10.System.Linq.Queryable");
private static byte[]? _SystemMemory;
- internal static byte[] SystemMemory => ResourceLoader.GetOrCreateResource(ref _SystemMemory, "net50.System.Memory");
+ internal static byte[] SystemMemory => ResourceLoader.GetOrCreateResource(ref _SystemMemory, "net10.System.Memory");
private static byte[]? _SystemNet;
- internal static byte[] SystemNet => ResourceLoader.GetOrCreateResource(ref _SystemNet, "net50.System.Net");
+ internal static byte[] SystemNet => ResourceLoader.GetOrCreateResource(ref _SystemNet, "net10.System.Net");
private static byte[]? _SystemNetHttp;
- internal static byte[] SystemNetHttp => ResourceLoader.GetOrCreateResource(ref _SystemNetHttp, "net50.System.Net.Http");
+ internal static byte[] SystemNetHttp => ResourceLoader.GetOrCreateResource(ref _SystemNetHttp, "net10.System.Net.Http");
private static byte[]? _SystemNetHttpJson;
- internal static byte[] SystemNetHttpJson => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpJson, "net50.System.Net.Http.Json");
+ internal static byte[] SystemNetHttpJson => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpJson, "net10.System.Net.Http.Json");
private static byte[]? _SystemNetHttpListener;
- internal static byte[] SystemNetHttpListener => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpListener, "net50.System.Net.HttpListener");
+ internal static byte[] SystemNetHttpListener => ResourceLoader.GetOrCreateResource(ref _SystemNetHttpListener, "net10.System.Net.HttpListener");
private static byte[]? _SystemNetMail;
- internal static byte[] SystemNetMail => ResourceLoader.GetOrCreateResource(ref _SystemNetMail, "net50.System.Net.Mail");
+ internal static byte[] SystemNetMail => ResourceLoader.GetOrCreateResource(ref _SystemNetMail, "net10.System.Net.Mail");
private static byte[]? _SystemNetNameResolution;
- internal static byte[] SystemNetNameResolution => ResourceLoader.GetOrCreateResource(ref _SystemNetNameResolution, "net50.System.Net.NameResolution");
+ internal static byte[] SystemNetNameResolution => ResourceLoader.GetOrCreateResource(ref _SystemNetNameResolution, "net10.System.Net.NameResolution");
private static byte[]? _SystemNetNetworkInformation;
- internal static byte[] SystemNetNetworkInformation => ResourceLoader.GetOrCreateResource(ref _SystemNetNetworkInformation, "net50.System.Net.NetworkInformation");
+ internal static byte[] SystemNetNetworkInformation => ResourceLoader.GetOrCreateResource(ref _SystemNetNetworkInformation, "net10.System.Net.NetworkInformation");
private static byte[]? _SystemNetPing;
- internal static byte[] SystemNetPing => ResourceLoader.GetOrCreateResource(ref _SystemNetPing, "net50.System.Net.Ping");
+ internal static byte[] SystemNetPing => ResourceLoader.GetOrCreateResource(ref _SystemNetPing, "net10.System.Net.Ping");
private static byte[]? _SystemNetPrimitives;
- internal static byte[] SystemNetPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemNetPrimitives, "net50.System.Net.Primitives");
+ internal static byte[] SystemNetPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemNetPrimitives, "net10.System.Net.Primitives");
private static byte[]? _SystemNetRequests;
- internal static byte[] SystemNetRequests => ResourceLoader.GetOrCreateResource(ref _SystemNetRequests, "net50.System.Net.Requests");
+ internal static byte[] SystemNetRequests => ResourceLoader.GetOrCreateResource(ref _SystemNetRequests, "net10.System.Net.Requests");
private static byte[]? _SystemNetSecurity;
- internal static byte[] SystemNetSecurity => ResourceLoader.GetOrCreateResource(ref _SystemNetSecurity, "net50.System.Net.Security");
+ internal static byte[] SystemNetSecurity => ResourceLoader.GetOrCreateResource(ref _SystemNetSecurity, "net10.System.Net.Security");
private static byte[]? _SystemNetServicePoint;
- internal static byte[] SystemNetServicePoint => ResourceLoader.GetOrCreateResource(ref _SystemNetServicePoint, "net50.System.Net.ServicePoint");
+ internal static byte[] SystemNetServicePoint => ResourceLoader.GetOrCreateResource(ref _SystemNetServicePoint, "net10.System.Net.ServicePoint");
private static byte[]? _SystemNetSockets;
- internal static byte[] SystemNetSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetSockets, "net50.System.Net.Sockets");
+ internal static byte[] SystemNetSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetSockets, "net10.System.Net.Sockets");
private static byte[]? _SystemNetWebClient;
- internal static byte[] SystemNetWebClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebClient, "net50.System.Net.WebClient");
+ internal static byte[] SystemNetWebClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebClient, "net10.System.Net.WebClient");
private static byte[]? _SystemNetWebHeaderCollection;
- internal static byte[] SystemNetWebHeaderCollection => ResourceLoader.GetOrCreateResource(ref _SystemNetWebHeaderCollection, "net50.System.Net.WebHeaderCollection");
+ internal static byte[] SystemNetWebHeaderCollection => ResourceLoader.GetOrCreateResource(ref _SystemNetWebHeaderCollection, "net10.System.Net.WebHeaderCollection");
private static byte[]? _SystemNetWebProxy;
- internal static byte[] SystemNetWebProxy => ResourceLoader.GetOrCreateResource(ref _SystemNetWebProxy, "net50.System.Net.WebProxy");
+ internal static byte[] SystemNetWebProxy => ResourceLoader.GetOrCreateResource(ref _SystemNetWebProxy, "net10.System.Net.WebProxy");
private static byte[]? _SystemNetWebSocketsClient;
- internal static byte[] SystemNetWebSocketsClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSocketsClient, "net50.System.Net.WebSockets.Client");
+ internal static byte[] SystemNetWebSocketsClient => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSocketsClient, "net10.System.Net.WebSockets.Client");
private static byte[]? _SystemNetWebSockets;
- internal static byte[] SystemNetWebSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSockets, "net50.System.Net.WebSockets");
+ internal static byte[] SystemNetWebSockets => ResourceLoader.GetOrCreateResource(ref _SystemNetWebSockets, "net10.System.Net.WebSockets");
private static byte[]? _SystemNumerics;
- internal static byte[] SystemNumerics => ResourceLoader.GetOrCreateResource(ref _SystemNumerics, "net50.System.Numerics");
+ internal static byte[] SystemNumerics => ResourceLoader.GetOrCreateResource(ref _SystemNumerics, "net10.System.Numerics");
private static byte[]? _SystemNumericsVectors;
- internal static byte[] SystemNumericsVectors => ResourceLoader.GetOrCreateResource(ref _SystemNumericsVectors, "net50.System.Numerics.Vectors");
+ internal static byte[] SystemNumericsVectors => ResourceLoader.GetOrCreateResource(ref _SystemNumericsVectors, "net10.System.Numerics.Vectors");
private static byte[]? _SystemObjectModel;
- internal static byte[] SystemObjectModel => ResourceLoader.GetOrCreateResource(ref _SystemObjectModel, "net50.System.ObjectModel");
+ internal static byte[] SystemObjectModel => ResourceLoader.GetOrCreateResource(ref _SystemObjectModel, "net10.System.ObjectModel");
private static byte[]? _SystemReflectionDispatchProxy;
- internal static byte[] SystemReflectionDispatchProxy => ResourceLoader.GetOrCreateResource(ref _SystemReflectionDispatchProxy, "net50.System.Reflection.DispatchProxy");
+ internal static byte[] SystemReflectionDispatchProxy => ResourceLoader.GetOrCreateResource(ref _SystemReflectionDispatchProxy, "net10.System.Reflection.DispatchProxy");
private static byte[]? _SystemReflection;
- internal static byte[] SystemReflection => ResourceLoader.GetOrCreateResource(ref _SystemReflection, "net50.System.Reflection");
+ internal static byte[] SystemReflection => ResourceLoader.GetOrCreateResource(ref _SystemReflection, "net10.System.Reflection");
private static byte[]? _SystemReflectionEmit;
- internal static byte[] SystemReflectionEmit => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmit, "net50.System.Reflection.Emit");
+ internal static byte[] SystemReflectionEmit => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmit, "net10.System.Reflection.Emit");
private static byte[]? _SystemReflectionEmitILGeneration;
- internal static byte[] SystemReflectionEmitILGeneration => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitILGeneration, "net50.System.Reflection.Emit.ILGeneration");
+ internal static byte[] SystemReflectionEmitILGeneration => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitILGeneration, "net10.System.Reflection.Emit.ILGeneration");
private static byte[]? _SystemReflectionEmitLightweight;
- internal static byte[] SystemReflectionEmitLightweight => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitLightweight, "net50.System.Reflection.Emit.Lightweight");
+ internal static byte[] SystemReflectionEmitLightweight => ResourceLoader.GetOrCreateResource(ref _SystemReflectionEmitLightweight, "net10.System.Reflection.Emit.Lightweight");
private static byte[]? _SystemReflectionExtensions;
- internal static byte[] SystemReflectionExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionExtensions, "net50.System.Reflection.Extensions");
+ internal static byte[] SystemReflectionExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionExtensions, "net10.System.Reflection.Extensions");
private static byte[]? _SystemReflectionMetadata;
- internal static byte[] SystemReflectionMetadata => ResourceLoader.GetOrCreateResource(ref _SystemReflectionMetadata, "net50.System.Reflection.Metadata");
+ internal static byte[] SystemReflectionMetadata => ResourceLoader.GetOrCreateResource(ref _SystemReflectionMetadata, "net10.System.Reflection.Metadata");
private static byte[]? _SystemReflectionPrimitives;
- internal static byte[] SystemReflectionPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemReflectionPrimitives, "net50.System.Reflection.Primitives");
+ internal static byte[] SystemReflectionPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemReflectionPrimitives, "net10.System.Reflection.Primitives");
private static byte[]? _SystemReflectionTypeExtensions;
- internal static byte[] SystemReflectionTypeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionTypeExtensions, "net50.System.Reflection.TypeExtensions");
+ internal static byte[] SystemReflectionTypeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemReflectionTypeExtensions, "net10.System.Reflection.TypeExtensions");
private static byte[]? _SystemResourcesReader;
- internal static byte[] SystemResourcesReader => ResourceLoader.GetOrCreateResource(ref _SystemResourcesReader, "net50.System.Resources.Reader");
+ internal static byte[] SystemResourcesReader => ResourceLoader.GetOrCreateResource(ref _SystemResourcesReader, "net10.System.Resources.Reader");
private static byte[]? _SystemResourcesResourceManager;
- internal static byte[] SystemResourcesResourceManager => ResourceLoader.GetOrCreateResource(ref _SystemResourcesResourceManager, "net50.System.Resources.ResourceManager");
+ internal static byte[] SystemResourcesResourceManager => ResourceLoader.GetOrCreateResource(ref _SystemResourcesResourceManager, "net10.System.Resources.ResourceManager");
private static byte[]? _SystemResourcesWriter;
- internal static byte[] SystemResourcesWriter => ResourceLoader.GetOrCreateResource(ref _SystemResourcesWriter, "net50.System.Resources.Writer");
+ internal static byte[] SystemResourcesWriter => ResourceLoader.GetOrCreateResource(ref _SystemResourcesWriter, "net10.System.Resources.Writer");
private static byte[]? _SystemRuntimeCompilerServicesUnsafe;
- internal static byte[] SystemRuntimeCompilerServicesUnsafe => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesUnsafe, "net50.System.Runtime.CompilerServices.Unsafe");
+ internal static byte[] SystemRuntimeCompilerServicesUnsafe => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesUnsafe, "net10.System.Runtime.CompilerServices.Unsafe");
private static byte[]? _SystemRuntimeCompilerServicesVisualC;
- internal static byte[] SystemRuntimeCompilerServicesVisualC => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesVisualC, "net50.System.Runtime.CompilerServices.VisualC");
+ internal static byte[] SystemRuntimeCompilerServicesVisualC => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeCompilerServicesVisualC, "net10.System.Runtime.CompilerServices.VisualC");
private static byte[]? _SystemRuntime;
- internal static byte[] SystemRuntime => ResourceLoader.GetOrCreateResource(ref _SystemRuntime, "net50.System.Runtime");
+ internal static byte[] SystemRuntime => ResourceLoader.GetOrCreateResource(ref _SystemRuntime, "net10.System.Runtime");
private static byte[]? _SystemRuntimeExtensions;
- internal static byte[] SystemRuntimeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeExtensions, "net50.System.Runtime.Extensions");
+ internal static byte[] SystemRuntimeExtensions => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeExtensions, "net10.System.Runtime.Extensions");
private static byte[]? _SystemRuntimeHandles;
- internal static byte[] SystemRuntimeHandles => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeHandles, "net50.System.Runtime.Handles");
+ internal static byte[] SystemRuntimeHandles => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeHandles, "net10.System.Runtime.Handles");
private static byte[]? _SystemRuntimeInteropServices;
- internal static byte[] SystemRuntimeInteropServices => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServices, "net50.System.Runtime.InteropServices");
+ internal static byte[] SystemRuntimeInteropServices => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServices, "net10.System.Runtime.InteropServices");
private static byte[]? _SystemRuntimeInteropServicesRuntimeInformation;
- internal static byte[] SystemRuntimeInteropServicesRuntimeInformation => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServicesRuntimeInformation, "net50.System.Runtime.InteropServices.RuntimeInformation");
+ internal static byte[] SystemRuntimeInteropServicesRuntimeInformation => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeInteropServicesRuntimeInformation, "net10.System.Runtime.InteropServices.RuntimeInformation");
private static byte[]? _SystemRuntimeIntrinsics;
- internal static byte[] SystemRuntimeIntrinsics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeIntrinsics, "net50.System.Runtime.Intrinsics");
+ internal static byte[] SystemRuntimeIntrinsics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeIntrinsics, "net10.System.Runtime.Intrinsics");
private static byte[]? _SystemRuntimeLoader;
- internal static byte[] SystemRuntimeLoader => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeLoader, "net50.System.Runtime.Loader");
+ internal static byte[] SystemRuntimeLoader => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeLoader, "net10.System.Runtime.Loader");
private static byte[]? _SystemRuntimeNumerics;
- internal static byte[] SystemRuntimeNumerics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeNumerics, "net50.System.Runtime.Numerics");
+ internal static byte[] SystemRuntimeNumerics => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeNumerics, "net10.System.Runtime.Numerics");
private static byte[]? _SystemRuntimeSerialization;
- internal static byte[] SystemRuntimeSerialization => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerialization, "net50.System.Runtime.Serialization");
+ internal static byte[] SystemRuntimeSerialization => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerialization, "net10.System.Runtime.Serialization");
private static byte[]? _SystemRuntimeSerializationFormatters;
- internal static byte[] SystemRuntimeSerializationFormatters => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationFormatters, "net50.System.Runtime.Serialization.Formatters");
+ internal static byte[] SystemRuntimeSerializationFormatters => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationFormatters, "net10.System.Runtime.Serialization.Formatters");
private static byte[]? _SystemRuntimeSerializationJson;
- internal static byte[] SystemRuntimeSerializationJson => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationJson, "net50.System.Runtime.Serialization.Json");
+ internal static byte[] SystemRuntimeSerializationJson => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationJson, "net10.System.Runtime.Serialization.Json");
private static byte[]? _SystemRuntimeSerializationPrimitives;
- internal static byte[] SystemRuntimeSerializationPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationPrimitives, "net50.System.Runtime.Serialization.Primitives");
+ internal static byte[] SystemRuntimeSerializationPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationPrimitives, "net10.System.Runtime.Serialization.Primitives");
private static byte[]? _SystemRuntimeSerializationXml;
- internal static byte[] SystemRuntimeSerializationXml => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationXml, "net50.System.Runtime.Serialization.Xml");
+ internal static byte[] SystemRuntimeSerializationXml => ResourceLoader.GetOrCreateResource(ref _SystemRuntimeSerializationXml, "net10.System.Runtime.Serialization.Xml");
private static byte[]? _SystemSecurityClaims;
- internal static byte[] SystemSecurityClaims => ResourceLoader.GetOrCreateResource(ref _SystemSecurityClaims, "net50.System.Security.Claims");
+ internal static byte[] SystemSecurityClaims => ResourceLoader.GetOrCreateResource(ref _SystemSecurityClaims, "net10.System.Security.Claims");
private static byte[]? _SystemSecurityCryptographyAlgorithms;
- internal static byte[] SystemSecurityCryptographyAlgorithms => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyAlgorithms, "net50.System.Security.Cryptography.Algorithms");
+ internal static byte[] SystemSecurityCryptographyAlgorithms => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyAlgorithms, "net10.System.Security.Cryptography.Algorithms");
private static byte[]? _SystemSecurityCryptographyCsp;
- internal static byte[] SystemSecurityCryptographyCsp => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCsp, "net50.System.Security.Cryptography.Csp");
+ internal static byte[] SystemSecurityCryptographyCsp => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyCsp, "net10.System.Security.Cryptography.Csp");
private static byte[]? _SystemSecurityCryptographyEncoding;
- internal static byte[] SystemSecurityCryptographyEncoding => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyEncoding, "net50.System.Security.Cryptography.Encoding");
+ internal static byte[] SystemSecurityCryptographyEncoding => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyEncoding, "net10.System.Security.Cryptography.Encoding");
private static byte[]? _SystemSecurityCryptographyPrimitives;
- internal static byte[] SystemSecurityCryptographyPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyPrimitives, "net50.System.Security.Cryptography.Primitives");
+ internal static byte[] SystemSecurityCryptographyPrimitives => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyPrimitives, "net10.System.Security.Cryptography.Primitives");
private static byte[]? _SystemSecurityCryptographyX509Certificates;
- internal static byte[] SystemSecurityCryptographyX509Certificates => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyX509Certificates, "net50.System.Security.Cryptography.X509Certificates");
+ internal static byte[] SystemSecurityCryptographyX509Certificates => ResourceLoader.GetOrCreateResource(ref _SystemSecurityCryptographyX509Certificates, "net10.System.Security.Cryptography.X509Certificates");
private static byte[]? _SystemSecurity;
- internal static byte[] SystemSecurity => ResourceLoader.GetOrCreateResource(ref _SystemSecurity, "net50.System.Security");
+ internal static byte[] SystemSecurity => ResourceLoader.GetOrCreateResource(ref _SystemSecurity, "net10.System.Security");
private static byte[]? _SystemSecurityPrincipal;
- internal static byte[] SystemSecurityPrincipal => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipal, "net50.System.Security.Principal");
+ internal static byte[] SystemSecurityPrincipal => ResourceLoader.GetOrCreateResource(ref _SystemSecurityPrincipal, "net10.System.Security.Principal");
private static byte[]? _SystemSecuritySecureString;
- internal static byte[] SystemSecuritySecureString => ResourceLoader.GetOrCreateResource(ref _SystemSecuritySecureString, "net50.System.Security.SecureString");
+ internal static byte[] SystemSecuritySecureString => ResourceLoader.GetOrCreateResource(ref _SystemSecuritySecureString, "net10.System.Security.SecureString");
private static byte[]? _SystemServiceModelWeb;
- internal static byte[] SystemServiceModelWeb => ResourceLoader.GetOrCreateResource(ref _SystemServiceModelWeb, "net50.System.ServiceModel.Web");
+ internal static byte[] SystemServiceModelWeb => ResourceLoader.GetOrCreateResource(ref _SystemServiceModelWeb, "net10.System.ServiceModel.Web");
private static byte[]? _SystemServiceProcess;
- internal static byte[] SystemServiceProcess => ResourceLoader.GetOrCreateResource(ref _SystemServiceProcess, "net50.System.ServiceProcess");
+ internal static byte[] SystemServiceProcess => ResourceLoader.GetOrCreateResource(ref _SystemServiceProcess, "net10.System.ServiceProcess");
private static byte[]? _SystemTextEncodingCodePages;
- internal static byte[] SystemTextEncodingCodePages => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingCodePages, "net50.System.Text.Encoding.CodePages");
+ internal static byte[] SystemTextEncodingCodePages => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingCodePages, "net10.System.Text.Encoding.CodePages");
private static byte[]? _SystemTextEncoding;
- internal static byte[] SystemTextEncoding => ResourceLoader.GetOrCreateResource(ref _SystemTextEncoding, "net50.System.Text.Encoding");
+ internal static byte[] SystemTextEncoding => ResourceLoader.GetOrCreateResource(ref _SystemTextEncoding, "net10.System.Text.Encoding");
private static byte[]? _SystemTextEncodingExtensions;
- internal static byte[] SystemTextEncodingExtensions => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingExtensions, "net50.System.Text.Encoding.Extensions");
+ internal static byte[] SystemTextEncodingExtensions => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingExtensions, "net10.System.Text.Encoding.Extensions");
private static byte[]? _SystemTextEncodingsWeb;
- internal static byte[] SystemTextEncodingsWeb => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingsWeb, "net50.System.Text.Encodings.Web");
+ internal static byte[] SystemTextEncodingsWeb => ResourceLoader.GetOrCreateResource(ref _SystemTextEncodingsWeb, "net10.System.Text.Encodings.Web");
private static byte[]? _SystemTextJson;
- internal static byte[] SystemTextJson => ResourceLoader.GetOrCreateResource(ref _SystemTextJson, "net50.System.Text.Json");
+ internal static byte[] SystemTextJson => ResourceLoader.GetOrCreateResource(ref _SystemTextJson, "net10.System.Text.Json");
private static byte[]? _SystemTextRegularExpressions;
- internal static byte[] SystemTextRegularExpressions => ResourceLoader.GetOrCreateResource(ref _SystemTextRegularExpressions, "net50.System.Text.RegularExpressions");
+ internal static byte[] SystemTextRegularExpressions => ResourceLoader.GetOrCreateResource(ref _SystemTextRegularExpressions, "net10.System.Text.RegularExpressions");
private static byte[]? _SystemThreadingChannels;
- internal static byte[] SystemThreadingChannels => ResourceLoader.GetOrCreateResource(ref _SystemThreadingChannels, "net50.System.Threading.Channels");
+ internal static byte[] SystemThreadingChannels => ResourceLoader.GetOrCreateResource(ref _SystemThreadingChannels, "net10.System.Threading.Channels");
private static byte[]? _SystemThreading;
- internal static byte[] SystemThreading => ResourceLoader.GetOrCreateResource(ref _SystemThreading, "net50.System.Threading");
+ internal static byte[] SystemThreading => ResourceLoader.GetOrCreateResource(ref _SystemThreading, "net10.System.Threading");
private static byte[]? _SystemThreadingOverlapped;
- internal static byte[] SystemThreadingOverlapped => ResourceLoader.GetOrCreateResource(ref _SystemThreadingOverlapped, "net50.System.Threading.Overlapped");
+ internal static byte[] SystemThreadingOverlapped => ResourceLoader.GetOrCreateResource(ref _SystemThreadingOverlapped, "net10.System.Threading.Overlapped");
private static byte[]? _SystemThreadingTasksDataflow;
- internal static byte[] SystemThreadingTasksDataflow => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksDataflow, "net50.System.Threading.Tasks.Dataflow");
+ internal static byte[] SystemThreadingTasksDataflow => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksDataflow, "net10.System.Threading.Tasks.Dataflow");
private static byte[]? _SystemThreadingTasks;
- internal static byte[] SystemThreadingTasks => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasks, "net50.System.Threading.Tasks");
+ internal static byte[] SystemThreadingTasks => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasks, "net10.System.Threading.Tasks");
private static byte[]? _SystemThreadingTasksExtensions;
- internal static byte[] SystemThreadingTasksExtensions => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksExtensions, "net50.System.Threading.Tasks.Extensions");
+ internal static byte[] SystemThreadingTasksExtensions => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksExtensions, "net10.System.Threading.Tasks.Extensions");
private static byte[]? _SystemThreadingTasksParallel;
- internal static byte[] SystemThreadingTasksParallel => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksParallel, "net50.System.Threading.Tasks.Parallel");
+ internal static byte[] SystemThreadingTasksParallel => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTasksParallel, "net10.System.Threading.Tasks.Parallel");
private static byte[]? _SystemThreadingThread;
- internal static byte[] SystemThreadingThread => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThread, "net50.System.Threading.Thread");
+ internal static byte[] SystemThreadingThread => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThread, "net10.System.Threading.Thread");
private static byte[]? _SystemThreadingThreadPool;
- internal static byte[] SystemThreadingThreadPool => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThreadPool, "net50.System.Threading.ThreadPool");
+ internal static byte[] SystemThreadingThreadPool => ResourceLoader.GetOrCreateResource(ref _SystemThreadingThreadPool, "net10.System.Threading.ThreadPool");
private static byte[]? _SystemThreadingTimer;
- internal static byte[] SystemThreadingTimer => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTimer, "net50.System.Threading.Timer");
+ internal static byte[] SystemThreadingTimer => ResourceLoader.GetOrCreateResource(ref _SystemThreadingTimer, "net10.System.Threading.Timer");
private static byte[]? _SystemTransactions;
- internal static byte[] SystemTransactions => ResourceLoader.GetOrCreateResource(ref _SystemTransactions, "net50.System.Transactions");
+ internal static byte[] SystemTransactions => ResourceLoader.GetOrCreateResource(ref _SystemTransactions, "net10.System.Transactions");
private static byte[]? _SystemTransactionsLocal;
- internal static byte[] SystemTransactionsLocal => ResourceLoader.GetOrCreateResource(ref _SystemTransactionsLocal, "net50.System.Transactions.Local");
+ internal static byte[] SystemTransactionsLocal => ResourceLoader.GetOrCreateResource(ref _SystemTransactionsLocal, "net10.System.Transactions.Local");
private static byte[]? _SystemValueTuple;
- internal static byte[] SystemValueTuple => ResourceLoader.GetOrCreateResource(ref _SystemValueTuple, "net50.System.ValueTuple");
+ internal static byte[] SystemValueTuple => ResourceLoader.GetOrCreateResource(ref _SystemValueTuple, "net10.System.ValueTuple");
private static byte[]? _SystemWeb;
- internal static byte[] SystemWeb => ResourceLoader.GetOrCreateResource(ref _SystemWeb, "net50.System.Web");
+ internal static byte[] SystemWeb => ResourceLoader.GetOrCreateResource(ref _SystemWeb, "net10.System.Web");
private static byte[]? _SystemWebHttpUtility;
- internal static byte[] SystemWebHttpUtility => ResourceLoader.GetOrCreateResource(ref _SystemWebHttpUtility, "net50.System.Web.HttpUtility");
+ internal static byte[] SystemWebHttpUtility => ResourceLoader.GetOrCreateResource(ref _SystemWebHttpUtility, "net10.System.Web.HttpUtility");
private static byte[]? _SystemWindows;
- internal static byte[] SystemWindows => ResourceLoader.GetOrCreateResource(ref _SystemWindows, "net50.System.Windows");
+ internal static byte[] SystemWindows => ResourceLoader.GetOrCreateResource(ref _SystemWindows, "net10.System.Windows");
private static byte[]? _SystemXml;
- internal static byte[] SystemXml => ResourceLoader.GetOrCreateResource(ref _SystemXml, "net50.System.Xml");
+ internal static byte[] SystemXml => ResourceLoader.GetOrCreateResource(ref _SystemXml, "net10.System.Xml");
private static byte[]? _SystemXmlLinq;
- internal static byte[] SystemXmlLinq => ResourceLoader.GetOrCreateResource(ref _SystemXmlLinq, "net50.System.Xml.Linq");
+ internal static byte[] SystemXmlLinq => ResourceLoader.GetOrCreateResource(ref _SystemXmlLinq, "net10.System.Xml.Linq");
private static byte[]? _SystemXmlReaderWriter;
- internal static byte[] SystemXmlReaderWriter => ResourceLoader.GetOrCreateResource(ref _SystemXmlReaderWriter, "net50.System.Xml.ReaderWriter");
+ internal static byte[] SystemXmlReaderWriter => ResourceLoader.GetOrCreateResource(ref _SystemXmlReaderWriter, "net10.System.Xml.ReaderWriter");
private static byte[]? _SystemXmlSerialization;
- internal static byte[] SystemXmlSerialization => ResourceLoader.GetOrCreateResource(ref _SystemXmlSerialization, "net50.System.Xml.Serialization");
+ internal static byte[] SystemXmlSerialization => ResourceLoader.GetOrCreateResource(ref _SystemXmlSerialization, "net10.System.Xml.Serialization");
private static byte[]? _SystemXmlXDocument;
- internal static byte[] SystemXmlXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXDocument, "net50.System.Xml.XDocument");
+ internal static byte[] SystemXmlXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXDocument, "net10.System.Xml.XDocument");
private static byte[]? _SystemXmlXmlDocument;
- internal static byte[] SystemXmlXmlDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlDocument, "net50.System.Xml.XmlDocument");
+ internal static byte[] SystemXmlXmlDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlDocument, "net10.System.Xml.XmlDocument");
private static byte[]? _SystemXmlXmlSerializer;
- internal static byte[] SystemXmlXmlSerializer => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlSerializer, "net50.System.Xml.XmlSerializer");
+ internal static byte[] SystemXmlXmlSerializer => ResourceLoader.GetOrCreateResource(ref _SystemXmlXmlSerializer, "net10.System.Xml.XmlSerializer");
private static byte[]? _SystemXmlXPath;
- internal static byte[] SystemXmlXPath => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPath, "net50.System.Xml.XPath");
+ internal static byte[] SystemXmlXPath => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPath, "net10.System.Xml.XPath");
private static byte[]? _SystemXmlXPathXDocument;
- internal static byte[] SystemXmlXPathXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPathXDocument, "net50.System.Xml.XPath.XDocument");
+ internal static byte[] SystemXmlXPathXDocument => ResourceLoader.GetOrCreateResource(ref _SystemXmlXPathXDocument, "net10.System.Xml.XPath.XDocument");
private static byte[]? _WindowsBase;
- internal static byte[] WindowsBase => ResourceLoader.GetOrCreateResource(ref _WindowsBase, "net50.WindowsBase");
+ internal static byte[] WindowsBase => ResourceLoader.GetOrCreateResource(ref _WindowsBase, "net10.WindowsBase");
}
- public static class Net50
+ public static class Net10
{
- public static PortableExecutableReference MicrosoftCSharp { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.MicrosoftCSharp).GetReference(filePath: "Microsoft.CSharp.dll", display: "Microsoft.CSharp (net50)");
- public static PortableExecutableReference MicrosoftVisualBasicCore { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.MicrosoftVisualBasicCore).GetReference(filePath: "Microsoft.VisualBasic.Core.dll", display: "Microsoft.VisualBasic.Core (net50)");
- public static PortableExecutableReference MicrosoftVisualBasic { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.MicrosoftVisualBasic).GetReference(filePath: "Microsoft.VisualBasic.dll", display: "Microsoft.VisualBasic (net50)");
- public static PortableExecutableReference MicrosoftWin32Primitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.MicrosoftWin32Primitives).GetReference(filePath: "Microsoft.Win32.Primitives.dll", display: "Microsoft.Win32.Primitives (net50)");
- public static PortableExecutableReference mscorlib { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.mscorlib).GetReference(filePath: "mscorlib.dll", display: "mscorlib (net50)");
- public static PortableExecutableReference netstandard { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.netstandard).GetReference(filePath: "netstandard.dll", display: "netstandard (net50)");
- public static PortableExecutableReference SystemAppContext { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemAppContext).GetReference(filePath: "System.AppContext.dll", display: "System.AppContext (net50)");
- public static PortableExecutableReference SystemBuffers { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemBuffers).GetReference(filePath: "System.Buffers.dll", display: "System.Buffers (net50)");
- public static PortableExecutableReference SystemCollectionsConcurrent { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemCollectionsConcurrent).GetReference(filePath: "System.Collections.Concurrent.dll", display: "System.Collections.Concurrent (net50)");
- public static PortableExecutableReference SystemCollections { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemCollections).GetReference(filePath: "System.Collections.dll", display: "System.Collections (net50)");
- public static PortableExecutableReference SystemCollectionsImmutable { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemCollectionsImmutable).GetReference(filePath: "System.Collections.Immutable.dll", display: "System.Collections.Immutable (net50)");
- public static PortableExecutableReference SystemCollectionsNonGeneric { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemCollectionsNonGeneric).GetReference(filePath: "System.Collections.NonGeneric.dll", display: "System.Collections.NonGeneric (net50)");
- public static PortableExecutableReference SystemCollectionsSpecialized { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemCollectionsSpecialized).GetReference(filePath: "System.Collections.Specialized.dll", display: "System.Collections.Specialized (net50)");
- public static PortableExecutableReference SystemComponentModelAnnotations { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemComponentModelAnnotations).GetReference(filePath: "System.ComponentModel.Annotations.dll", display: "System.ComponentModel.Annotations (net50)");
- public static PortableExecutableReference SystemComponentModelDataAnnotations { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemComponentModelDataAnnotations).GetReference(filePath: "System.ComponentModel.DataAnnotations.dll", display: "System.ComponentModel.DataAnnotations (net50)");
- public static PortableExecutableReference SystemComponentModel { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemComponentModel).GetReference(filePath: "System.ComponentModel.dll", display: "System.ComponentModel (net50)");
- public static PortableExecutableReference SystemComponentModelEventBasedAsync { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemComponentModelEventBasedAsync).GetReference(filePath: "System.ComponentModel.EventBasedAsync.dll", display: "System.ComponentModel.EventBasedAsync (net50)");
- public static PortableExecutableReference SystemComponentModelPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemComponentModelPrimitives).GetReference(filePath: "System.ComponentModel.Primitives.dll", display: "System.ComponentModel.Primitives (net50)");
- public static PortableExecutableReference SystemComponentModelTypeConverter { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemComponentModelTypeConverter).GetReference(filePath: "System.ComponentModel.TypeConverter.dll", display: "System.ComponentModel.TypeConverter (net50)");
- public static PortableExecutableReference SystemConfiguration { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemConfiguration).GetReference(filePath: "System.Configuration.dll", display: "System.Configuration (net50)");
- public static PortableExecutableReference SystemConsole { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemConsole).GetReference(filePath: "System.Console.dll", display: "System.Console (net50)");
- public static PortableExecutableReference SystemCore { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemCore).GetReference(filePath: "System.Core.dll", display: "System.Core (net50)");
- public static PortableExecutableReference SystemDataCommon { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDataCommon).GetReference(filePath: "System.Data.Common.dll", display: "System.Data.Common (net50)");
- public static PortableExecutableReference SystemDataDataSetExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDataDataSetExtensions).GetReference(filePath: "System.Data.DataSetExtensions.dll", display: "System.Data.DataSetExtensions (net50)");
- public static PortableExecutableReference SystemData { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemData).GetReference(filePath: "System.Data.dll", display: "System.Data (net50)");
- public static PortableExecutableReference SystemDiagnosticsContracts { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsContracts).GetReference(filePath: "System.Diagnostics.Contracts.dll", display: "System.Diagnostics.Contracts (net50)");
- public static PortableExecutableReference SystemDiagnosticsDebug { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsDebug).GetReference(filePath: "System.Diagnostics.Debug.dll", display: "System.Diagnostics.Debug (net50)");
- public static PortableExecutableReference SystemDiagnosticsDiagnosticSource { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsDiagnosticSource).GetReference(filePath: "System.Diagnostics.DiagnosticSource.dll", display: "System.Diagnostics.DiagnosticSource (net50)");
- public static PortableExecutableReference SystemDiagnosticsFileVersionInfo { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsFileVersionInfo).GetReference(filePath: "System.Diagnostics.FileVersionInfo.dll", display: "System.Diagnostics.FileVersionInfo (net50)");
- public static PortableExecutableReference SystemDiagnosticsProcess { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsProcess).GetReference(filePath: "System.Diagnostics.Process.dll", display: "System.Diagnostics.Process (net50)");
- public static PortableExecutableReference SystemDiagnosticsStackTrace { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsStackTrace).GetReference(filePath: "System.Diagnostics.StackTrace.dll", display: "System.Diagnostics.StackTrace (net50)");
- public static PortableExecutableReference SystemDiagnosticsTextWriterTraceListener { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsTextWriterTraceListener).GetReference(filePath: "System.Diagnostics.TextWriterTraceListener.dll", display: "System.Diagnostics.TextWriterTraceListener (net50)");
- public static PortableExecutableReference SystemDiagnosticsTools { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsTools).GetReference(filePath: "System.Diagnostics.Tools.dll", display: "System.Diagnostics.Tools (net50)");
- public static PortableExecutableReference SystemDiagnosticsTraceSource { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsTraceSource).GetReference(filePath: "System.Diagnostics.TraceSource.dll", display: "System.Diagnostics.TraceSource (net50)");
- public static PortableExecutableReference SystemDiagnosticsTracing { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDiagnosticsTracing).GetReference(filePath: "System.Diagnostics.Tracing.dll", display: "System.Diagnostics.Tracing (net50)");
- public static PortableExecutableReference System { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.System).GetReference(filePath: "System.dll", display: "System (net50)");
- public static PortableExecutableReference SystemDrawing { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDrawing).GetReference(filePath: "System.Drawing.dll", display: "System.Drawing (net50)");
- public static PortableExecutableReference SystemDrawingPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDrawingPrimitives).GetReference(filePath: "System.Drawing.Primitives.dll", display: "System.Drawing.Primitives (net50)");
- public static PortableExecutableReference SystemDynamicRuntime { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemDynamicRuntime).GetReference(filePath: "System.Dynamic.Runtime.dll", display: "System.Dynamic.Runtime (net50)");
- public static PortableExecutableReference SystemFormatsAsn1 { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemFormatsAsn1).GetReference(filePath: "System.Formats.Asn1.dll", display: "System.Formats.Asn1 (net50)");
- public static PortableExecutableReference SystemGlobalizationCalendars { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemGlobalizationCalendars).GetReference(filePath: "System.Globalization.Calendars.dll", display: "System.Globalization.Calendars (net50)");
- public static PortableExecutableReference SystemGlobalization { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemGlobalization).GetReference(filePath: "System.Globalization.dll", display: "System.Globalization (net50)");
- public static PortableExecutableReference SystemGlobalizationExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemGlobalizationExtensions).GetReference(filePath: "System.Globalization.Extensions.dll", display: "System.Globalization.Extensions (net50)");
- public static PortableExecutableReference SystemIOCompressionBrotli { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOCompressionBrotli).GetReference(filePath: "System.IO.Compression.Brotli.dll", display: "System.IO.Compression.Brotli (net50)");
- public static PortableExecutableReference SystemIOCompression { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOCompression).GetReference(filePath: "System.IO.Compression.dll", display: "System.IO.Compression (net50)");
- public static PortableExecutableReference SystemIOCompressionFileSystem { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOCompressionFileSystem).GetReference(filePath: "System.IO.Compression.FileSystem.dll", display: "System.IO.Compression.FileSystem (net50)");
- public static PortableExecutableReference SystemIOCompressionZipFile { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOCompressionZipFile).GetReference(filePath: "System.IO.Compression.ZipFile.dll", display: "System.IO.Compression.ZipFile (net50)");
- public static PortableExecutableReference SystemIO { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIO).GetReference(filePath: "System.IO.dll", display: "System.IO (net50)");
- public static PortableExecutableReference SystemIOFileSystem { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOFileSystem).GetReference(filePath: "System.IO.FileSystem.dll", display: "System.IO.FileSystem (net50)");
- public static PortableExecutableReference SystemIOFileSystemDriveInfo { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOFileSystemDriveInfo).GetReference(filePath: "System.IO.FileSystem.DriveInfo.dll", display: "System.IO.FileSystem.DriveInfo (net50)");
- public static PortableExecutableReference SystemIOFileSystemPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOFileSystemPrimitives).GetReference(filePath: "System.IO.FileSystem.Primitives.dll", display: "System.IO.FileSystem.Primitives (net50)");
- public static PortableExecutableReference SystemIOFileSystemWatcher { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOFileSystemWatcher).GetReference(filePath: "System.IO.FileSystem.Watcher.dll", display: "System.IO.FileSystem.Watcher (net50)");
- public static PortableExecutableReference SystemIOIsolatedStorage { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOIsolatedStorage).GetReference(filePath: "System.IO.IsolatedStorage.dll", display: "System.IO.IsolatedStorage (net50)");
- public static PortableExecutableReference SystemIOMemoryMappedFiles { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOMemoryMappedFiles).GetReference(filePath: "System.IO.MemoryMappedFiles.dll", display: "System.IO.MemoryMappedFiles (net50)");
- public static PortableExecutableReference SystemIOPipes { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOPipes).GetReference(filePath: "System.IO.Pipes.dll", display: "System.IO.Pipes (net50)");
- public static PortableExecutableReference SystemIOUnmanagedMemoryStream { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemIOUnmanagedMemoryStream).GetReference(filePath: "System.IO.UnmanagedMemoryStream.dll", display: "System.IO.UnmanagedMemoryStream (net50)");
- public static PortableExecutableReference SystemLinq { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemLinq).GetReference(filePath: "System.Linq.dll", display: "System.Linq (net50)");
- public static PortableExecutableReference SystemLinqExpressions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemLinqExpressions).GetReference(filePath: "System.Linq.Expressions.dll", display: "System.Linq.Expressions (net50)");
- public static PortableExecutableReference SystemLinqParallel { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemLinqParallel).GetReference(filePath: "System.Linq.Parallel.dll", display: "System.Linq.Parallel (net50)");
- public static PortableExecutableReference SystemLinqQueryable { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemLinqQueryable).GetReference(filePath: "System.Linq.Queryable.dll", display: "System.Linq.Queryable (net50)");
- public static PortableExecutableReference SystemMemory { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemMemory).GetReference(filePath: "System.Memory.dll", display: "System.Memory (net50)");
- public static PortableExecutableReference SystemNet { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNet).GetReference(filePath: "System.Net.dll", display: "System.Net (net50)");
- public static PortableExecutableReference SystemNetHttp { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetHttp).GetReference(filePath: "System.Net.Http.dll", display: "System.Net.Http (net50)");
- public static PortableExecutableReference SystemNetHttpJson { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetHttpJson).GetReference(filePath: "System.Net.Http.Json.dll", display: "System.Net.Http.Json (net50)");
- public static PortableExecutableReference SystemNetHttpListener { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetHttpListener).GetReference(filePath: "System.Net.HttpListener.dll", display: "System.Net.HttpListener (net50)");
- public static PortableExecutableReference SystemNetMail { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetMail).GetReference(filePath: "System.Net.Mail.dll", display: "System.Net.Mail (net50)");
- public static PortableExecutableReference SystemNetNameResolution { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetNameResolution).GetReference(filePath: "System.Net.NameResolution.dll", display: "System.Net.NameResolution (net50)");
- public static PortableExecutableReference SystemNetNetworkInformation { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetNetworkInformation).GetReference(filePath: "System.Net.NetworkInformation.dll", display: "System.Net.NetworkInformation (net50)");
- public static PortableExecutableReference SystemNetPing { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetPing).GetReference(filePath: "System.Net.Ping.dll", display: "System.Net.Ping (net50)");
- public static PortableExecutableReference SystemNetPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetPrimitives).GetReference(filePath: "System.Net.Primitives.dll", display: "System.Net.Primitives (net50)");
- public static PortableExecutableReference SystemNetRequests { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetRequests).GetReference(filePath: "System.Net.Requests.dll", display: "System.Net.Requests (net50)");
- public static PortableExecutableReference SystemNetSecurity { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetSecurity).GetReference(filePath: "System.Net.Security.dll", display: "System.Net.Security (net50)");
- public static PortableExecutableReference SystemNetServicePoint { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetServicePoint).GetReference(filePath: "System.Net.ServicePoint.dll", display: "System.Net.ServicePoint (net50)");
- public static PortableExecutableReference SystemNetSockets { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetSockets).GetReference(filePath: "System.Net.Sockets.dll", display: "System.Net.Sockets (net50)");
- public static PortableExecutableReference SystemNetWebClient { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetWebClient).GetReference(filePath: "System.Net.WebClient.dll", display: "System.Net.WebClient (net50)");
- public static PortableExecutableReference SystemNetWebHeaderCollection { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetWebHeaderCollection).GetReference(filePath: "System.Net.WebHeaderCollection.dll", display: "System.Net.WebHeaderCollection (net50)");
- public static PortableExecutableReference SystemNetWebProxy { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetWebProxy).GetReference(filePath: "System.Net.WebProxy.dll", display: "System.Net.WebProxy (net50)");
- public static PortableExecutableReference SystemNetWebSocketsClient { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetWebSocketsClient).GetReference(filePath: "System.Net.WebSockets.Client.dll", display: "System.Net.WebSockets.Client (net50)");
- public static PortableExecutableReference SystemNetWebSockets { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNetWebSockets).GetReference(filePath: "System.Net.WebSockets.dll", display: "System.Net.WebSockets (net50)");
- public static PortableExecutableReference SystemNumerics { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNumerics).GetReference(filePath: "System.Numerics.dll", display: "System.Numerics (net50)");
- public static PortableExecutableReference SystemNumericsVectors { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemNumericsVectors).GetReference(filePath: "System.Numerics.Vectors.dll", display: "System.Numerics.Vectors (net50)");
- public static PortableExecutableReference SystemObjectModel { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemObjectModel).GetReference(filePath: "System.ObjectModel.dll", display: "System.ObjectModel (net50)");
- public static PortableExecutableReference SystemReflectionDispatchProxy { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionDispatchProxy).GetReference(filePath: "System.Reflection.DispatchProxy.dll", display: "System.Reflection.DispatchProxy (net50)");
- public static PortableExecutableReference SystemReflection { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflection).GetReference(filePath: "System.Reflection.dll", display: "System.Reflection (net50)");
- public static PortableExecutableReference SystemReflectionEmit { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionEmit).GetReference(filePath: "System.Reflection.Emit.dll", display: "System.Reflection.Emit (net50)");
- public static PortableExecutableReference SystemReflectionEmitILGeneration { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionEmitILGeneration).GetReference(filePath: "System.Reflection.Emit.ILGeneration.dll", display: "System.Reflection.Emit.ILGeneration (net50)");
- public static PortableExecutableReference SystemReflectionEmitLightweight { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionEmitLightweight).GetReference(filePath: "System.Reflection.Emit.Lightweight.dll", display: "System.Reflection.Emit.Lightweight (net50)");
- public static PortableExecutableReference SystemReflectionExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionExtensions).GetReference(filePath: "System.Reflection.Extensions.dll", display: "System.Reflection.Extensions (net50)");
- public static PortableExecutableReference SystemReflectionMetadata { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionMetadata).GetReference(filePath: "System.Reflection.Metadata.dll", display: "System.Reflection.Metadata (net50)");
- public static PortableExecutableReference SystemReflectionPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionPrimitives).GetReference(filePath: "System.Reflection.Primitives.dll", display: "System.Reflection.Primitives (net50)");
- public static PortableExecutableReference SystemReflectionTypeExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemReflectionTypeExtensions).GetReference(filePath: "System.Reflection.TypeExtensions.dll", display: "System.Reflection.TypeExtensions (net50)");
- public static PortableExecutableReference SystemResourcesReader { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemResourcesReader).GetReference(filePath: "System.Resources.Reader.dll", display: "System.Resources.Reader (net50)");
- public static PortableExecutableReference SystemResourcesResourceManager { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemResourcesResourceManager).GetReference(filePath: "System.Resources.ResourceManager.dll", display: "System.Resources.ResourceManager (net50)");
- public static PortableExecutableReference SystemResourcesWriter { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemResourcesWriter).GetReference(filePath: "System.Resources.Writer.dll", display: "System.Resources.Writer (net50)");
- public static PortableExecutableReference SystemRuntimeCompilerServicesUnsafe { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeCompilerServicesUnsafe).GetReference(filePath: "System.Runtime.CompilerServices.Unsafe.dll", display: "System.Runtime.CompilerServices.Unsafe (net50)");
- public static PortableExecutableReference SystemRuntimeCompilerServicesVisualC { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeCompilerServicesVisualC).GetReference(filePath: "System.Runtime.CompilerServices.VisualC.dll", display: "System.Runtime.CompilerServices.VisualC (net50)");
- public static PortableExecutableReference SystemRuntime { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntime).GetReference(filePath: "System.Runtime.dll", display: "System.Runtime (net50)");
- public static PortableExecutableReference SystemRuntimeExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeExtensions).GetReference(filePath: "System.Runtime.Extensions.dll", display: "System.Runtime.Extensions (net50)");
- public static PortableExecutableReference SystemRuntimeHandles { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeHandles).GetReference(filePath: "System.Runtime.Handles.dll", display: "System.Runtime.Handles (net50)");
- public static PortableExecutableReference SystemRuntimeInteropServices { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeInteropServices).GetReference(filePath: "System.Runtime.InteropServices.dll", display: "System.Runtime.InteropServices (net50)");
- public static PortableExecutableReference SystemRuntimeInteropServicesRuntimeInformation { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeInteropServicesRuntimeInformation).GetReference(filePath: "System.Runtime.InteropServices.RuntimeInformation.dll", display: "System.Runtime.InteropServices.RuntimeInformation (net50)");
- public static PortableExecutableReference SystemRuntimeIntrinsics { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeIntrinsics).GetReference(filePath: "System.Runtime.Intrinsics.dll", display: "System.Runtime.Intrinsics (net50)");
- public static PortableExecutableReference SystemRuntimeLoader { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeLoader).GetReference(filePath: "System.Runtime.Loader.dll", display: "System.Runtime.Loader (net50)");
- public static PortableExecutableReference SystemRuntimeNumerics { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeNumerics).GetReference(filePath: "System.Runtime.Numerics.dll", display: "System.Runtime.Numerics (net50)");
- public static PortableExecutableReference SystemRuntimeSerialization { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeSerialization).GetReference(filePath: "System.Runtime.Serialization.dll", display: "System.Runtime.Serialization (net50)");
- public static PortableExecutableReference SystemRuntimeSerializationFormatters { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeSerializationFormatters).GetReference(filePath: "System.Runtime.Serialization.Formatters.dll", display: "System.Runtime.Serialization.Formatters (net50)");
- public static PortableExecutableReference SystemRuntimeSerializationJson { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeSerializationJson).GetReference(filePath: "System.Runtime.Serialization.Json.dll", display: "System.Runtime.Serialization.Json (net50)");
- public static PortableExecutableReference SystemRuntimeSerializationPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeSerializationPrimitives).GetReference(filePath: "System.Runtime.Serialization.Primitives.dll", display: "System.Runtime.Serialization.Primitives (net50)");
- public static PortableExecutableReference SystemRuntimeSerializationXml { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemRuntimeSerializationXml).GetReference(filePath: "System.Runtime.Serialization.Xml.dll", display: "System.Runtime.Serialization.Xml (net50)");
- public static PortableExecutableReference SystemSecurityClaims { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityClaims).GetReference(filePath: "System.Security.Claims.dll", display: "System.Security.Claims (net50)");
- public static PortableExecutableReference SystemSecurityCryptographyAlgorithms { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityCryptographyAlgorithms).GetReference(filePath: "System.Security.Cryptography.Algorithms.dll", display: "System.Security.Cryptography.Algorithms (net50)");
- public static PortableExecutableReference SystemSecurityCryptographyCsp { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityCryptographyCsp).GetReference(filePath: "System.Security.Cryptography.Csp.dll", display: "System.Security.Cryptography.Csp (net50)");
- public static PortableExecutableReference SystemSecurityCryptographyEncoding { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityCryptographyEncoding).GetReference(filePath: "System.Security.Cryptography.Encoding.dll", display: "System.Security.Cryptography.Encoding (net50)");
- public static PortableExecutableReference SystemSecurityCryptographyPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityCryptographyPrimitives).GetReference(filePath: "System.Security.Cryptography.Primitives.dll", display: "System.Security.Cryptography.Primitives (net50)");
- public static PortableExecutableReference SystemSecurityCryptographyX509Certificates { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityCryptographyX509Certificates).GetReference(filePath: "System.Security.Cryptography.X509Certificates.dll", display: "System.Security.Cryptography.X509Certificates (net50)");
- public static PortableExecutableReference SystemSecurity { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurity).GetReference(filePath: "System.Security.dll", display: "System.Security (net50)");
- public static PortableExecutableReference SystemSecurityPrincipal { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecurityPrincipal).GetReference(filePath: "System.Security.Principal.dll", display: "System.Security.Principal (net50)");
- public static PortableExecutableReference SystemSecuritySecureString { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemSecuritySecureString).GetReference(filePath: "System.Security.SecureString.dll", display: "System.Security.SecureString (net50)");
- public static PortableExecutableReference SystemServiceModelWeb { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemServiceModelWeb).GetReference(filePath: "System.ServiceModel.Web.dll", display: "System.ServiceModel.Web (net50)");
- public static PortableExecutableReference SystemServiceProcess { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemServiceProcess).GetReference(filePath: "System.ServiceProcess.dll", display: "System.ServiceProcess (net50)");
- public static PortableExecutableReference SystemTextEncodingCodePages { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTextEncodingCodePages).GetReference(filePath: "System.Text.Encoding.CodePages.dll", display: "System.Text.Encoding.CodePages (net50)");
- public static PortableExecutableReference SystemTextEncoding { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTextEncoding).GetReference(filePath: "System.Text.Encoding.dll", display: "System.Text.Encoding (net50)");
- public static PortableExecutableReference SystemTextEncodingExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTextEncodingExtensions).GetReference(filePath: "System.Text.Encoding.Extensions.dll", display: "System.Text.Encoding.Extensions (net50)");
- public static PortableExecutableReference SystemTextEncodingsWeb { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTextEncodingsWeb).GetReference(filePath: "System.Text.Encodings.Web.dll", display: "System.Text.Encodings.Web (net50)");
- public static PortableExecutableReference SystemTextJson { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTextJson).GetReference(filePath: "System.Text.Json.dll", display: "System.Text.Json (net50)");
- public static PortableExecutableReference SystemTextRegularExpressions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTextRegularExpressions).GetReference(filePath: "System.Text.RegularExpressions.dll", display: "System.Text.RegularExpressions (net50)");
- public static PortableExecutableReference SystemThreadingChannels { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingChannels).GetReference(filePath: "System.Threading.Channels.dll", display: "System.Threading.Channels (net50)");
- public static PortableExecutableReference SystemThreading { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreading).GetReference(filePath: "System.Threading.dll", display: "System.Threading (net50)");
- public static PortableExecutableReference SystemThreadingOverlapped { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingOverlapped).GetReference(filePath: "System.Threading.Overlapped.dll", display: "System.Threading.Overlapped (net50)");
- public static PortableExecutableReference SystemThreadingTasksDataflow { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingTasksDataflow).GetReference(filePath: "System.Threading.Tasks.Dataflow.dll", display: "System.Threading.Tasks.Dataflow (net50)");
- public static PortableExecutableReference SystemThreadingTasks { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingTasks).GetReference(filePath: "System.Threading.Tasks.dll", display: "System.Threading.Tasks (net50)");
- public static PortableExecutableReference SystemThreadingTasksExtensions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingTasksExtensions).GetReference(filePath: "System.Threading.Tasks.Extensions.dll", display: "System.Threading.Tasks.Extensions (net50)");
- public static PortableExecutableReference SystemThreadingTasksParallel { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingTasksParallel).GetReference(filePath: "System.Threading.Tasks.Parallel.dll", display: "System.Threading.Tasks.Parallel (net50)");
- public static PortableExecutableReference SystemThreadingThread { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingThread).GetReference(filePath: "System.Threading.Thread.dll", display: "System.Threading.Thread (net50)");
- public static PortableExecutableReference SystemThreadingThreadPool { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingThreadPool).GetReference(filePath: "System.Threading.ThreadPool.dll", display: "System.Threading.ThreadPool (net50)");
- public static PortableExecutableReference SystemThreadingTimer { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemThreadingTimer).GetReference(filePath: "System.Threading.Timer.dll", display: "System.Threading.Timer (net50)");
- public static PortableExecutableReference SystemTransactions { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTransactions).GetReference(filePath: "System.Transactions.dll", display: "System.Transactions (net50)");
- public static PortableExecutableReference SystemTransactionsLocal { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemTransactionsLocal).GetReference(filePath: "System.Transactions.Local.dll", display: "System.Transactions.Local (net50)");
- public static PortableExecutableReference SystemValueTuple { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemValueTuple).GetReference(filePath: "System.ValueTuple.dll", display: "System.ValueTuple (net50)");
- public static PortableExecutableReference SystemWeb { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemWeb).GetReference(filePath: "System.Web.dll", display: "System.Web (net50)");
- public static PortableExecutableReference SystemWebHttpUtility { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemWebHttpUtility).GetReference(filePath: "System.Web.HttpUtility.dll", display: "System.Web.HttpUtility (net50)");
- public static PortableExecutableReference SystemWindows { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemWindows).GetReference(filePath: "System.Windows.dll", display: "System.Windows (net50)");
- public static PortableExecutableReference SystemXml { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXml).GetReference(filePath: "System.Xml.dll", display: "System.Xml (net50)");
- public static PortableExecutableReference SystemXmlLinq { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlLinq).GetReference(filePath: "System.Xml.Linq.dll", display: "System.Xml.Linq (net50)");
- public static PortableExecutableReference SystemXmlReaderWriter { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlReaderWriter).GetReference(filePath: "System.Xml.ReaderWriter.dll", display: "System.Xml.ReaderWriter (net50)");
- public static PortableExecutableReference SystemXmlSerialization { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlSerialization).GetReference(filePath: "System.Xml.Serialization.dll", display: "System.Xml.Serialization (net50)");
- public static PortableExecutableReference SystemXmlXDocument { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlXDocument).GetReference(filePath: "System.Xml.XDocument.dll", display: "System.Xml.XDocument (net50)");
- public static PortableExecutableReference SystemXmlXmlDocument { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlXmlDocument).GetReference(filePath: "System.Xml.XmlDocument.dll", display: "System.Xml.XmlDocument (net50)");
- public static PortableExecutableReference SystemXmlXmlSerializer { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlXmlSerializer).GetReference(filePath: "System.Xml.XmlSerializer.dll", display: "System.Xml.XmlSerializer (net50)");
- public static PortableExecutableReference SystemXmlXPath { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlXPath).GetReference(filePath: "System.Xml.XPath.dll", display: "System.Xml.XPath (net50)");
- public static PortableExecutableReference SystemXmlXPathXDocument { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.SystemXmlXPathXDocument).GetReference(filePath: "System.Xml.XPath.XDocument.dll", display: "System.Xml.XPath.XDocument (net50)");
- public static PortableExecutableReference WindowsBase { get; } = AssemblyMetadata.CreateFromImage(Net50Resources.WindowsBase).GetReference(filePath: "WindowsBase.dll", display: "WindowsBase (net50)");
+ public static PortableExecutableReference MicrosoftCSharp { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.MicrosoftCSharp).GetReference(filePath: "Microsoft.CSharp.dll", display: "Microsoft.CSharp (net10)");
+ public static PortableExecutableReference MicrosoftVisualBasicCore { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.MicrosoftVisualBasicCore).GetReference(filePath: "Microsoft.VisualBasic.Core.dll", display: "Microsoft.VisualBasic.Core (net10)");
+ public static PortableExecutableReference MicrosoftVisualBasic { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.MicrosoftVisualBasic).GetReference(filePath: "Microsoft.VisualBasic.dll", display: "Microsoft.VisualBasic (net10)");
+ public static PortableExecutableReference MicrosoftWin32Primitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.MicrosoftWin32Primitives).GetReference(filePath: "Microsoft.Win32.Primitives.dll", display: "Microsoft.Win32.Primitives (net10)");
+ public static PortableExecutableReference mscorlib { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.mscorlib).GetReference(filePath: "mscorlib.dll", display: "mscorlib (net10)");
+ public static PortableExecutableReference netstandard { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.netstandard).GetReference(filePath: "netstandard.dll", display: "netstandard (net10)");
+ public static PortableExecutableReference SystemAppContext { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemAppContext).GetReference(filePath: "System.AppContext.dll", display: "System.AppContext (net10)");
+ public static PortableExecutableReference SystemBuffers { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemBuffers).GetReference(filePath: "System.Buffers.dll", display: "System.Buffers (net10)");
+ public static PortableExecutableReference SystemCollectionsConcurrent { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemCollectionsConcurrent).GetReference(filePath: "System.Collections.Concurrent.dll", display: "System.Collections.Concurrent (net10)");
+ public static PortableExecutableReference SystemCollections { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemCollections).GetReference(filePath: "System.Collections.dll", display: "System.Collections (net10)");
+ public static PortableExecutableReference SystemCollectionsImmutable { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemCollectionsImmutable).GetReference(filePath: "System.Collections.Immutable.dll", display: "System.Collections.Immutable (net10)");
+ public static PortableExecutableReference SystemCollectionsNonGeneric { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemCollectionsNonGeneric).GetReference(filePath: "System.Collections.NonGeneric.dll", display: "System.Collections.NonGeneric (net10)");
+ public static PortableExecutableReference SystemCollectionsSpecialized { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemCollectionsSpecialized).GetReference(filePath: "System.Collections.Specialized.dll", display: "System.Collections.Specialized (net10)");
+ public static PortableExecutableReference SystemComponentModelAnnotations { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemComponentModelAnnotations).GetReference(filePath: "System.ComponentModel.Annotations.dll", display: "System.ComponentModel.Annotations (net10)");
+ public static PortableExecutableReference SystemComponentModelDataAnnotations { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemComponentModelDataAnnotations).GetReference(filePath: "System.ComponentModel.DataAnnotations.dll", display: "System.ComponentModel.DataAnnotations (net10)");
+ public static PortableExecutableReference SystemComponentModel { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemComponentModel).GetReference(filePath: "System.ComponentModel.dll", display: "System.ComponentModel (net10)");
+ public static PortableExecutableReference SystemComponentModelEventBasedAsync { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemComponentModelEventBasedAsync).GetReference(filePath: "System.ComponentModel.EventBasedAsync.dll", display: "System.ComponentModel.EventBasedAsync (net10)");
+ public static PortableExecutableReference SystemComponentModelPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemComponentModelPrimitives).GetReference(filePath: "System.ComponentModel.Primitives.dll", display: "System.ComponentModel.Primitives (net10)");
+ public static PortableExecutableReference SystemComponentModelTypeConverter { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemComponentModelTypeConverter).GetReference(filePath: "System.ComponentModel.TypeConverter.dll", display: "System.ComponentModel.TypeConverter (net10)");
+ public static PortableExecutableReference SystemConfiguration { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemConfiguration).GetReference(filePath: "System.Configuration.dll", display: "System.Configuration (net10)");
+ public static PortableExecutableReference SystemConsole { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemConsole).GetReference(filePath: "System.Console.dll", display: "System.Console (net10)");
+ public static PortableExecutableReference SystemCore { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemCore).GetReference(filePath: "System.Core.dll", display: "System.Core (net10)");
+ public static PortableExecutableReference SystemDataCommon { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDataCommon).GetReference(filePath: "System.Data.Common.dll", display: "System.Data.Common (net10)");
+ public static PortableExecutableReference SystemDataDataSetExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDataDataSetExtensions).GetReference(filePath: "System.Data.DataSetExtensions.dll", display: "System.Data.DataSetExtensions (net10)");
+ public static PortableExecutableReference SystemData { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemData).GetReference(filePath: "System.Data.dll", display: "System.Data (net10)");
+ public static PortableExecutableReference SystemDiagnosticsContracts { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsContracts).GetReference(filePath: "System.Diagnostics.Contracts.dll", display: "System.Diagnostics.Contracts (net10)");
+ public static PortableExecutableReference SystemDiagnosticsDebug { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsDebug).GetReference(filePath: "System.Diagnostics.Debug.dll", display: "System.Diagnostics.Debug (net10)");
+ public static PortableExecutableReference SystemDiagnosticsDiagnosticSource { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsDiagnosticSource).GetReference(filePath: "System.Diagnostics.DiagnosticSource.dll", display: "System.Diagnostics.DiagnosticSource (net10)");
+ public static PortableExecutableReference SystemDiagnosticsFileVersionInfo { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsFileVersionInfo).GetReference(filePath: "System.Diagnostics.FileVersionInfo.dll", display: "System.Diagnostics.FileVersionInfo (net10)");
+ public static PortableExecutableReference SystemDiagnosticsProcess { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsProcess).GetReference(filePath: "System.Diagnostics.Process.dll", display: "System.Diagnostics.Process (net10)");
+ public static PortableExecutableReference SystemDiagnosticsStackTrace { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsStackTrace).GetReference(filePath: "System.Diagnostics.StackTrace.dll", display: "System.Diagnostics.StackTrace (net10)");
+ public static PortableExecutableReference SystemDiagnosticsTextWriterTraceListener { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsTextWriterTraceListener).GetReference(filePath: "System.Diagnostics.TextWriterTraceListener.dll", display: "System.Diagnostics.TextWriterTraceListener (net10)");
+ public static PortableExecutableReference SystemDiagnosticsTools { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsTools).GetReference(filePath: "System.Diagnostics.Tools.dll", display: "System.Diagnostics.Tools (net10)");
+ public static PortableExecutableReference SystemDiagnosticsTraceSource { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsTraceSource).GetReference(filePath: "System.Diagnostics.TraceSource.dll", display: "System.Diagnostics.TraceSource (net10)");
+ public static PortableExecutableReference SystemDiagnosticsTracing { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDiagnosticsTracing).GetReference(filePath: "System.Diagnostics.Tracing.dll", display: "System.Diagnostics.Tracing (net10)");
+ public static PortableExecutableReference System { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.System).GetReference(filePath: "System.dll", display: "System (net10)");
+ public static PortableExecutableReference SystemDrawing { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDrawing).GetReference(filePath: "System.Drawing.dll", display: "System.Drawing (net10)");
+ public static PortableExecutableReference SystemDrawingPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDrawingPrimitives).GetReference(filePath: "System.Drawing.Primitives.dll", display: "System.Drawing.Primitives (net10)");
+ public static PortableExecutableReference SystemDynamicRuntime { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemDynamicRuntime).GetReference(filePath: "System.Dynamic.Runtime.dll", display: "System.Dynamic.Runtime (net10)");
+ public static PortableExecutableReference SystemFormatsAsn1 { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemFormatsAsn1).GetReference(filePath: "System.Formats.Asn1.dll", display: "System.Formats.Asn1 (net10)");
+ public static PortableExecutableReference SystemGlobalizationCalendars { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemGlobalizationCalendars).GetReference(filePath: "System.Globalization.Calendars.dll", display: "System.Globalization.Calendars (net10)");
+ public static PortableExecutableReference SystemGlobalization { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemGlobalization).GetReference(filePath: "System.Globalization.dll", display: "System.Globalization (net10)");
+ public static PortableExecutableReference SystemGlobalizationExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemGlobalizationExtensions).GetReference(filePath: "System.Globalization.Extensions.dll", display: "System.Globalization.Extensions (net10)");
+ public static PortableExecutableReference SystemIOCompressionBrotli { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOCompressionBrotli).GetReference(filePath: "System.IO.Compression.Brotli.dll", display: "System.IO.Compression.Brotli (net10)");
+ public static PortableExecutableReference SystemIOCompression { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOCompression).GetReference(filePath: "System.IO.Compression.dll", display: "System.IO.Compression (net10)");
+ public static PortableExecutableReference SystemIOCompressionFileSystem { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOCompressionFileSystem).GetReference(filePath: "System.IO.Compression.FileSystem.dll", display: "System.IO.Compression.FileSystem (net10)");
+ public static PortableExecutableReference SystemIOCompressionZipFile { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOCompressionZipFile).GetReference(filePath: "System.IO.Compression.ZipFile.dll", display: "System.IO.Compression.ZipFile (net10)");
+ public static PortableExecutableReference SystemIO { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIO).GetReference(filePath: "System.IO.dll", display: "System.IO (net10)");
+ public static PortableExecutableReference SystemIOFileSystem { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOFileSystem).GetReference(filePath: "System.IO.FileSystem.dll", display: "System.IO.FileSystem (net10)");
+ public static PortableExecutableReference SystemIOFileSystemDriveInfo { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOFileSystemDriveInfo).GetReference(filePath: "System.IO.FileSystem.DriveInfo.dll", display: "System.IO.FileSystem.DriveInfo (net10)");
+ public static PortableExecutableReference SystemIOFileSystemPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOFileSystemPrimitives).GetReference(filePath: "System.IO.FileSystem.Primitives.dll", display: "System.IO.FileSystem.Primitives (net10)");
+ public static PortableExecutableReference SystemIOFileSystemWatcher { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOFileSystemWatcher).GetReference(filePath: "System.IO.FileSystem.Watcher.dll", display: "System.IO.FileSystem.Watcher (net10)");
+ public static PortableExecutableReference SystemIOIsolatedStorage { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOIsolatedStorage).GetReference(filePath: "System.IO.IsolatedStorage.dll", display: "System.IO.IsolatedStorage (net10)");
+ public static PortableExecutableReference SystemIOMemoryMappedFiles { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOMemoryMappedFiles).GetReference(filePath: "System.IO.MemoryMappedFiles.dll", display: "System.IO.MemoryMappedFiles (net10)");
+ public static PortableExecutableReference SystemIOPipes { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOPipes).GetReference(filePath: "System.IO.Pipes.dll", display: "System.IO.Pipes (net10)");
+ public static PortableExecutableReference SystemIOUnmanagedMemoryStream { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemIOUnmanagedMemoryStream).GetReference(filePath: "System.IO.UnmanagedMemoryStream.dll", display: "System.IO.UnmanagedMemoryStream (net10)");
+ public static PortableExecutableReference SystemLinq { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemLinq).GetReference(filePath: "System.Linq.dll", display: "System.Linq (net10)");
+ public static PortableExecutableReference SystemLinqExpressions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemLinqExpressions).GetReference(filePath: "System.Linq.Expressions.dll", display: "System.Linq.Expressions (net10)");
+ public static PortableExecutableReference SystemLinqParallel { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemLinqParallel).GetReference(filePath: "System.Linq.Parallel.dll", display: "System.Linq.Parallel (net10)");
+ public static PortableExecutableReference SystemLinqQueryable { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemLinqQueryable).GetReference(filePath: "System.Linq.Queryable.dll", display: "System.Linq.Queryable (net10)");
+ public static PortableExecutableReference SystemMemory { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemMemory).GetReference(filePath: "System.Memory.dll", display: "System.Memory (net10)");
+ public static PortableExecutableReference SystemNet { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNet).GetReference(filePath: "System.Net.dll", display: "System.Net (net10)");
+ public static PortableExecutableReference SystemNetHttp { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetHttp).GetReference(filePath: "System.Net.Http.dll", display: "System.Net.Http (net10)");
+ public static PortableExecutableReference SystemNetHttpJson { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetHttpJson).GetReference(filePath: "System.Net.Http.Json.dll", display: "System.Net.Http.Json (net10)");
+ public static PortableExecutableReference SystemNetHttpListener { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetHttpListener).GetReference(filePath: "System.Net.HttpListener.dll", display: "System.Net.HttpListener (net10)");
+ public static PortableExecutableReference SystemNetMail { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetMail).GetReference(filePath: "System.Net.Mail.dll", display: "System.Net.Mail (net10)");
+ public static PortableExecutableReference SystemNetNameResolution { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetNameResolution).GetReference(filePath: "System.Net.NameResolution.dll", display: "System.Net.NameResolution (net10)");
+ public static PortableExecutableReference SystemNetNetworkInformation { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetNetworkInformation).GetReference(filePath: "System.Net.NetworkInformation.dll", display: "System.Net.NetworkInformation (net10)");
+ public static PortableExecutableReference SystemNetPing { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetPing).GetReference(filePath: "System.Net.Ping.dll", display: "System.Net.Ping (net10)");
+ public static PortableExecutableReference SystemNetPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetPrimitives).GetReference(filePath: "System.Net.Primitives.dll", display: "System.Net.Primitives (net10)");
+ public static PortableExecutableReference SystemNetRequests { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetRequests).GetReference(filePath: "System.Net.Requests.dll", display: "System.Net.Requests (net10)");
+ public static PortableExecutableReference SystemNetSecurity { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetSecurity).GetReference(filePath: "System.Net.Security.dll", display: "System.Net.Security (net10)");
+ public static PortableExecutableReference SystemNetServicePoint { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetServicePoint).GetReference(filePath: "System.Net.ServicePoint.dll", display: "System.Net.ServicePoint (net10)");
+ public static PortableExecutableReference SystemNetSockets { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetSockets).GetReference(filePath: "System.Net.Sockets.dll", display: "System.Net.Sockets (net10)");
+ public static PortableExecutableReference SystemNetWebClient { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetWebClient).GetReference(filePath: "System.Net.WebClient.dll", display: "System.Net.WebClient (net10)");
+ public static PortableExecutableReference SystemNetWebHeaderCollection { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetWebHeaderCollection).GetReference(filePath: "System.Net.WebHeaderCollection.dll", display: "System.Net.WebHeaderCollection (net10)");
+ public static PortableExecutableReference SystemNetWebProxy { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetWebProxy).GetReference(filePath: "System.Net.WebProxy.dll", display: "System.Net.WebProxy (net10)");
+ public static PortableExecutableReference SystemNetWebSocketsClient { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetWebSocketsClient).GetReference(filePath: "System.Net.WebSockets.Client.dll", display: "System.Net.WebSockets.Client (net10)");
+ public static PortableExecutableReference SystemNetWebSockets { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNetWebSockets).GetReference(filePath: "System.Net.WebSockets.dll", display: "System.Net.WebSockets (net10)");
+ public static PortableExecutableReference SystemNumerics { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNumerics).GetReference(filePath: "System.Numerics.dll", display: "System.Numerics (net10)");
+ public static PortableExecutableReference SystemNumericsVectors { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemNumericsVectors).GetReference(filePath: "System.Numerics.Vectors.dll", display: "System.Numerics.Vectors (net10)");
+ public static PortableExecutableReference SystemObjectModel { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemObjectModel).GetReference(filePath: "System.ObjectModel.dll", display: "System.ObjectModel (net10)");
+ public static PortableExecutableReference SystemReflectionDispatchProxy { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionDispatchProxy).GetReference(filePath: "System.Reflection.DispatchProxy.dll", display: "System.Reflection.DispatchProxy (net10)");
+ public static PortableExecutableReference SystemReflection { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflection).GetReference(filePath: "System.Reflection.dll", display: "System.Reflection (net10)");
+ public static PortableExecutableReference SystemReflectionEmit { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionEmit).GetReference(filePath: "System.Reflection.Emit.dll", display: "System.Reflection.Emit (net10)");
+ public static PortableExecutableReference SystemReflectionEmitILGeneration { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionEmitILGeneration).GetReference(filePath: "System.Reflection.Emit.ILGeneration.dll", display: "System.Reflection.Emit.ILGeneration (net10)");
+ public static PortableExecutableReference SystemReflectionEmitLightweight { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionEmitLightweight).GetReference(filePath: "System.Reflection.Emit.Lightweight.dll", display: "System.Reflection.Emit.Lightweight (net10)");
+ public static PortableExecutableReference SystemReflectionExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionExtensions).GetReference(filePath: "System.Reflection.Extensions.dll", display: "System.Reflection.Extensions (net10)");
+ public static PortableExecutableReference SystemReflectionMetadata { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionMetadata).GetReference(filePath: "System.Reflection.Metadata.dll", display: "System.Reflection.Metadata (net10)");
+ public static PortableExecutableReference SystemReflectionPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionPrimitives).GetReference(filePath: "System.Reflection.Primitives.dll", display: "System.Reflection.Primitives (net10)");
+ public static PortableExecutableReference SystemReflectionTypeExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemReflectionTypeExtensions).GetReference(filePath: "System.Reflection.TypeExtensions.dll", display: "System.Reflection.TypeExtensions (net10)");
+ public static PortableExecutableReference SystemResourcesReader { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemResourcesReader).GetReference(filePath: "System.Resources.Reader.dll", display: "System.Resources.Reader (net10)");
+ public static PortableExecutableReference SystemResourcesResourceManager { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemResourcesResourceManager).GetReference(filePath: "System.Resources.ResourceManager.dll", display: "System.Resources.ResourceManager (net10)");
+ public static PortableExecutableReference SystemResourcesWriter { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemResourcesWriter).GetReference(filePath: "System.Resources.Writer.dll", display: "System.Resources.Writer (net10)");
+ public static PortableExecutableReference SystemRuntimeCompilerServicesUnsafe { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeCompilerServicesUnsafe).GetReference(filePath: "System.Runtime.CompilerServices.Unsafe.dll", display: "System.Runtime.CompilerServices.Unsafe (net10)");
+ public static PortableExecutableReference SystemRuntimeCompilerServicesVisualC { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeCompilerServicesVisualC).GetReference(filePath: "System.Runtime.CompilerServices.VisualC.dll", display: "System.Runtime.CompilerServices.VisualC (net10)");
+ public static PortableExecutableReference SystemRuntime { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntime).GetReference(filePath: "System.Runtime.dll", display: "System.Runtime (net10)");
+ public static PortableExecutableReference SystemRuntimeExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeExtensions).GetReference(filePath: "System.Runtime.Extensions.dll", display: "System.Runtime.Extensions (net10)");
+ public static PortableExecutableReference SystemRuntimeHandles { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeHandles).GetReference(filePath: "System.Runtime.Handles.dll", display: "System.Runtime.Handles (net10)");
+ public static PortableExecutableReference SystemRuntimeInteropServices { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeInteropServices).GetReference(filePath: "System.Runtime.InteropServices.dll", display: "System.Runtime.InteropServices (net10)");
+ public static PortableExecutableReference SystemRuntimeInteropServicesRuntimeInformation { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeInteropServicesRuntimeInformation).GetReference(filePath: "System.Runtime.InteropServices.RuntimeInformation.dll", display: "System.Runtime.InteropServices.RuntimeInformation (net10)");
+ public static PortableExecutableReference SystemRuntimeIntrinsics { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeIntrinsics).GetReference(filePath: "System.Runtime.Intrinsics.dll", display: "System.Runtime.Intrinsics (net10)");
+ public static PortableExecutableReference SystemRuntimeLoader { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeLoader).GetReference(filePath: "System.Runtime.Loader.dll", display: "System.Runtime.Loader (net10)");
+ public static PortableExecutableReference SystemRuntimeNumerics { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeNumerics).GetReference(filePath: "System.Runtime.Numerics.dll", display: "System.Runtime.Numerics (net10)");
+ public static PortableExecutableReference SystemRuntimeSerialization { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeSerialization).GetReference(filePath: "System.Runtime.Serialization.dll", display: "System.Runtime.Serialization (net10)");
+ public static PortableExecutableReference SystemRuntimeSerializationFormatters { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeSerializationFormatters).GetReference(filePath: "System.Runtime.Serialization.Formatters.dll", display: "System.Runtime.Serialization.Formatters (net10)");
+ public static PortableExecutableReference SystemRuntimeSerializationJson { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeSerializationJson).GetReference(filePath: "System.Runtime.Serialization.Json.dll", display: "System.Runtime.Serialization.Json (net10)");
+ public static PortableExecutableReference SystemRuntimeSerializationPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeSerializationPrimitives).GetReference(filePath: "System.Runtime.Serialization.Primitives.dll", display: "System.Runtime.Serialization.Primitives (net10)");
+ public static PortableExecutableReference SystemRuntimeSerializationXml { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemRuntimeSerializationXml).GetReference(filePath: "System.Runtime.Serialization.Xml.dll", display: "System.Runtime.Serialization.Xml (net10)");
+ public static PortableExecutableReference SystemSecurityClaims { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityClaims).GetReference(filePath: "System.Security.Claims.dll", display: "System.Security.Claims (net10)");
+ public static PortableExecutableReference SystemSecurityCryptographyAlgorithms { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityCryptographyAlgorithms).GetReference(filePath: "System.Security.Cryptography.Algorithms.dll", display: "System.Security.Cryptography.Algorithms (net10)");
+ public static PortableExecutableReference SystemSecurityCryptographyCsp { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityCryptographyCsp).GetReference(filePath: "System.Security.Cryptography.Csp.dll", display: "System.Security.Cryptography.Csp (net10)");
+ public static PortableExecutableReference SystemSecurityCryptographyEncoding { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityCryptographyEncoding).GetReference(filePath: "System.Security.Cryptography.Encoding.dll", display: "System.Security.Cryptography.Encoding (net10)");
+ public static PortableExecutableReference SystemSecurityCryptographyPrimitives { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityCryptographyPrimitives).GetReference(filePath: "System.Security.Cryptography.Primitives.dll", display: "System.Security.Cryptography.Primitives (net10)");
+ public static PortableExecutableReference SystemSecurityCryptographyX509Certificates { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityCryptographyX509Certificates).GetReference(filePath: "System.Security.Cryptography.X509Certificates.dll", display: "System.Security.Cryptography.X509Certificates (net10)");
+ public static PortableExecutableReference SystemSecurity { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurity).GetReference(filePath: "System.Security.dll", display: "System.Security (net10)");
+ public static PortableExecutableReference SystemSecurityPrincipal { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecurityPrincipal).GetReference(filePath: "System.Security.Principal.dll", display: "System.Security.Principal (net10)");
+ public static PortableExecutableReference SystemSecuritySecureString { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemSecuritySecureString).GetReference(filePath: "System.Security.SecureString.dll", display: "System.Security.SecureString (net10)");
+ public static PortableExecutableReference SystemServiceModelWeb { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemServiceModelWeb).GetReference(filePath: "System.ServiceModel.Web.dll", display: "System.ServiceModel.Web (net10)");
+ public static PortableExecutableReference SystemServiceProcess { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemServiceProcess).GetReference(filePath: "System.ServiceProcess.dll", display: "System.ServiceProcess (net10)");
+ public static PortableExecutableReference SystemTextEncodingCodePages { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTextEncodingCodePages).GetReference(filePath: "System.Text.Encoding.CodePages.dll", display: "System.Text.Encoding.CodePages (net10)");
+ public static PortableExecutableReference SystemTextEncoding { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTextEncoding).GetReference(filePath: "System.Text.Encoding.dll", display: "System.Text.Encoding (net10)");
+ public static PortableExecutableReference SystemTextEncodingExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTextEncodingExtensions).GetReference(filePath: "System.Text.Encoding.Extensions.dll", display: "System.Text.Encoding.Extensions (net10)");
+ public static PortableExecutableReference SystemTextEncodingsWeb { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTextEncodingsWeb).GetReference(filePath: "System.Text.Encodings.Web.dll", display: "System.Text.Encodings.Web (net10)");
+ public static PortableExecutableReference SystemTextJson { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTextJson).GetReference(filePath: "System.Text.Json.dll", display: "System.Text.Json (net10)");
+ public static PortableExecutableReference SystemTextRegularExpressions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTextRegularExpressions).GetReference(filePath: "System.Text.RegularExpressions.dll", display: "System.Text.RegularExpressions (net10)");
+ public static PortableExecutableReference SystemThreadingChannels { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingChannels).GetReference(filePath: "System.Threading.Channels.dll", display: "System.Threading.Channels (net10)");
+ public static PortableExecutableReference SystemThreading { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreading).GetReference(filePath: "System.Threading.dll", display: "System.Threading (net10)");
+ public static PortableExecutableReference SystemThreadingOverlapped { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingOverlapped).GetReference(filePath: "System.Threading.Overlapped.dll", display: "System.Threading.Overlapped (net10)");
+ public static PortableExecutableReference SystemThreadingTasksDataflow { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingTasksDataflow).GetReference(filePath: "System.Threading.Tasks.Dataflow.dll", display: "System.Threading.Tasks.Dataflow (net10)");
+ public static PortableExecutableReference SystemThreadingTasks { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingTasks).GetReference(filePath: "System.Threading.Tasks.dll", display: "System.Threading.Tasks (net10)");
+ public static PortableExecutableReference SystemThreadingTasksExtensions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingTasksExtensions).GetReference(filePath: "System.Threading.Tasks.Extensions.dll", display: "System.Threading.Tasks.Extensions (net10)");
+ public static PortableExecutableReference SystemThreadingTasksParallel { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingTasksParallel).GetReference(filePath: "System.Threading.Tasks.Parallel.dll", display: "System.Threading.Tasks.Parallel (net10)");
+ public static PortableExecutableReference SystemThreadingThread { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingThread).GetReference(filePath: "System.Threading.Thread.dll", display: "System.Threading.Thread (net10)");
+ public static PortableExecutableReference SystemThreadingThreadPool { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingThreadPool).GetReference(filePath: "System.Threading.ThreadPool.dll", display: "System.Threading.ThreadPool (net10)");
+ public static PortableExecutableReference SystemThreadingTimer { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemThreadingTimer).GetReference(filePath: "System.Threading.Timer.dll", display: "System.Threading.Timer (net10)");
+ public static PortableExecutableReference SystemTransactions { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTransactions).GetReference(filePath: "System.Transactions.dll", display: "System.Transactions (net10)");
+ public static PortableExecutableReference SystemTransactionsLocal { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemTransactionsLocal).GetReference(filePath: "System.Transactions.Local.dll", display: "System.Transactions.Local (net10)");
+ public static PortableExecutableReference SystemValueTuple { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemValueTuple).GetReference(filePath: "System.ValueTuple.dll", display: "System.ValueTuple (net10)");
+ public static PortableExecutableReference SystemWeb { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemWeb).GetReference(filePath: "System.Web.dll", display: "System.Web (net10)");
+ public static PortableExecutableReference SystemWebHttpUtility { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemWebHttpUtility).GetReference(filePath: "System.Web.HttpUtility.dll", display: "System.Web.HttpUtility (net10)");
+ public static PortableExecutableReference SystemWindows { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemWindows).GetReference(filePath: "System.Windows.dll", display: "System.Windows (net10)");
+ public static PortableExecutableReference SystemXml { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXml).GetReference(filePath: "System.Xml.dll", display: "System.Xml (net10)");
+ public static PortableExecutableReference SystemXmlLinq { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlLinq).GetReference(filePath: "System.Xml.Linq.dll", display: "System.Xml.Linq (net10)");
+ public static PortableExecutableReference SystemXmlReaderWriter { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlReaderWriter).GetReference(filePath: "System.Xml.ReaderWriter.dll", display: "System.Xml.ReaderWriter (net10)");
+ public static PortableExecutableReference SystemXmlSerialization { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlSerialization).GetReference(filePath: "System.Xml.Serialization.dll", display: "System.Xml.Serialization (net10)");
+ public static PortableExecutableReference SystemXmlXDocument { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlXDocument).GetReference(filePath: "System.Xml.XDocument.dll", display: "System.Xml.XDocument (net10)");
+ public static PortableExecutableReference SystemXmlXmlDocument { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlXmlDocument).GetReference(filePath: "System.Xml.XmlDocument.dll", display: "System.Xml.XmlDocument (net10)");
+ public static PortableExecutableReference SystemXmlXmlSerializer { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlXmlSerializer).GetReference(filePath: "System.Xml.XmlSerializer.dll", display: "System.Xml.XmlSerializer (net10)");
+ public static PortableExecutableReference SystemXmlXPath { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlXPath).GetReference(filePath: "System.Xml.XPath.dll", display: "System.Xml.XPath (net10)");
+ public static PortableExecutableReference SystemXmlXPathXDocument { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.SystemXmlXPathXDocument).GetReference(filePath: "System.Xml.XPath.XDocument.dll", display: "System.Xml.XPath.XDocument (net10)");
+ public static PortableExecutableReference WindowsBase { get; } = AssemblyMetadata.CreateFromImage(Net10Resources.WindowsBase).GetReference(filePath: "WindowsBase.dll", display: "WindowsBase (net10)");
public static IEnumerable All { get; }= new PortableExecutableReference[]
{
MicrosoftCSharp,
diff --git a/src/Express.Net.Reference.Assemblies/Generated.Net10.targets b/src/Express.Net.Reference.Assemblies/Generated.Net10.targets
new file mode 100644
index 0000000..f1dcf17
--- /dev/null
+++ b/src/Express.Net.Reference.Assemblies/Generated.Net10.targets
@@ -0,0 +1,612 @@
+
+
+
+ net10.Microsoft.CSharp
+ Resources\net10\Microsoft.CSharp.dll
+
+
+ net10.Microsoft.VisualBasic.Core
+ Resources\net10\Microsoft.VisualBasic.Core.dll
+
+
+ net10.Microsoft.VisualBasic
+ Resources\net10\Microsoft.VisualBasic.dll
+
+
+ net10.Microsoft.Win32.Primitives
+ Resources\net10\Microsoft.Win32.Primitives.dll
+
+
+ net10.mscorlib
+ Resources\net10\mscorlib.dll
+
+
+ net10.netstandard
+ Resources\net10\netstandard.dll
+
+
+ net10.System.AppContext
+ Resources\net10\System.AppContext.dll
+
+
+ net10.System.Buffers
+ Resources\net10\System.Buffers.dll
+
+
+ net10.System.Collections.Concurrent
+ Resources\net10\System.Collections.Concurrent.dll
+
+
+ net10.System.Collections
+ Resources\net10\System.Collections.dll
+
+
+ net10.System.Collections.Immutable
+ Resources\net10\System.Collections.Immutable.dll
+
+
+ net10.System.Collections.NonGeneric
+ Resources\net10\System.Collections.NonGeneric.dll
+
+
+ net10.System.Collections.Specialized
+ Resources\net10\System.Collections.Specialized.dll
+
+
+ net10.System.ComponentModel.Annotations
+ Resources\net10\System.ComponentModel.Annotations.dll
+
+
+ net10.System.ComponentModel.DataAnnotations
+ Resources\net10\System.ComponentModel.DataAnnotations.dll
+
+
+ net10.System.ComponentModel
+ Resources\net10\System.ComponentModel.dll
+
+
+ net10.System.ComponentModel.EventBasedAsync
+ Resources\net10\System.ComponentModel.EventBasedAsync.dll
+
+
+ net10.System.ComponentModel.Primitives
+ Resources\net10\System.ComponentModel.Primitives.dll
+
+
+ net10.System.ComponentModel.TypeConverter
+ Resources\net10\System.ComponentModel.TypeConverter.dll
+
+
+ net10.System.Configuration
+ Resources\net10\System.Configuration.dll
+
+
+ net10.System.Console
+ Resources\net10\System.Console.dll
+
+
+ net10.System.Core
+ Resources\net10\System.Core.dll
+
+
+ net10.System.Data.Common
+ Resources\net10\System.Data.Common.dll
+
+
+ net10.System.Data.DataSetExtensions
+ Resources\net10\System.Data.DataSetExtensions.dll
+
+
+ net10.System.Data
+ Resources\net10\System.Data.dll
+
+
+ net10.System.Diagnostics.Contracts
+ Resources\net10\System.Diagnostics.Contracts.dll
+
+
+ net10.System.Diagnostics.Debug
+ Resources\net10\System.Diagnostics.Debug.dll
+
+
+ net10.System.Diagnostics.DiagnosticSource
+ Resources\net10\System.Diagnostics.DiagnosticSource.dll
+
+
+ net10.System.Diagnostics.FileVersionInfo
+ Resources\net10\System.Diagnostics.FileVersionInfo.dll
+
+
+ net10.System.Diagnostics.Process
+ Resources\net10\System.Diagnostics.Process.dll
+
+
+ net10.System.Diagnostics.StackTrace
+ Resources\net10\System.Diagnostics.StackTrace.dll
+
+
+ net10.System.Diagnostics.TextWriterTraceListener
+ Resources\net10\System.Diagnostics.TextWriterTraceListener.dll
+
+
+ net10.System.Diagnostics.Tools
+ Resources\net10\System.Diagnostics.Tools.dll
+
+
+ net10.System.Diagnostics.TraceSource
+ Resources\net10\System.Diagnostics.TraceSource.dll
+
+
+ net10.System.Diagnostics.Tracing
+ Resources\net10\System.Diagnostics.Tracing.dll
+
+
+ net10.System
+ Resources\net10\System.dll
+
+
+ net10.System.Drawing
+ Resources\net10\System.Drawing.dll
+
+
+ net10.System.Drawing.Primitives
+ Resources\net10\System.Drawing.Primitives.dll
+
+
+ net10.System.Dynamic.Runtime
+ Resources\net10\System.Dynamic.Runtime.dll
+
+
+ net10.System.Formats.Asn1
+ Resources\net10\System.Formats.Asn1.dll
+
+
+ net10.System.Globalization.Calendars
+ Resources\net10\System.Globalization.Calendars.dll
+
+
+ net10.System.Globalization
+ Resources\net10\System.Globalization.dll
+
+
+ net10.System.Globalization.Extensions
+ Resources\net10\System.Globalization.Extensions.dll
+
+
+ net10.System.IO.Compression.Brotli
+ Resources\net10\System.IO.Compression.Brotli.dll
+
+
+ net10.System.IO.Compression
+ Resources\net10\System.IO.Compression.dll
+
+
+ net10.System.IO.Compression.FileSystem
+ Resources\net10\System.IO.Compression.FileSystem.dll
+
+
+ net10.System.IO.Compression.ZipFile
+ Resources\net10\System.IO.Compression.ZipFile.dll
+
+
+ net10.System.IO
+ Resources\net10\System.IO.dll
+
+
+ net10.System.IO.FileSystem
+ Resources\net10\System.IO.FileSystem.dll
+
+
+ net10.System.IO.FileSystem.DriveInfo
+ Resources\net10\System.IO.FileSystem.DriveInfo.dll
+
+
+ net10.System.IO.FileSystem.Primitives
+ Resources\net10\System.IO.FileSystem.Primitives.dll
+
+
+ net10.System.IO.FileSystem.Watcher
+ Resources\net10\System.IO.FileSystem.Watcher.dll
+
+
+ net10.System.IO.IsolatedStorage
+ Resources\net10\System.IO.IsolatedStorage.dll
+
+
+ net10.System.IO.MemoryMappedFiles
+ Resources\net10\System.IO.MemoryMappedFiles.dll
+
+
+ net10.System.IO.Pipes
+ Resources\net10\System.IO.Pipes.dll
+
+
+ net10.System.IO.UnmanagedMemoryStream
+ Resources\net10\System.IO.UnmanagedMemoryStream.dll
+
+
+ net10.System.Linq
+ Resources\net10\System.Linq.dll
+
+
+ net10.System.Linq.Expressions
+ Resources\net10\System.Linq.Expressions.dll
+
+
+ net10.System.Linq.Parallel
+ Resources\net10\System.Linq.Parallel.dll
+
+
+ net10.System.Linq.Queryable
+ Resources\net10\System.Linq.Queryable.dll
+
+
+ net10.System.Memory
+ Resources\net10\System.Memory.dll
+
+
+ net10.System.Net
+ Resources\net10\System.Net.dll
+
+
+ net10.System.Net.Http
+ Resources\net10\System.Net.Http.dll
+
+
+ net10.System.Net.Http.Json
+ Resources\net10\System.Net.Http.Json.dll
+
+
+ net10.System.Net.HttpListener
+ Resources\net10\System.Net.HttpListener.dll
+
+
+ net10.System.Net.Mail
+ Resources\net10\System.Net.Mail.dll
+
+
+ net10.System.Net.NameResolution
+ Resources\net10\System.Net.NameResolution.dll
+
+
+ net10.System.Net.NetworkInformation
+ Resources\net10\System.Net.NetworkInformation.dll
+
+
+ net10.System.Net.Ping
+ Resources\net10\System.Net.Ping.dll
+
+
+ net10.System.Net.Primitives
+ Resources\net10\System.Net.Primitives.dll
+
+
+ net10.System.Net.Requests
+ Resources\net10\System.Net.Requests.dll
+
+
+ net10.System.Net.Security
+ Resources\net10\System.Net.Security.dll
+
+
+ net10.System.Net.ServicePoint
+ Resources\net10\System.Net.ServicePoint.dll
+
+
+ net10.System.Net.Sockets
+ Resources\net10\System.Net.Sockets.dll
+
+
+ net10.System.Net.WebClient
+ Resources\net10\System.Net.WebClient.dll
+
+
+ net10.System.Net.WebHeaderCollection
+ Resources\net10\System.Net.WebHeaderCollection.dll
+
+
+ net10.System.Net.WebProxy
+ Resources\net10\System.Net.WebProxy.dll
+
+
+ net10.System.Net.WebSockets.Client
+ Resources\net10\System.Net.WebSockets.Client.dll
+
+
+ net10.System.Net.WebSockets
+ Resources\net10\System.Net.WebSockets.dll
+
+
+ net10.System.Numerics
+ Resources\net10\System.Numerics.dll
+
+
+ net10.System.Numerics.Vectors
+ Resources\net10\System.Numerics.Vectors.dll
+
+
+ net10.System.ObjectModel
+ Resources\net10\System.ObjectModel.dll
+
+
+ net10.System.Reflection.DispatchProxy
+ Resources\net10\System.Reflection.DispatchProxy.dll
+
+
+ net10.System.Reflection
+ Resources\net10\System.Reflection.dll
+
+
+ net10.System.Reflection.Emit
+ Resources\net10\System.Reflection.Emit.dll
+
+
+ net10.System.Reflection.Emit.ILGeneration
+ Resources\net10\System.Reflection.Emit.ILGeneration.dll
+
+
+ net10.System.Reflection.Emit.Lightweight
+ Resources\net10\System.Reflection.Emit.Lightweight.dll
+
+
+ net10.System.Reflection.Extensions
+ Resources\net10\System.Reflection.Extensions.dll
+
+
+ net10.System.Reflection.Metadata
+ Resources\net10\System.Reflection.Metadata.dll
+
+
+ net10.System.Reflection.Primitives
+ Resources\net10\System.Reflection.Primitives.dll
+
+
+ net10.System.Reflection.TypeExtensions
+ Resources\net10\System.Reflection.TypeExtensions.dll
+
+
+ net10.System.Resources.Reader
+ Resources\net10\System.Resources.Reader.dll
+
+
+ net10.System.Resources.ResourceManager
+ Resources\net10\System.Resources.ResourceManager.dll
+
+
+ net10.System.Resources.Writer
+ Resources\net10\System.Resources.Writer.dll
+
+
+ net10.System.Runtime.CompilerServices.Unsafe
+ Resources\net10\System.Runtime.CompilerServices.Unsafe.dll
+
+
+ net10.System.Runtime.CompilerServices.VisualC
+ Resources\net10\System.Runtime.CompilerServices.VisualC.dll
+
+
+ net10.System.Runtime
+ Resources\net10\System.Runtime.dll
+
+
+ net10.System.Runtime.Extensions
+ Resources\net10\System.Runtime.Extensions.dll
+
+
+ net10.System.Runtime.Handles
+ Resources\net10\System.Runtime.Handles.dll
+
+
+ net10.System.Runtime.InteropServices
+ Resources\net10\System.Runtime.InteropServices.dll
+
+
+ net10.System.Runtime.InteropServices.RuntimeInformation
+ Resources\net10\System.Runtime.InteropServices.RuntimeInformation.dll
+
+
+ net10.System.Runtime.Intrinsics
+ Resources\net10\System.Runtime.Intrinsics.dll
+
+
+ net10.System.Runtime.Loader
+ Resources\net10\System.Runtime.Loader.dll
+
+
+ net10.System.Runtime.Numerics
+ Resources\net10\System.Runtime.Numerics.dll
+
+
+ net10.System.Runtime.Serialization
+ Resources\net10\System.Runtime.Serialization.dll
+
+
+ net10.System.Runtime.Serialization.Formatters
+ Resources\net10\System.Runtime.Serialization.Formatters.dll
+
+
+ net10.System.Runtime.Serialization.Json
+ Resources\net10\System.Runtime.Serialization.Json.dll
+
+
+ net10.System.Runtime.Serialization.Primitives
+ Resources\net10\System.Runtime.Serialization.Primitives.dll
+
+
+ net10.System.Runtime.Serialization.Xml
+ Resources\net10\System.Runtime.Serialization.Xml.dll
+
+
+ net10.System.Security.Claims
+ Resources\net10\System.Security.Claims.dll
+
+
+ net10.System.Security.Cryptography.Algorithms
+ Resources\net10\System.Security.Cryptography.Algorithms.dll
+
+
+ net10.System.Security.Cryptography.Csp
+ Resources\net10\System.Security.Cryptography.Csp.dll
+
+
+ net10.System.Security.Cryptography.Encoding
+ Resources\net10\System.Security.Cryptography.Encoding.dll
+
+
+ net10.System.Security.Cryptography.Primitives
+ Resources\net10\System.Security.Cryptography.Primitives.dll
+
+
+ net10.System.Security.Cryptography.X509Certificates
+ Resources\net10\System.Security.Cryptography.X509Certificates.dll
+
+
+ net10.System.Security
+ Resources\net10\System.Security.dll
+
+
+ net10.System.Security.Principal
+ Resources\net10\System.Security.Principal.dll
+
+
+ net10.System.Security.SecureString
+ Resources\net10\System.Security.SecureString.dll
+
+
+ net10.System.ServiceModel.Web
+ Resources\net10\System.ServiceModel.Web.dll
+
+
+ net10.System.ServiceProcess
+ Resources\net10\System.ServiceProcess.dll
+
+
+ net10.System.Text.Encoding.CodePages
+ Resources\net10\System.Text.Encoding.CodePages.dll
+
+
+ net10.System.Text.Encoding
+ Resources\net10\System.Text.Encoding.dll
+
+
+ net10.System.Text.Encoding.Extensions
+ Resources\net10\System.Text.Encoding.Extensions.dll
+
+
+ net10.System.Text.Encodings.Web
+ Resources\net10\System.Text.Encodings.Web.dll
+
+
+ net10.System.Text.Json
+ Resources\net10\System.Text.Json.dll
+
+
+ net10.System.Text.RegularExpressions
+ Resources\net10\System.Text.RegularExpressions.dll
+
+
+ net10.System.Threading.Channels
+ Resources\net10\System.Threading.Channels.dll
+
+
+ net10.System.Threading
+ Resources\net10\System.Threading.dll
+
+
+ net10.System.Threading.Overlapped
+ Resources\net10\System.Threading.Overlapped.dll
+
+
+ net10.System.Threading.Tasks.Dataflow
+ Resources\net10\System.Threading.Tasks.Dataflow.dll
+
+
+ net10.System.Threading.Tasks
+ Resources\net10\System.Threading.Tasks.dll
+
+
+ net10.System.Threading.Tasks.Extensions
+ Resources\net10\System.Threading.Tasks.Extensions.dll
+
+
+ net10.System.Threading.Tasks.Parallel
+ Resources\net10\System.Threading.Tasks.Parallel.dll
+
+
+ net10.System.Threading.Thread
+ Resources\net10\System.Threading.Thread.dll
+
+
+ net10.System.Threading.ThreadPool
+ Resources\net10\System.Threading.ThreadPool.dll
+
+
+ net10.System.Threading.Timer
+ Resources\net10\System.Threading.Timer.dll
+
+
+ net10.System.Transactions
+ Resources\net10\System.Transactions.dll
+
+
+ net10.System.Transactions.Local
+ Resources\net10\System.Transactions.Local.dll
+
+
+ net10.System.ValueTuple
+ Resources\net10\System.ValueTuple.dll
+
+
+ net10.System.Web
+ Resources\net10\System.Web.dll
+
+
+ net10.System.Web.HttpUtility
+ Resources\net10\System.Web.HttpUtility.dll
+
+
+ net10.System.Windows
+ Resources\net10\System.Windows.dll
+
+
+ net10.System.Xml
+ Resources\net10\System.Xml.dll
+
+
+ net10.System.Xml.Linq
+ Resources\net10\System.Xml.Linq.dll
+
+
+ net10.System.Xml.ReaderWriter
+ Resources\net10\System.Xml.ReaderWriter.dll
+
+
+ net10.System.Xml.Serialization
+ Resources\net10\System.Xml.Serialization.dll
+
+
+ net10.System.Xml.XDocument
+ Resources\net10\System.Xml.XDocument.dll
+
+
+ net10.System.Xml.XmlDocument
+ Resources\net10\System.Xml.XmlDocument.dll
+
+
+ net10.System.Xml.XmlSerializer
+ Resources\net10\System.Xml.XmlSerializer.dll
+
+
+ net10.System.Xml.XPath
+ Resources\net10\System.Xml.XPath.dll
+
+
+ net10.System.Xml.XPath.XDocument
+ Resources\net10\System.Xml.XPath.XDocument.dll
+
+
+ net10.WindowsBase
+ Resources\net10\WindowsBase.dll
+
+
+
diff --git a/src/Express.Net.Reference.Assemblies/Generated.Net50.targets b/src/Express.Net.Reference.Assemblies/Generated.Net50.targets
deleted file mode 100644
index 36701bd..0000000
--- a/src/Express.Net.Reference.Assemblies/Generated.Net50.targets
+++ /dev/null
@@ -1,612 +0,0 @@
-
-
-
- net50.Microsoft.CSharp
- Resources\net50\Microsoft.CSharp.dll
-
-
- net50.Microsoft.VisualBasic.Core
- Resources\net50\Microsoft.VisualBasic.Core.dll
-
-
- net50.Microsoft.VisualBasic
- Resources\net50\Microsoft.VisualBasic.dll
-
-
- net50.Microsoft.Win32.Primitives
- Resources\net50\Microsoft.Win32.Primitives.dll
-
-
- net50.mscorlib
- Resources\net50\mscorlib.dll
-
-
- net50.netstandard
- Resources\net50\netstandard.dll
-
-
- net50.System.AppContext
- Resources\net50\System.AppContext.dll
-
-
- net50.System.Buffers
- Resources\net50\System.Buffers.dll
-
-
- net50.System.Collections.Concurrent
- Resources\net50\System.Collections.Concurrent.dll
-
-
- net50.System.Collections
- Resources\net50\System.Collections.dll
-
-
- net50.System.Collections.Immutable
- Resources\net50\System.Collections.Immutable.dll
-
-
- net50.System.Collections.NonGeneric
- Resources\net50\System.Collections.NonGeneric.dll
-
-
- net50.System.Collections.Specialized
- Resources\net50\System.Collections.Specialized.dll
-
-
- net50.System.ComponentModel.Annotations
- Resources\net50\System.ComponentModel.Annotations.dll
-
-
- net50.System.ComponentModel.DataAnnotations
- Resources\net50\System.ComponentModel.DataAnnotations.dll
-
-
- net50.System.ComponentModel
- Resources\net50\System.ComponentModel.dll
-
-
- net50.System.ComponentModel.EventBasedAsync
- Resources\net50\System.ComponentModel.EventBasedAsync.dll
-
-
- net50.System.ComponentModel.Primitives
- Resources\net50\System.ComponentModel.Primitives.dll
-
-
- net50.System.ComponentModel.TypeConverter
- Resources\net50\System.ComponentModel.TypeConverter.dll
-
-
- net50.System.Configuration
- Resources\net50\System.Configuration.dll
-
-
- net50.System.Console
- Resources\net50\System.Console.dll
-
-
- net50.System.Core
- Resources\net50\System.Core.dll
-
-
- net50.System.Data.Common
- Resources\net50\System.Data.Common.dll
-
-
- net50.System.Data.DataSetExtensions
- Resources\net50\System.Data.DataSetExtensions.dll
-
-
- net50.System.Data
- Resources\net50\System.Data.dll
-
-
- net50.System.Diagnostics.Contracts
- Resources\net50\System.Diagnostics.Contracts.dll
-
-
- net50.System.Diagnostics.Debug
- Resources\net50\System.Diagnostics.Debug.dll
-
-
- net50.System.Diagnostics.DiagnosticSource
- Resources\net50\System.Diagnostics.DiagnosticSource.dll
-
-
- net50.System.Diagnostics.FileVersionInfo
- Resources\net50\System.Diagnostics.FileVersionInfo.dll
-
-
- net50.System.Diagnostics.Process
- Resources\net50\System.Diagnostics.Process.dll
-
-
- net50.System.Diagnostics.StackTrace
- Resources\net50\System.Diagnostics.StackTrace.dll
-
-
- net50.System.Diagnostics.TextWriterTraceListener
- Resources\net50\System.Diagnostics.TextWriterTraceListener.dll
-
-
- net50.System.Diagnostics.Tools
- Resources\net50\System.Diagnostics.Tools.dll
-
-
- net50.System.Diagnostics.TraceSource
- Resources\net50\System.Diagnostics.TraceSource.dll
-
-
- net50.System.Diagnostics.Tracing
- Resources\net50\System.Diagnostics.Tracing.dll
-
-
- net50.System
- Resources\net50\System.dll
-
-
- net50.System.Drawing
- Resources\net50\System.Drawing.dll
-
-
- net50.System.Drawing.Primitives
- Resources\net50\System.Drawing.Primitives.dll
-
-
- net50.System.Dynamic.Runtime
- Resources\net50\System.Dynamic.Runtime.dll
-
-
- net50.System.Formats.Asn1
- Resources\net50\System.Formats.Asn1.dll
-
-
- net50.System.Globalization.Calendars
- Resources\net50\System.Globalization.Calendars.dll
-
-
- net50.System.Globalization
- Resources\net50\System.Globalization.dll
-
-
- net50.System.Globalization.Extensions
- Resources\net50\System.Globalization.Extensions.dll
-
-
- net50.System.IO.Compression.Brotli
- Resources\net50\System.IO.Compression.Brotli.dll
-
-
- net50.System.IO.Compression
- Resources\net50\System.IO.Compression.dll
-
-
- net50.System.IO.Compression.FileSystem
- Resources\net50\System.IO.Compression.FileSystem.dll
-
-
- net50.System.IO.Compression.ZipFile
- Resources\net50\System.IO.Compression.ZipFile.dll
-
-
- net50.System.IO
- Resources\net50\System.IO.dll
-
-
- net50.System.IO.FileSystem
- Resources\net50\System.IO.FileSystem.dll
-
-
- net50.System.IO.FileSystem.DriveInfo
- Resources\net50\System.IO.FileSystem.DriveInfo.dll
-
-
- net50.System.IO.FileSystem.Primitives
- Resources\net50\System.IO.FileSystem.Primitives.dll
-
-
- net50.System.IO.FileSystem.Watcher
- Resources\net50\System.IO.FileSystem.Watcher.dll
-
-
- net50.System.IO.IsolatedStorage
- Resources\net50\System.IO.IsolatedStorage.dll
-
-
- net50.System.IO.MemoryMappedFiles
- Resources\net50\System.IO.MemoryMappedFiles.dll
-
-
- net50.System.IO.Pipes
- Resources\net50\System.IO.Pipes.dll
-
-
- net50.System.IO.UnmanagedMemoryStream
- Resources\net50\System.IO.UnmanagedMemoryStream.dll
-
-
- net50.System.Linq
- Resources\net50\System.Linq.dll
-
-
- net50.System.Linq.Expressions
- Resources\net50\System.Linq.Expressions.dll
-
-
- net50.System.Linq.Parallel
- Resources\net50\System.Linq.Parallel.dll
-
-
- net50.System.Linq.Queryable
- Resources\net50\System.Linq.Queryable.dll
-
-
- net50.System.Memory
- Resources\net50\System.Memory.dll
-
-
- net50.System.Net
- Resources\net50\System.Net.dll
-
-
- net50.System.Net.Http
- Resources\net50\System.Net.Http.dll
-
-
- net50.System.Net.Http.Json
- Resources\net50\System.Net.Http.Json.dll
-
-
- net50.System.Net.HttpListener
- Resources\net50\System.Net.HttpListener.dll
-
-
- net50.System.Net.Mail
- Resources\net50\System.Net.Mail.dll
-
-
- net50.System.Net.NameResolution
- Resources\net50\System.Net.NameResolution.dll
-
-
- net50.System.Net.NetworkInformation
- Resources\net50\System.Net.NetworkInformation.dll
-
-
- net50.System.Net.Ping
- Resources\net50\System.Net.Ping.dll
-
-
- net50.System.Net.Primitives
- Resources\net50\System.Net.Primitives.dll
-
-
- net50.System.Net.Requests
- Resources\net50\System.Net.Requests.dll
-
-
- net50.System.Net.Security
- Resources\net50\System.Net.Security.dll
-
-
- net50.System.Net.ServicePoint
- Resources\net50\System.Net.ServicePoint.dll
-
-
- net50.System.Net.Sockets
- Resources\net50\System.Net.Sockets.dll
-
-
- net50.System.Net.WebClient
- Resources\net50\System.Net.WebClient.dll
-
-
- net50.System.Net.WebHeaderCollection
- Resources\net50\System.Net.WebHeaderCollection.dll
-
-
- net50.System.Net.WebProxy
- Resources\net50\System.Net.WebProxy.dll
-
-
- net50.System.Net.WebSockets.Client
- Resources\net50\System.Net.WebSockets.Client.dll
-
-
- net50.System.Net.WebSockets
- Resources\net50\System.Net.WebSockets.dll
-
-
- net50.System.Numerics
- Resources\net50\System.Numerics.dll
-
-
- net50.System.Numerics.Vectors
- Resources\net50\System.Numerics.Vectors.dll
-
-
- net50.System.ObjectModel
- Resources\net50\System.ObjectModel.dll
-
-
- net50.System.Reflection.DispatchProxy
- Resources\net50\System.Reflection.DispatchProxy.dll
-
-
- net50.System.Reflection
- Resources\net50\System.Reflection.dll
-
-
- net50.System.Reflection.Emit
- Resources\net50\System.Reflection.Emit.dll
-
-
- net50.System.Reflection.Emit.ILGeneration
- Resources\net50\System.Reflection.Emit.ILGeneration.dll
-
-
- net50.System.Reflection.Emit.Lightweight
- Resources\net50\System.Reflection.Emit.Lightweight.dll
-
-
- net50.System.Reflection.Extensions
- Resources\net50\System.Reflection.Extensions.dll
-
-
- net50.System.Reflection.Metadata
- Resources\net50\System.Reflection.Metadata.dll
-
-
- net50.System.Reflection.Primitives
- Resources\net50\System.Reflection.Primitives.dll
-
-
- net50.System.Reflection.TypeExtensions
- Resources\net50\System.Reflection.TypeExtensions.dll
-
-
- net50.System.Resources.Reader
- Resources\net50\System.Resources.Reader.dll
-
-
- net50.System.Resources.ResourceManager
- Resources\net50\System.Resources.ResourceManager.dll
-
-
- net50.System.Resources.Writer
- Resources\net50\System.Resources.Writer.dll
-
-
- net50.System.Runtime.CompilerServices.Unsafe
- Resources\net50\System.Runtime.CompilerServices.Unsafe.dll
-
-
- net50.System.Runtime.CompilerServices.VisualC
- Resources\net50\System.Runtime.CompilerServices.VisualC.dll
-
-
- net50.System.Runtime
- Resources\net50\System.Runtime.dll
-
-
- net50.System.Runtime.Extensions
- Resources\net50\System.Runtime.Extensions.dll
-
-
- net50.System.Runtime.Handles
- Resources\net50\System.Runtime.Handles.dll
-
-
- net50.System.Runtime.InteropServices
- Resources\net50\System.Runtime.InteropServices.dll
-
-
- net50.System.Runtime.InteropServices.RuntimeInformation
- Resources\net50\System.Runtime.InteropServices.RuntimeInformation.dll
-
-
- net50.System.Runtime.Intrinsics
- Resources\net50\System.Runtime.Intrinsics.dll
-
-
- net50.System.Runtime.Loader
- Resources\net50\System.Runtime.Loader.dll
-
-
- net50.System.Runtime.Numerics
- Resources\net50\System.Runtime.Numerics.dll
-
-
- net50.System.Runtime.Serialization
- Resources\net50\System.Runtime.Serialization.dll
-
-
- net50.System.Runtime.Serialization.Formatters
- Resources\net50\System.Runtime.Serialization.Formatters.dll
-
-
- net50.System.Runtime.Serialization.Json
- Resources\net50\System.Runtime.Serialization.Json.dll
-
-
- net50.System.Runtime.Serialization.Primitives
- Resources\net50\System.Runtime.Serialization.Primitives.dll
-
-
- net50.System.Runtime.Serialization.Xml
- Resources\net50\System.Runtime.Serialization.Xml.dll
-
-
- net50.System.Security.Claims
- Resources\net50\System.Security.Claims.dll
-
-
- net50.System.Security.Cryptography.Algorithms
- Resources\net50\System.Security.Cryptography.Algorithms.dll
-
-
- net50.System.Security.Cryptography.Csp
- Resources\net50\System.Security.Cryptography.Csp.dll
-
-
- net50.System.Security.Cryptography.Encoding
- Resources\net50\System.Security.Cryptography.Encoding.dll
-
-
- net50.System.Security.Cryptography.Primitives
- Resources\net50\System.Security.Cryptography.Primitives.dll
-
-
- net50.System.Security.Cryptography.X509Certificates
- Resources\net50\System.Security.Cryptography.X509Certificates.dll
-
-
- net50.System.Security
- Resources\net50\System.Security.dll
-
-
- net50.System.Security.Principal
- Resources\net50\System.Security.Principal.dll
-
-
- net50.System.Security.SecureString
- Resources\net50\System.Security.SecureString.dll
-
-
- net50.System.ServiceModel.Web
- Resources\net50\System.ServiceModel.Web.dll
-
-
- net50.System.ServiceProcess
- Resources\net50\System.ServiceProcess.dll
-
-
- net50.System.Text.Encoding.CodePages
- Resources\net50\System.Text.Encoding.CodePages.dll
-
-
- net50.System.Text.Encoding
- Resources\net50\System.Text.Encoding.dll
-
-
- net50.System.Text.Encoding.Extensions
- Resources\net50\System.Text.Encoding.Extensions.dll
-
-
- net50.System.Text.Encodings.Web
- Resources\net50\System.Text.Encodings.Web.dll
-
-
- net50.System.Text.Json
- Resources\net50\System.Text.Json.dll
-
-
- net50.System.Text.RegularExpressions
- Resources\net50\System.Text.RegularExpressions.dll
-
-
- net50.System.Threading.Channels
- Resources\net50\System.Threading.Channels.dll
-
-
- net50.System.Threading
- Resources\net50\System.Threading.dll
-
-
- net50.System.Threading.Overlapped
- Resources\net50\System.Threading.Overlapped.dll
-
-
- net50.System.Threading.Tasks.Dataflow
- Resources\net50\System.Threading.Tasks.Dataflow.dll
-
-
- net50.System.Threading.Tasks
- Resources\net50\System.Threading.Tasks.dll
-
-
- net50.System.Threading.Tasks.Extensions
- Resources\net50\System.Threading.Tasks.Extensions.dll
-
-
- net50.System.Threading.Tasks.Parallel
- Resources\net50\System.Threading.Tasks.Parallel.dll
-
-
- net50.System.Threading.Thread
- Resources\net50\System.Threading.Thread.dll
-
-
- net50.System.Threading.ThreadPool
- Resources\net50\System.Threading.ThreadPool.dll
-
-
- net50.System.Threading.Timer
- Resources\net50\System.Threading.Timer.dll
-
-
- net50.System.Transactions
- Resources\net50\System.Transactions.dll
-
-
- net50.System.Transactions.Local
- Resources\net50\System.Transactions.Local.dll
-
-
- net50.System.ValueTuple
- Resources\net50\System.ValueTuple.dll
-
-
- net50.System.Web
- Resources\net50\System.Web.dll
-
-
- net50.System.Web.HttpUtility
- Resources\net50\System.Web.HttpUtility.dll
-
-
- net50.System.Windows
- Resources\net50\System.Windows.dll
-
-
- net50.System.Xml
- Resources\net50\System.Xml.dll
-
-
- net50.System.Xml.Linq
- Resources\net50\System.Xml.Linq.dll
-
-
- net50.System.Xml.ReaderWriter
- Resources\net50\System.Xml.ReaderWriter.dll
-
-
- net50.System.Xml.Serialization
- Resources\net50\System.Xml.Serialization.dll
-
-
- net50.System.Xml.XDocument
- Resources\net50\System.Xml.XDocument.dll
-
-
- net50.System.Xml.XmlDocument
- Resources\net50\System.Xml.XmlDocument.dll
-
-
- net50.System.Xml.XmlSerializer
- Resources\net50\System.Xml.XmlSerializer.dll
-
-
- net50.System.Xml.XPath
- Resources\net50\System.Xml.XPath.dll
-
-
- net50.System.Xml.XPath.XDocument
- Resources\net50\System.Xml.XPath.XDocument.dll
-
-
- net50.WindowsBase
- Resources\net50\WindowsBase.dll
-
-
-
diff --git a/src/Express.Net.Test/Express.Net.Test.csproj b/src/Express.Net.Test/Express.Net.Test.csproj
index fdf46c7..4c48491 100644
--- a/src/Express.Net.Test/Express.Net.Test.csproj
+++ b/src/Express.Net.Test/Express.Net.Test.csproj
@@ -1,14 +1,14 @@
-
+
- net5.0
+ net10.0
false
-
+
diff --git a/src/Express.Net.Test/ReferenceAssemblyTests.cs b/src/Express.Net.Test/ReferenceAssemblyTests.cs
index 78cfdd3..f0c9dd3 100644
--- a/src/Express.Net.Test/ReferenceAssemblyTests.cs
+++ b/src/Express.Net.Test/ReferenceAssemblyTests.cs
@@ -1,4 +1,4 @@
-using Express.Net.Reference.Assemblies;
+using Express.Net.Reference.Assemblies;
using Microsoft.CodeAnalysis.CSharp;
using System.IO;
using System.Linq;
@@ -9,7 +9,7 @@ namespace Express.Net.Tests
public class ReferenceAssemblyTests
{
[Fact]
- public void Net50Compilation()
+ public void Net10Compilation()
{
var source = @"
using System;
@@ -24,7 +24,7 @@ static void Main()
var compilation = CSharpCompilation.Create(
"Example",
new[] { CSharpSyntaxTree.ParseText(source) },
- references: Net50.All);
+ references: Net10.All);
Assert.Empty(compilation.GetDiagnostics());
@@ -36,7 +36,7 @@ static void Main()
}
[Fact]
- public void AspNet50Compilation()
+ public void AspNet10Compilation()
{
var source = @"
using Microsoft.AspNetCore.Builder;
@@ -73,7 +73,7 @@ static IHostBuilder CreateHostBuilder(string[] args) =>
var compilation = CSharpCompilation.Create(
"Example",
new[] { CSharpSyntaxTree.ParseText(source) },
- references: Net50.All.Union(AspNet50.All));
+ references: Net10.All.Union(AspNet10.All));
Assert.Empty(compilation.GetDiagnostics());
diff --git a/src/Express.Net/Emit/TargetFrameworks.cs b/src/Express.Net/Emit/TargetFrameworks.cs
index d92fb76..2104ba4 100644
--- a/src/Express.Net/Emit/TargetFrameworks.cs
+++ b/src/Express.Net/Emit/TargetFrameworks.cs
@@ -1,30 +1,30 @@
-using Express.Net.Reference.Assemblies;
+using Express.Net.Reference.Assemblies;
namespace Express.Net.Emit
{
public static class TargetFrameworks
{
- private static readonly TargetFramework _netCore50 = TargetFramework.BuildTargetFramework(
- "net5.0",
+ private static readonly TargetFramework _netCore10 = TargetFramework.BuildTargetFramework(
+ "net10.0",
"Microsoft.NETCore.App",
- "5.0.0",
- Net50.All);
+ "10.0.0",
+ Net10.All);
- private static readonly TargetFramework _aspNetCore50 = TargetFramework.BuildTargetFramework(
- "net5.0",
+ private static readonly TargetFramework _aspNetCore10 = TargetFramework.BuildTargetFramework(
+ "net10.0",
"Microsoft.AspNetCore.App",
- "5.0.0",
- AspNet50.All);
+ "10.0.0",
+ AspNet10.All);
private static readonly TargetFramework _expressNet = TargetFramework.BuildTargetFramework(
- "net5.0",
+ "net10.0",
"Microsoft.AspNetCore.App",
- "5.0.0",
+ "10.0.0",
BaseLibrary.All);
- public static TargetFramework NetCore50 => _netCore50;
+ public static TargetFramework NetCore10 => _netCore10;
- public static TargetFramework AspNetCore50 => _aspNetCore50;
+ public static TargetFramework AspNetCore10 => _aspNetCore10;
public static TargetFramework ExpressNet => _expressNet;
}
diff --git a/src/Express.Net/Express.Net.csproj b/src/Express.Net/Express.Net.csproj
index 95f4f74..71eec91 100644
--- a/src/Express.Net/Express.Net.csproj
+++ b/src/Express.Net/Express.Net.csproj
@@ -1,7 +1,7 @@
-
+
- net5.0
+ net10.0
Express.Net
true
enable
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Express.Net/NuGetPackages/NuGetClient.cs b/src/Express.Net/NuGetPackages/NuGetClient.cs
index c421356..5408aa0 100644
--- a/src/Express.Net/NuGetPackages/NuGetClient.cs
+++ b/src/Express.Net/NuGetPackages/NuGetClient.cs
@@ -1,4 +1,4 @@
-using Express.Net.Models;
+using Express.Net.Models;
using Express.Net.Models.NuGet;
using Express.Net.Packages.Services;
using NuGet.Common;
@@ -24,7 +24,7 @@ namespace Express.Net.Packages
{
public class NuGetClient
{
- private const string frameworkName = "net5.0";
+ private const string frameworkName = "net10.0";
private const string objDirectoryName = "obj";
private static readonly JsonSerializerOptions _jsonSerializerOptions = new()
diff --git a/src/Scripts/Generate.ps1 b/src/Scripts/Generate.ps1
index 2d3fae5..5066785 100644
--- a/src/Scripts/Generate.ps1
+++ b/src/Scripts/Generate.ps1
@@ -122,12 +122,12 @@ function Get-Content($name, $packagePath, [string]$excludePattern)
$combinedDir = Join-Path $PSScriptRoot "..\Express.Net.Reference.Assemblies"
-# Net50
-$map = Get-Content "Net50" 'microsoft.netcore.app.ref\5.0.0\ref\net5.0'
-$map.CodeContent | Out-File (Join-Path $combinedDir "Generated.Net50.cs") -Encoding Utf8
-$map.TargetsContent | Out-File (Join-Path $combinedDir "Generated.Net50.targets") -Encoding Utf8
-
-# AspNet50
-$map = Get-Content "AspNet50" 'microsoft.aspnetcore.app.ref\5.0.0\ref\net5.0'
-$map.CodeContent | Out-File (Join-Path $combinedDir "Generated.AspNet50.cs") -Encoding Utf8
-$map.TargetsContent | Out-File (Join-Path $combinedDir "Generated.AspNet50.targets") -Encoding Utf8
+# Net10
+$map = Get-Content "Net10" 'microsoft.netcore.app.ref\10.0.0\ref\net10.0'
+$map.CodeContent | Out-File (Join-Path $combinedDir "Generated.Net10.cs") -Encoding Utf8
+$map.TargetsContent | Out-File (Join-Path $combinedDir "Generated.Net10.targets") -Encoding Utf8
+
+# AspNet10
+$map = Get-Content "AspNet10" 'microsoft.aspnetcore.app.ref\10.0.0\ref\net10.0'
+$map.CodeContent | Out-File (Join-Path $combinedDir "Generated.AspNet10.cs") -Encoding Utf8
+$map.TargetsContent | Out-File (Join-Path $combinedDir "Generated.AspNet10.targets") -Encoding Utf8