diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index 2be6730..7dcefc3 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -3,10 +3,11 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
- "version": "7.0.9",
+ "version": "10.0.8",
"commands": [
"dotnet-ef"
- ]
+ ],
+ "rollForward": false
}
}
}
\ No newline at end of file
diff --git a/Dto/BaseDetailsDto.cs b/Dto/BaseDetailsDto.cs
index 4e9bc66..546c5bb 100644
--- a/Dto/BaseDetailsDto.cs
+++ b/Dto/BaseDetailsDto.cs
@@ -14,7 +14,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto
[Column(Order = 51)]
[DefaultValue("CCIS-P01S01-CM\\ASA_SSP_Admin")]
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
- public string ModifiedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
+ public string ModifiedBy { get; set; } = "System";
[Column(Order = 52)]
[DefaultValueSql("GETDATE()")]
@@ -24,6 +24,6 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto
[Column(Order = 53)]
[DefaultValue("CCIS-P01S01-CM\\ASA_SSP_Admin")]
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
- public string CreatedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
+ public string CreatedBy { get; set; } = "System";
}
}
diff --git a/Microsoft.SelfService.Portal.Core.API.csproj b/Microsoft.SelfService.Portal.Core.API.csproj
index 1f9a6ea..1a31362 100644
--- a/Microsoft.SelfService.Portal.Core.API.csproj
+++ b/Microsoft.SelfService.Portal.Core.API.csproj
@@ -1,26 +1,28 @@
- net7.0
+ net10.0
enable
enable
9c90fee1-4576-4f20-be83-715728173b96
-
-
-
-
-
-
-
-
+
+
+
+
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
diff --git a/Models/BaseJunctionModel.cs b/Models/BaseJunctionModel.cs
index eff5965..03e827f 100644
--- a/Models/BaseJunctionModel.cs
+++ b/Models/BaseJunctionModel.cs
@@ -9,13 +9,13 @@ namespace Microsoft.SelfService.Portal.Core.API.Models
public DateTime Modified { get; set; } = DateTime.Now;
[Column(Order = 51)]
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
- public string ModifiedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
+ public string ModifiedBy { get; set; } = "System";
[Column(Order = 52)]
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public DateTime Created { get; set; } = DateTime.Now;
[Column(Order = 53)]
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
- public string CreatedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
+ public string CreatedBy { get; set; } = "System";
}
}
diff --git a/Models/BaseModel.cs b/Models/BaseModel.cs
index 21d4102..4c261d5 100644
--- a/Models/BaseModel.cs
+++ b/Models/BaseModel.cs
@@ -22,7 +22,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Models
[Column(Order = 51)]
[DefaultValue("System")]
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
- public string ModifiedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
+ public string ModifiedBy { get; set; } = "System";
[Column(Order = 52)]
[DefaultValueSql("GETDATE()")]
@@ -33,6 +33,6 @@ namespace Microsoft.SelfService.Portal.Core.API.Models
[DefaultValue("System")]
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
//public string CreatedBy { get; set; } = "CCIS-P01S01-CM\\ASA_SSP_Admin";
- public string CreatedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
+ public string CreatedBy { get; set; } = "System";
}
}
diff --git a/Program.cs b/Program.cs
index 141aeca..3d0a838 100644
--- a/Program.cs
+++ b/Program.cs
@@ -5,6 +5,7 @@ using Microsoft.SelfService.Portal.Core.API.Events;
using Microsoft.SelfService.Portal.Core.API.Events.Interfaces;
using Microsoft.SelfService.Portal.Core.API.Interfaces;
using Microsoft.SelfService.Portal.Core.API.Repository;
+using Microsoft.Extensions.FileProviders;
using System.Text.Json.Serialization;
@@ -32,7 +33,7 @@ builder.Services.AddScoped();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
-builder.Services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies());
+builder.Services.AddAutoMapper(_ => { }, AppDomain.CurrentDomain.GetAssemblies());
builder.Services.AddDbContext(options =>
options.UseSqlServer(builder.Configuration.GetConnectionString("Context") ?? throw new InvalidOperationException("Connection string 'Context' not found.")));
@@ -49,6 +50,11 @@ builder.Services.AddAuthorization(options =>
});
var app = builder.Build();
+var frontendDistPath = Path.GetFullPath(Path.Combine(
+ app.Environment.ContentRootPath,
+ "..",
+ "Microsoft.SelfService.Portal.Web",
+ "dist"));
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
@@ -59,8 +65,33 @@ if (app.Environment.IsDevelopment())
app.UseHttpsRedirection();
+if (Directory.Exists(frontendDistPath))
+{
+ var frontendDistProvider = new PhysicalFileProvider(frontendDistPath);
+
+ app.UseDefaultFiles(new DefaultFilesOptions
+ {
+ FileProvider = frontendDistProvider
+ });
+
+ app.UseStaticFiles(new StaticFileOptions
+ {
+ FileProvider = frontendDistProvider
+ });
+}
+
+app.UseAuthentication();
app.UseAuthorization();
app.MapControllers();
+if (Directory.Exists(frontendDistPath))
+{
+ app.MapFallback(async context =>
+ {
+ context.Response.ContentType = "text/html";
+ await context.Response.SendFileAsync(Path.Combine(frontendDistPath, "index.html"));
+ }).AllowAnonymous();
+}
+
app.Run();
diff --git a/appsettings.Development.json b/appsettings.Development.json
new file mode 100644
index 0000000..cf398c2
--- /dev/null
+++ b/appsettings.Development.json
@@ -0,0 +1,5 @@
+{
+ "ConnectionStrings": {
+ "Context": "Server=.;Database=SSP;TrustServerCertificate=True;Encrypt=False;Trusted_Connection=True"
+ }
+}
diff --git a/bin/Debug/net10.0/AutoMapper.dll b/bin/Debug/net10.0/AutoMapper.dll
new file mode 100644
index 0000000..e031ec9
Binary files /dev/null and b/bin/Debug/net10.0/AutoMapper.dll differ
diff --git a/bin/Debug/net10.0/Azure.Core.dll b/bin/Debug/net10.0/Azure.Core.dll
new file mode 100644
index 0000000..8883ec9
Binary files /dev/null and b/bin/Debug/net10.0/Azure.Core.dll differ
diff --git a/bin/Debug/net10.0/Azure.Identity.dll b/bin/Debug/net10.0/Azure.Identity.dll
new file mode 100644
index 0000000..ea19200
Binary files /dev/null and b/bin/Debug/net10.0/Azure.Identity.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll b/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll
new file mode 100644
index 0000000..4fc1257
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe b/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe
new file mode 100644
index 0000000..5dc984a
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config b/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config
new file mode 100644
index 0000000..4878324
--- /dev/null
+++ b/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll b/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll
new file mode 100644
index 0000000..5d213be
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll b/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll
new file mode 100644
index 0000000..4c6c276
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll b/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll
new file mode 100644
index 0000000..9f5d1e3
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll b/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll
new file mode 100644
index 0000000..7594b2e
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll b/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll
new file mode 100644
index 0000000..48f2bea
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll b/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll
new file mode 100644
index 0000000..f00ba58
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll b/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..59dd322
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..84b849b
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll b/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..46392b1
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll
new file mode 100644
index 0000000..157c831
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll
new file mode 100644
index 0000000..81a4cdd
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll
new file mode 100644
index 0000000..b34f301
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll
new file mode 100644
index 0000000..fd28483
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll
new file mode 100644
index 0000000..91fff9a
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll
new file mode 100644
index 0000000..3ef6049
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll
new file mode 100644
index 0000000..239b344
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll
new file mode 100644
index 0000000..27be345
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll
new file mode 100644
index 0000000..4614651
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll
new file mode 100644
index 0000000..3e7dd0a
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll
new file mode 100644
index 0000000..eacb537
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll
new file mode 100644
index 0000000..22192e2
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll
new file mode 100644
index 0000000..e1f33ee
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll
new file mode 100644
index 0000000..94ba15f
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json
new file mode 100644
index 0000000..390d318
--- /dev/null
+++ b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json
@@ -0,0 +1,171 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/5.0.0-2.25567.12": {
+ "dependencies": {
+ "Microsoft.Build.Locator": "1.10.2",
+ "Newtonsoft.Json": "13.0.3",
+ "System.Collections.Immutable": "9.0.0",
+ "System.CommandLine": "2.0.0-rtm.25509.106"
+ },
+ "runtime": {
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {}
+ },
+ "resources": {
+ "cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "cs"
+ },
+ "de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "de"
+ },
+ "es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "es"
+ },
+ "fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "fr"
+ },
+ "it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "it"
+ },
+ "ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "ja"
+ },
+ "ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "ko"
+ },
+ "pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "pl"
+ },
+ "pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "ru"
+ },
+ "tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "tr"
+ },
+ "zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Build.Locator/1.10.2": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Build.Locator.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.10.2.26959"
+ }
+ }
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.3.27908"
+ }
+ }
+ },
+ "System.Collections.Immutable/9.0.0": {
+ "runtime": {
+ "lib/net8.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "System.CommandLine/2.0.0-rtm.25509.106": {
+ "runtime": {
+ "lib/net8.0/System.CommandLine.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.25.51006"
+ }
+ },
+ "resources": {
+ "lib/net8.0/cs/System.CommandLine.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net8.0/de/System.CommandLine.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net8.0/es/System.CommandLine.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net8.0/fr/System.CommandLine.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net8.0/it/System.CommandLine.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net8.0/ja/System.CommandLine.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net8.0/ko/System.CommandLine.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net8.0/pl/System.CommandLine.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net8.0/pt-BR/System.CommandLine.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net8.0/ru/System.CommandLine.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net8.0/tr/System.CommandLine.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net8.0/zh-Hans/System.CommandLine.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net8.0/zh-Hant/System.CommandLine.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/5.0.0-2.25567.12": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Build.Locator/1.10.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-F+nLS7IpgtslyxNvtD6Jalnf5WU08lu8yfJBNQl3cbEF3AMUphs4t7nPuRYaaU8QZyGrqtVi7i73LhAe/yHx7A==",
+ "path": "microsoft.build.locator/1.10.2",
+ "hashPath": "microsoft.build.locator.1.10.2.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
+ "path": "newtonsoft.json/13.0.3",
+ "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
+ },
+ "System.Collections.Immutable/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QhkXUl2gNrQtvPmtBTQHb0YsUrDiDQ2QS09YbtTTiSjGcf7NBqtYbrG/BE06zcBPCKEwQGzIv13IVdXNOSub2w==",
+ "path": "system.collections.immutable/9.0.0",
+ "hashPath": "system.collections.immutable.9.0.0.nupkg.sha512"
+ },
+ "System.CommandLine/2.0.0-rtm.25509.106": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IdCQOFNHQfK0hu3tzWOHFJLMaiEOR/4OynmOh+IfukrTIsCR4TTDm7lpuXQyMZ0eRfIyUcz06gHGJNlILAq/6A==",
+ "path": "system.commandline/2.0.0-rtm.25509.106",
+ "hashPath": "system.commandline.2.0.0-rtm.25509.106.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll
new file mode 100644
index 0000000..bb28fb2
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json
new file mode 100644
index 0000000..91d1aa6
--- /dev/null
+++ b/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json
@@ -0,0 +1,14 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ "rollForward": "Major",
+ "configProperties": {
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll b/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll
new file mode 100644
index 0000000..4b1440f
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll b/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll
new file mode 100644
index 0000000..9db8140
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll b/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll
new file mode 100644
index 0000000..f3c8291
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll
new file mode 100644
index 0000000..9f4cca0
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll
new file mode 100644
index 0000000..cb65732
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll
new file mode 100644
index 0000000..acbb2a2
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll
new file mode 100644
index 0000000..b550c99
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll
new file mode 100644
index 0000000..52e7d4b
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll
new file mode 100644
index 0000000..a53d632
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll
new file mode 100644
index 0000000..e21cf53
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll
new file mode 100644
index 0000000..adb5dd9
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll
new file mode 100644
index 0000000..3b8606e
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll
new file mode 100644
index 0000000..283e808
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll
new file mode 100644
index 0000000..4309ed4
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll
new file mode 100644
index 0000000..cea1bc5
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll b/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll
new file mode 100644
index 0000000..385ca63
Binary files /dev/null and b/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll differ
diff --git a/bin/Debug/net10.0/Humanizer.dll b/bin/Debug/net10.0/Humanizer.dll
new file mode 100644
index 0000000..c9a7ef8
Binary files /dev/null and b/bin/Debug/net10.0/Humanizer.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll b/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll
new file mode 100644
index 0000000..3c68db6
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.AspNetCore.JsonPatch.dll b/bin/Debug/net10.0/Microsoft.AspNetCore.JsonPatch.dll
new file mode 100644
index 0000000..a9c3e6a
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.AspNetCore.JsonPatch.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
new file mode 100644
index 0000000..ff5873c
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll b/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll
new file mode 100644
index 0000000..b0a2772
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100644
index 0000000..421e812
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Bcl.Cryptography.dll b/bin/Debug/net10.0/Microsoft.Bcl.Cryptography.dll
new file mode 100644
index 0000000..e0a506a
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Bcl.Cryptography.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Build.Framework.dll b/bin/Debug/net10.0/Microsoft.Build.Framework.dll
new file mode 100644
index 0000000..a1a97aa
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Build.Framework.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
new file mode 100644
index 0000000..ab1265c
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll
new file mode 100644
index 0000000..dc1f35d
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll b/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll
new file mode 100644
index 0000000..e6f90df
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll
new file mode 100644
index 0000000..5356a08
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll
new file mode 100644
index 0000000..7135704
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll
new file mode 100644
index 0000000..f54bd93
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net10.0/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..e355a91
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Data.SqlClient.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll
new file mode 100644
index 0000000..f457791
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll
new file mode 100644
index 0000000..8395269
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll
new file mode 100644
index 0000000..a82e568
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll
new file mode 100644
index 0000000..394a48c
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll
new file mode 100644
index 0000000..3ccc5ec
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll b/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll
new file mode 100644
index 0000000..a8bf201
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Debug/net10.0/Microsoft.Identity.Client.Extensions.Msal.dll
new file mode 100644
index 0000000..15201c7
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Identity.Client.Extensions.Msal.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.Identity.Client.dll b/bin/Debug/net10.0/Microsoft.Identity.Client.dll
new file mode 100644
index 0000000..aa7367f
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.Identity.Client.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll b/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 0000000..f85ae59
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll b/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll
new file mode 100644
index 0000000..4c4d3ab
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll b/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll
new file mode 100644
index 0000000..170078a
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
new file mode 100644
index 0000000..9c70235
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll b/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll
new file mode 100644
index 0000000..01432af
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll b/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll
new file mode 100644
index 0000000..009ce65
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.OpenApi.dll b/bin/Debug/net10.0/Microsoft.OpenApi.dll
new file mode 100644
index 0000000..58b6245
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.OpenApi.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.deps.json
new file mode 100644
index 0000000..c0e0bd0
--- /dev/null
+++ b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.deps.json
@@ -0,0 +1,1290 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v10.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v10.0": {
+ "Microsoft.SelfService.Portal.Core.API/1.0.0": {
+ "dependencies": {
+ "AutoMapper": "16.1.1",
+ "Microsoft.AspNetCore.Authentication.Negotiate": "10.0.8",
+ "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "10.0.8",
+ "Microsoft.AspNetCore.OpenApi": "10.0.8",
+ "Microsoft.EntityFrameworkCore": "10.0.8",
+ "Microsoft.EntityFrameworkCore.Design": "10.0.8",
+ "Microsoft.EntityFrameworkCore.SqlServer": "10.0.8",
+ "Swashbuckle.AspNetCore": "10.1.7"
+ },
+ "runtime": {
+ "Microsoft.SelfService.Portal.Core.API.dll": {}
+ }
+ },
+ "AutoMapper/16.1.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "8.14.0"
+ },
+ "runtime": {
+ "lib/net10.0/AutoMapper.dll": {
+ "assemblyVersion": "16.0.0.0",
+ "fileVersion": "16.1.1.0"
+ }
+ }
+ },
+ "Azure.Core/1.47.1": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
+ "System.ClientModel": "1.5.1",
+ "System.Memory.Data": "8.0.1"
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Core.dll": {
+ "assemblyVersion": "1.47.1.0",
+ "fileVersion": "1.4700.125.36505"
+ }
+ }
+ },
+ "Azure.Identity/1.14.2": {
+ "dependencies": {
+ "Azure.Core": "1.47.1",
+ "Microsoft.Identity.Client": "4.73.1",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.73.1"
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Identity.dll": {
+ "assemblyVersion": "1.14.2.0",
+ "fileVersion": "1.1400.225.36004"
+ }
+ }
+ },
+ "Humanizer.Core/2.14.1": {
+ "runtime": {
+ "lib/net6.0/Humanizer.dll": {
+ "assemblyVersion": "2.14.0.0",
+ "fileVersion": "2.14.1.48190"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": {
+ "dependencies": {
+ "System.DirectoryServices.Protocols": "10.0.8"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.JsonPatch/10.0.8": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.AspNetCore.JsonPatch.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": {
+ "dependencies": {
+ "Microsoft.AspNetCore.JsonPatch": "10.0.8",
+ "Newtonsoft.Json": "13.0.3",
+ "Newtonsoft.Json.Bson": "1.0.2"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/10.0.8": {
+ "dependencies": {
+ "Microsoft.OpenApi": "2.4.1"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Bcl.Cryptography/9.0.4": {
+ "runtime": {
+ "lib/net9.0/Microsoft.Bcl.Cryptography.dll": {
+ "assemblyVersion": "9.0.0.4",
+ "fileVersion": "9.0.425.16305"
+ }
+ }
+ },
+ "Microsoft.Build.Framework/18.0.2": {
+ "runtime": {
+ "lib/net10.0/Microsoft.Build.Framework.dll": {
+ "assemblyVersion": "15.1.0.0",
+ "fileVersion": "18.0.2.52102"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Common/5.0.0": {
+ "runtime": {
+ "lib/net9.0/Microsoft.CodeAnalysis.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.25.56712"
+ }
+ },
+ "resources": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/5.0.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "5.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.25.56712"
+ }
+ },
+ "resources": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp": "5.0.0",
+ "Microsoft.CodeAnalysis.Common": "5.0.0",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0",
+ "System.Composition": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.25.56712"
+ }
+ },
+ "resources": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.Common": "5.0.0",
+ "System.Composition": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.25.56712"
+ }
+ },
+ "resources": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0",
+ "Microsoft.VisualStudio.SolutionPersistence": "1.0.52",
+ "Newtonsoft.Json": "13.0.3",
+ "System.Composition": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.25.56712"
+ },
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.25.56712"
+ }
+ },
+ "resources": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Data.SqlClient/6.1.1": {
+ "dependencies": {
+ "Azure.Core": "1.47.1",
+ "Azure.Identity": "1.14.2",
+ "Microsoft.Bcl.Cryptography": "9.0.4",
+ "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2",
+ "Microsoft.IdentityModel.JsonWebTokens": "8.14.0",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.7.1",
+ "Microsoft.SqlServer.Server": "1.0.0",
+ "System.Configuration.ConfigurationManager": "9.0.4"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.Data.SqlClient.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.11.25226.3"
+ }
+ },
+ "resources": {
+ "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.11.25226.3"
+ },
+ "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.11.25226.3"
+ }
+ }
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": {
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "6.2.0.0"
+ },
+ "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "6.2.0.0"
+ },
+ "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "6.2.0.0"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/10.0.8": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "10.0.8"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": {
+ "runtime": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Design/10.0.8": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.CodeAnalysis.CSharp": "5.0.0",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0",
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.0.0",
+ "Microsoft.EntityFrameworkCore.Relational": "10.0.8",
+ "Microsoft.Extensions.DependencyModel": "10.0.8",
+ "Mono.TextTemplating": "3.0.0",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/10.0.8": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "10.0.8"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": {
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "6.1.1",
+ "Microsoft.EntityFrameworkCore.Relational": "10.0.8"
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
+ "assemblyVersion": "10.0.8.0",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/10.0.8": {
+ "runtime": {
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {
+ "assemblyVersion": "10.0.0.8",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "Microsoft.Identity.Client/4.73.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "8.14.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.73.1.0",
+ "fileVersion": "4.73.1.0"
+ }
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.73.1": {
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.73.1",
+ "System.Security.Cryptography.ProtectedData": "9.0.4"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "assemblyVersion": "4.73.1.0",
+ "fileVersion": "4.73.1.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/8.14.0": {
+ "runtime": {
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "8.14.0.0",
+ "fileVersion": "8.14.0.60815"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/8.14.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "8.14.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "assemblyVersion": "8.14.0.0",
+ "fileVersion": "8.14.0.60815"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/8.14.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "8.14.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.IdentityModel.Logging.dll": {
+ "assemblyVersion": "8.14.0.0",
+ "fileVersion": "8.14.0.60815"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols/7.7.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "8.14.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
+ "assemblyVersion": "7.7.1.0",
+ "fileVersion": "7.7.1.50719"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Protocols": "7.7.1",
+ "System.IdentityModel.Tokens.Jwt": "7.7.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "assemblyVersion": "7.7.1.0",
+ "fileVersion": "7.7.1.50719"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/8.14.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "8.14.0"
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {
+ "assemblyVersion": "8.14.0.0",
+ "fileVersion": "8.14.0.60815"
+ }
+ }
+ },
+ "Microsoft.OpenApi/2.4.1": {
+ "runtime": {
+ "lib/net8.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "2.4.1.0",
+ "fileVersion": "2.4.1.0"
+ }
+ }
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "Microsoft.VisualStudio.SolutionPersistence/1.0.52": {
+ "runtime": {
+ "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.52.6595"
+ }
+ }
+ },
+ "Mono.TextTemplating/3.0.0": {
+ "dependencies": {
+ "System.CodeDom": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Mono.TextTemplating.dll": {
+ "assemblyVersion": "3.0.0.0",
+ "fileVersion": "3.0.0.1"
+ }
+ }
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.3.27908"
+ }
+ }
+ },
+ "Newtonsoft.Json.Bson/1.0.2": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.2.22727"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore/10.1.7": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "10.1.7",
+ "Swashbuckle.AspNetCore.SwaggerGen": "10.1.7",
+ "Swashbuckle.AspNetCore.SwaggerUI": "10.1.7"
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/10.1.7": {
+ "dependencies": {
+ "Microsoft.OpenApi": "2.4.1"
+ },
+ "runtime": {
+ "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "assemblyVersion": "10.1.7.0",
+ "fileVersion": "10.1.7.2427"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "10.1.7"
+ },
+ "runtime": {
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "assemblyVersion": "10.1.7.0",
+ "fileVersion": "10.1.7.2427"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": {
+ "runtime": {
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "assemblyVersion": "10.1.7.0",
+ "fileVersion": "10.1.7.2427"
+ }
+ }
+ },
+ "System.ClientModel/1.5.1": {
+ "dependencies": {
+ "System.Memory.Data": "8.0.1"
+ },
+ "runtime": {
+ "lib/net8.0/System.ClientModel.dll": {
+ "assemblyVersion": "1.5.1.0",
+ "fileVersion": "1.500.125.36405"
+ }
+ }
+ },
+ "System.CodeDom/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.CodeDom.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition/9.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "9.0.0",
+ "System.Composition.Convention": "9.0.0",
+ "System.Composition.Hosting": "9.0.0",
+ "System.Composition.Runtime": "9.0.0",
+ "System.Composition.TypedParts": "9.0.0"
+ }
+ },
+ "System.Composition.AttributedModel/9.0.0": {
+ "runtime": {
+ "lib/net9.0/System.Composition.AttributedModel.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "System.Composition.Convention/9.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/System.Composition.Convention.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "System.Composition.Hosting/9.0.0": {
+ "dependencies": {
+ "System.Composition.Runtime": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/System.Composition.Hosting.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "System.Composition.Runtime/9.0.0": {
+ "runtime": {
+ "lib/net9.0/System.Composition.Runtime.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "System.Composition.TypedParts/9.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "9.0.0",
+ "System.Composition.Hosting": "9.0.0",
+ "System.Composition.Runtime": "9.0.0"
+ },
+ "runtime": {
+ "lib/net9.0/System.Composition.TypedParts.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.24.52809"
+ }
+ }
+ },
+ "System.Configuration.ConfigurationManager/9.0.4": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "9.0.4"
+ },
+ "runtime": {
+ "lib/net9.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.425.16305"
+ }
+ }
+ },
+ "System.DirectoryServices.Protocols/10.0.8": {
+ "runtime": {
+ "lib/net10.0/System.DirectoryServices.Protocols.dll": {
+ "assemblyVersion": "10.0.0.8",
+ "fileVersion": "10.0.826.23019"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll": {
+ "rid": "linux",
+ "assetType": "runtime",
+ "assemblyVersion": "10.0.0.8",
+ "fileVersion": "10.0.826.23019"
+ },
+ "runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll": {
+ "rid": "osx",
+ "assetType": "runtime",
+ "assemblyVersion": "10.0.0.8",
+ "fileVersion": "10.0.826.23019"
+ },
+ "runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "10.0.0.8",
+ "fileVersion": "10.0.826.23019"
+ }
+ }
+ },
+ "System.IdentityModel.Tokens.Jwt/7.7.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "8.14.0",
+ "Microsoft.IdentityModel.Tokens": "8.14.0"
+ },
+ "runtime": {
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "assemblyVersion": "7.7.1.0",
+ "fileVersion": "7.7.1.50719"
+ }
+ }
+ },
+ "System.Memory.Data/8.0.1": {
+ "runtime": {
+ "lib/net8.0/System.Memory.Data.dll": {
+ "assemblyVersion": "8.0.0.1",
+ "fileVersion": "8.0.1024.46610"
+ }
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/9.0.4": {
+ "runtime": {
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.425.16305"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.SelfService.Portal.Core.API/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AutoMapper/16.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VNEky8JA15ci+oIDRGHITOGOpV4dILsf8pnn24QhDl2urtqgJ2IXiS/V2EtGU17P/+f6OeFQPJETaZXV9QOIZg==",
+ "path": "automapper/16.1.1",
+ "hashPath": "automapper.16.1.1.nupkg.sha512"
+ },
+ "Azure.Core/1.47.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oPcncSsDHuxB8SC522z47xbp2+ttkcKv2YZ90KXhRKN0YQd2+7l1UURT9EBzUNEXtkLZUOAB5xbByMTrYRh3yA==",
+ "path": "azure.core/1.47.1",
+ "hashPath": "azure.core.1.47.1.nupkg.sha512"
+ },
+ "Azure.Identity/1.14.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhNMwOTwT+I2wIcJKSdP0ADyB2aK+JaYWZxO8LSRDm5w77LFr0ykR9xmt2ZV5T1gaI7xU6iNFIh/yW1dAlpddQ==",
+ "path": "azure.identity/1.14.2",
+ "hashPath": "azure.identity.1.14.2.nupkg.sha512"
+ },
+ "Humanizer.Core/2.14.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
+ "path": "humanizer.core/2.14.1",
+ "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PkNdrRbU4togx1Eg3/0kcqpRLbtkfqhZ3aHudMQwbXnwcGJgxEgu65YLjqRD/tSp8szrH1XdefyyymTrfi0WPQ==",
+ "path": "microsoft.aspnetcore.authentication.negotiate/10.0.8",
+ "hashPath": "microsoft.aspnetcore.authentication.negotiate.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.JsonPatch/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xGMQwR06DxQSpSUdYvUPLQkjcQUAXnFIUbNoafAcLvUXDnmKNEuddxKvrGoWDT7svt90wWet2Xve5uacO/pVtw==",
+ "path": "microsoft.aspnetcore.jsonpatch/10.0.8",
+ "hashPath": "microsoft.aspnetcore.jsonpatch.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LAZmDrEsExc11l7nyQ+efQHTKp4MOskAuPSgkW64LoxrJv2YnElc4IM1VGfIHNRspqVguO5TY5kz2YTRcNSHeQ==",
+ "path": "microsoft.aspnetcore.mvc.newtonsoftjson/10.0.8",
+ "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.OpenApi/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cw24xHE2QaWwyEG9GQwFbjboyabub6Vd80DIItUGENzcQOa/BEnTrXsg2GADqWTmY/3ycqk9ToLGjgvF/VRlGA==",
+ "path": "microsoft.aspnetcore.openapi/10.0.8",
+ "hashPath": "microsoft.aspnetcore.openapi.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
+ "path": "microsoft.bcl.asyncinterfaces/8.0.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Bcl.Cryptography/9.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YgZYAWzyNuPVtPq6WNm0bqOWNjYaWgl5mBWTGZyNoXitYBUYSp6iUB9AwK0V1mo793qRJUXz2t6UZrWITZSvuQ==",
+ "path": "microsoft.bcl.cryptography/9.0.4",
+ "hashPath": "microsoft.bcl.cryptography.9.0.4.nupkg.sha512"
+ },
+ "Microsoft.Build.Framework/18.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==",
+ "path": "microsoft.build.framework/18.0.2",
+ "hashPath": "microsoft.build.framework.18.0.2.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Common/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==",
+ "path": "microsoft.codeanalysis.common/5.0.0",
+ "hashPath": "microsoft.codeanalysis.common.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==",
+ "path": "microsoft.codeanalysis.csharp/5.0.0",
+ "hashPath": "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==",
+ "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0",
+ "hashPath": "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==",
+ "path": "microsoft.codeanalysis.workspaces.common/5.0.0",
+ "hashPath": "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/G+LVoAGMz6Ae8nm+PGLxSw+F5RjYx/J7irbTO5uKAPw1bxHyQJLc/YOnpDxt+EpPtYxvC9wvBsg/kETZp1F9Q==",
+ "path": "microsoft.codeanalysis.workspaces.msbuild/5.0.0",
+ "hashPath": "microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Data.SqlClient/6.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-syGQmIUPAYYHAHyTD8FCkTNThpQWvoA7crnIQRMfp8dyB5A2cWU3fQexlRTFkVmV7S0TjVmthi0LJEFVjHo8AQ==",
+ "path": "microsoft.data.sqlclient/6.1.1",
+ "hashPath": "microsoft.data.sqlclient.6.1.1.nupkg.sha512"
+ },
+ "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-f+pRODTWX7Y67jXO3T5S2dIPZ9qMJNySjlZT/TKmWVNWe19N8jcWmHaqHnnchaq3gxEKv1SWVY5EFzOD06l41w==",
+ "path": "microsoft.data.sqlclient.sni.runtime/6.0.2",
+ "hashPath": "microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EJx+fIBMgBlgD+ublKCn+GTOJkw3UqV7xOjYWBRVdUYyIm8UfvAsmSOPFiIInsWTHyMEYUJ9gCJY1jwX+6UB7w==",
+ "path": "microsoft.entityframeworkcore/10.0.8",
+ "hashPath": "microsoft.entityframeworkcore.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-jbKDXWPZQhuPHygMnwzNOqxBADVcpRVytcKYZsA++QqhPkpF93Ta8o5mbJQGrARSjlkr9WtOaADV97EDMOZ7DA==",
+ "path": "microsoft.entityframeworkcore.abstractions/10.0.8",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Design/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LlUUXdfqKFk7RlGExojVP8GI6hN9O21WjpxFnp5mLeGjd9iYdwywIgK9WOLvPM2hrknrRyHR/i43FQdw/oCrOw==",
+ "path": "microsoft.entityframeworkcore.design/10.0.8",
+ "hashPath": "microsoft.entityframeworkcore.design.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UU3diAD2wwZveye2rnrwaF/wvJ9tm5iL2fuY9TTap6/iGQK1OO29M1BzXZRlRPVH/dByt5w/pISBSFtyR7hTqw==",
+ "path": "microsoft.entityframeworkcore.relational/10.0.8",
+ "hashPath": "microsoft.entityframeworkcore.relational.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-A+FLIsTH9l5DG2iD6QW6Mfwlvr+BjWme/jJ2hvwmmENTr7lR1UWmgCtKCjDYcHxqdAD15bb4PgQnSzw12DV/pw==",
+ "path": "microsoft.entityframeworkcore.sqlserver/10.0.8",
+ "hashPath": "microsoft.entityframeworkcore.sqlserver.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyModel/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vLyZVpxmduO2jx+76ggqnsA3m81kwMY3NkWciNTj5E+Nvqb0VihqCvQP89QsGONWp0AJwMZG+u9GzaCjDdFGNw==",
+ "path": "microsoft.extensions.dependencymodel/10.0.8",
+ "hashPath": "microsoft.extensions.dependencymodel.10.0.8.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/4.73.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NnDLS8QwYqO5ZZecL2oioi1LUqjh5Ewk4bMLzbgiXJbQmZhDLtKwLxL3DpGMlQAJ2G4KgEnvGPKa+OOgffeJbw==",
+ "path": "microsoft.identity.client/4.73.1",
+ "hashPath": "microsoft.identity.client.4.73.1.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.73.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xDztAiV2F0wI0W8FLKv5cbaBefyLD6JVaAsvgSN7bjWNCzGYzHbcOEIP5s4TJXUpQzMfUyBsFl1mC6Zmgpz0PQ==",
+ "path": "microsoft.identity.client.extensions.msal/4.73.1",
+ "hashPath": "microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/8.14.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==",
+ "path": "microsoft.identitymodel.abstractions/8.14.0",
+ "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/8.14.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==",
+ "path": "microsoft.identitymodel.jsonwebtokens/8.14.0",
+ "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Logging/8.14.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==",
+ "path": "microsoft.identitymodel.logging/8.14.0",
+ "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols/7.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h+fHHBGokepmCX+QZXJk4Ij8OApCb2n2ktoDkNX5CXteXsOxTHMNgjPGpAwdJMFvAL7TtGarUnk3o97NmBq2QQ==",
+ "path": "microsoft.identitymodel.protocols/7.7.1",
+ "hashPath": "microsoft.identitymodel.protocols.7.7.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yT2Hdj8LpPbcT9C9KlLVxXl09C8zjFaVSaApdOwuecMuoV4s6Sof/mnTDz/+F/lILPIBvrWugR9CC7iRVZgbfQ==",
+ "path": "microsoft.identitymodel.protocols.openidconnect/7.7.1",
+ "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Tokens/8.14.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==",
+ "path": "microsoft.identitymodel.tokens/8.14.0",
+ "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/2.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-u7QhXCISMQuab3flasb1hoaiERmUqyWsW7tmQODyILoQ7mJV5IRGM+2KKZYo0QUfC13evEOcHAb6TPWgqEQtrw==",
+ "path": "microsoft.openapi/2.4.1",
+ "hashPath": "microsoft.openapi.2.4.1.nupkg.sha512"
+ },
+ "Microsoft.SqlServer.Server/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
+ "path": "microsoft.sqlserver.server/1.0.0",
+ "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512"
+ },
+ "Microsoft.VisualStudio.SolutionPersistence/1.0.52": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==",
+ "path": "microsoft.visualstudio.solutionpersistence/1.0.52",
+ "hashPath": "microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512"
+ },
+ "Mono.TextTemplating/3.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==",
+ "path": "mono.texttemplating/3.0.0",
+ "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
+ "path": "newtonsoft.json/13.0.3",
+ "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
+ },
+ "Newtonsoft.Json.Bson/1.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
+ "path": "newtonsoft.json.bson/1.0.2",
+ "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore/10.1.7": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vgef8DPT411JU5JjHiDbr0WOxsIVuAvegPGtqmm4Na4JRl/264dfBJcGkiPHsAr5P+Vda+qN1rZKRtBl1rF9aA==",
+ "path": "swashbuckle.aspnetcore/10.1.7",
+ "hashPath": "swashbuckle.aspnetcore.10.1.7.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.Swagger/10.1.7": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-EjLibt/d/QuRv170GoihTbcPUpgzSFm2WKHhnGJFZQ03JYzfuitsM79azaAR8NBwRunU7yScSX6HRE5JUlrEMQ==",
+ "path": "swashbuckle.aspnetcore.swagger/10.1.7",
+ "hashPath": "swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PuubO9BjvNn6U3D9kLpuWKY1JtziWw7SsGBq0age1E50uQjQ8Fzl8s0EwzrLfANqYJNgDnJi9l7N1QxcGVB2Zw==",
+ "path": "swashbuckle.aspnetcore.swaggergen/10.1.7",
+ "hashPath": "swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iJo3ODyUb/M8Vm8AH1r9y9iAba0w95xsCn3zFVl96ISRHbTDWxi+l7oFVCZqUEdjd97B8VMDPnMliWAdomR8uw==",
+ "path": "swashbuckle.aspnetcore.swaggerui/10.1.7",
+ "hashPath": "swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512"
+ },
+ "System.ClientModel/1.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-k2jKSO0X45IqhVOT9iQB4xralNN9foRQsRvXBTyRpAVxyzCJlG895T9qYrQWbcJ6OQXxOouJQ37x5nZH5XKK+A==",
+ "path": "system.clientmodel/1.5.1",
+ "hashPath": "system.clientmodel.1.5.1.nupkg.sha512"
+ },
+ "System.CodeDom/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
+ "path": "system.codedom/6.0.0",
+ "hashPath": "system.codedom.6.0.0.nupkg.sha512"
+ },
+ "System.Composition/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==",
+ "path": "system.composition/9.0.0",
+ "hashPath": "system.composition.9.0.0.nupkg.sha512"
+ },
+ "System.Composition.AttributedModel/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==",
+ "path": "system.composition.attributedmodel/9.0.0",
+ "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512"
+ },
+ "System.Composition.Convention/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==",
+ "path": "system.composition.convention/9.0.0",
+ "hashPath": "system.composition.convention.9.0.0.nupkg.sha512"
+ },
+ "System.Composition.Hosting/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==",
+ "path": "system.composition.hosting/9.0.0",
+ "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512"
+ },
+ "System.Composition.Runtime/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==",
+ "path": "system.composition.runtime/9.0.0",
+ "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512"
+ },
+ "System.Composition.TypedParts/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==",
+ "path": "system.composition.typedparts/9.0.0",
+ "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/9.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dvjqKp+2LpGid6phzrdrS/2mmEPxFl3jE1+L7614q4ZChKbLJCpHXg6sBILlCCED1t//EE+un/UdAetzIMpqnw==",
+ "path": "system.configuration.configurationmanager/9.0.4",
+ "hashPath": "system.configuration.configurationmanager.9.0.4.nupkg.sha512"
+ },
+ "System.DirectoryServices.Protocols/10.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VmFO1CBCUvWu9cV2XQSeKXRW2Gn76oZmuhhOk7GPDIvzaPoy3lVWHFExFyKNNJlQbGySUbor1bqa1Fc8CJCF/A==",
+ "path": "system.directoryservices.protocols/10.0.8",
+ "hashPath": "system.directoryservices.protocols.10.0.8.nupkg.sha512"
+ },
+ "System.IdentityModel.Tokens.Jwt/7.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rQkO1YbAjLwnDJSMpRhRtrc6XwIcEOcUvoEcge+evurpzSZM3UNK+MZfD3sKyTlYsvknZ6eJjSBfnmXqwOsT9Q==",
+ "path": "system.identitymodel.tokens.jwt/7.7.1",
+ "hashPath": "system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512"
+ },
+ "System.Memory.Data/8.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==",
+ "path": "system.memory.data/8.0.1",
+ "hashPath": "system.memory.data.8.0.1.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/9.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-o94k2RKuAce3GeDMlUvIXlhVa1kWpJw95E6C9LwW0KlG0nj5+SgCiIxJ2Eroqb9sLtG1mEMbFttZIBZ13EJPvQ==",
+ "path": "system.security.cryptography.protecteddata/9.0.4",
+ "hashPath": "system.security.cryptography.protecteddata.9.0.4.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll
new file mode 100644
index 0000000..80e72ad
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe
new file mode 100644
index 0000000..b0fc955
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe differ
diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb
new file mode 100644
index 0000000..d2eb363
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb differ
diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json
new file mode 100644
index 0000000..bf15a00
--- /dev/null
+++ b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json
@@ -0,0 +1,20 @@
+{
+ "runtimeOptions": {
+ "tfm": "net10.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "10.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "10.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Reflection.NullabilityInfoContext.IsSupported": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/Microsoft.SqlServer.Server.dll b/bin/Debug/net10.0/Microsoft.SqlServer.Server.dll
new file mode 100644
index 0000000..ddeaa86
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.SqlServer.Server.dll differ
diff --git a/bin/Debug/net10.0/Microsoft.VisualStudio.SolutionPersistence.dll b/bin/Debug/net10.0/Microsoft.VisualStudio.SolutionPersistence.dll
new file mode 100644
index 0000000..16a2843
Binary files /dev/null and b/bin/Debug/net10.0/Microsoft.VisualStudio.SolutionPersistence.dll differ
diff --git a/bin/Debug/net10.0/Mono.TextTemplating.dll b/bin/Debug/net10.0/Mono.TextTemplating.dll
new file mode 100644
index 0000000..4a76511
Binary files /dev/null and b/bin/Debug/net10.0/Mono.TextTemplating.dll differ
diff --git a/bin/Debug/net10.0/Newtonsoft.Json.Bson.dll b/bin/Debug/net10.0/Newtonsoft.Json.Bson.dll
new file mode 100644
index 0000000..e9b1dd2
Binary files /dev/null and b/bin/Debug/net10.0/Newtonsoft.Json.Bson.dll differ
diff --git a/bin/Debug/net10.0/Newtonsoft.Json.dll b/bin/Debug/net10.0/Newtonsoft.Json.dll
new file mode 100644
index 0000000..d035c38
Binary files /dev/null and b/bin/Debug/net10.0/Newtonsoft.Json.dll differ
diff --git a/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll b/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll
new file mode 100644
index 0000000..adc65c3
Binary files /dev/null and b/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll differ
diff --git a/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll
new file mode 100644
index 0000000..7365f07
Binary files /dev/null and b/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ
diff --git a/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll
new file mode 100644
index 0000000..af2c3c2
Binary files /dev/null and b/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ
diff --git a/bin/Debug/net10.0/System.ClientModel.dll b/bin/Debug/net10.0/System.ClientModel.dll
new file mode 100644
index 0000000..0caead2
Binary files /dev/null and b/bin/Debug/net10.0/System.ClientModel.dll differ
diff --git a/bin/Debug/net10.0/System.CodeDom.dll b/bin/Debug/net10.0/System.CodeDom.dll
new file mode 100644
index 0000000..54c82b6
Binary files /dev/null and b/bin/Debug/net10.0/System.CodeDom.dll differ
diff --git a/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/bin/Debug/net10.0/System.Composition.AttributedModel.dll
new file mode 100644
index 0000000..2664688
Binary files /dev/null and b/bin/Debug/net10.0/System.Composition.AttributedModel.dll differ
diff --git a/bin/Debug/net10.0/System.Composition.Convention.dll b/bin/Debug/net10.0/System.Composition.Convention.dll
new file mode 100644
index 0000000..40f6537
Binary files /dev/null and b/bin/Debug/net10.0/System.Composition.Convention.dll differ
diff --git a/bin/Debug/net10.0/System.Composition.Hosting.dll b/bin/Debug/net10.0/System.Composition.Hosting.dll
new file mode 100644
index 0000000..b1cce85
Binary files /dev/null and b/bin/Debug/net10.0/System.Composition.Hosting.dll differ
diff --git a/bin/Debug/net10.0/System.Composition.Runtime.dll b/bin/Debug/net10.0/System.Composition.Runtime.dll
new file mode 100644
index 0000000..c30bbbb
Binary files /dev/null and b/bin/Debug/net10.0/System.Composition.Runtime.dll differ
diff --git a/bin/Debug/net10.0/System.Composition.TypedParts.dll b/bin/Debug/net10.0/System.Composition.TypedParts.dll
new file mode 100644
index 0000000..1556319
Binary files /dev/null and b/bin/Debug/net10.0/System.Composition.TypedParts.dll differ
diff --git a/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll b/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll
new file mode 100644
index 0000000..505f649
Binary files /dev/null and b/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll differ
diff --git a/bin/Debug/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/System.DirectoryServices.Protocols.dll
new file mode 100644
index 0000000..9eefb2d
Binary files /dev/null and b/bin/Debug/net10.0/System.DirectoryServices.Protocols.dll differ
diff --git a/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll b/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll
new file mode 100644
index 0000000..c2d8ecb
Binary files /dev/null and b/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll differ
diff --git a/bin/Debug/net10.0/System.Memory.Data.dll b/bin/Debug/net10.0/System.Memory.Data.dll
new file mode 100644
index 0000000..9282c37
Binary files /dev/null and b/bin/Debug/net10.0/System.Memory.Data.dll differ
diff --git a/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 0000000..4151fc8
Binary files /dev/null and b/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/bin/Debug/net10.0/appsettings.Development.json b/bin/Debug/net10.0/appsettings.Development.json
new file mode 100644
index 0000000..cf398c2
--- /dev/null
+++ b/bin/Debug/net10.0/appsettings.Development.json
@@ -0,0 +1,5 @@
+{
+ "ConnectionStrings": {
+ "Context": "Server=.;Database=SSP;TrustServerCertificate=True;Encrypt=False;Trusted_Connection=True"
+ }
+}
diff --git a/bin/Debug/net10.0/appsettings.json b/bin/Debug/net10.0/appsettings.json
new file mode 100644
index 0000000..005b7be
--- /dev/null
+++ b/bin/Debug/net10.0/appsettings.json
@@ -0,0 +1,12 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*",
+ "ConnectionStrings": {
+ "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI"
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..fa3b62e
Binary files /dev/null and b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..de0032e
Binary files /dev/null and b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..52ddf61
Binary files /dev/null and b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..9c9e5c3
Binary files /dev/null and b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..fe7a8c8
Binary files /dev/null and b/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/cs/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/cs/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..0b81da6
Binary files /dev/null and b/bin/Debug/net10.0/cs/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..3a2887c
Binary files /dev/null and b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..3bef0e7
Binary files /dev/null and b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..19c9b77
Binary files /dev/null and b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..5e1cc23
Binary files /dev/null and b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..71227fc
Binary files /dev/null and b/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/de/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/de/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..76ca46d
Binary files /dev/null and b/bin/Debug/net10.0/de/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..3a50733
Binary files /dev/null and b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..7b14221
Binary files /dev/null and b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..59c80c7
Binary files /dev/null and b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..de991ad
Binary files /dev/null and b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..ffe4e81
Binary files /dev/null and b/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/es/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/es/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..e340c59
Binary files /dev/null and b/bin/Debug/net10.0/es/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..4eb6122
Binary files /dev/null and b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..35b8d36
Binary files /dev/null and b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..44e0af4
Binary files /dev/null and b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..ae46f62
Binary files /dev/null and b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..2870de8
Binary files /dev/null and b/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/fr/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/fr/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..85be381
Binary files /dev/null and b/bin/Debug/net10.0/fr/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..31d7841
Binary files /dev/null and b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..4f5ea19
Binary files /dev/null and b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..f29a9ee
Binary files /dev/null and b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..c62df50
Binary files /dev/null and b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..738856c
Binary files /dev/null and b/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/it/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/it/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..4297c71
Binary files /dev/null and b/bin/Debug/net10.0/it/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..118b9b8
Binary files /dev/null and b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..8d5c43a
Binary files /dev/null and b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..0a04bbf
Binary files /dev/null and b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..c88dd66
Binary files /dev/null and b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..7400f4a
Binary files /dev/null and b/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/ja/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/ja/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..613a787
Binary files /dev/null and b/bin/Debug/net10.0/ja/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..036e931
Binary files /dev/null and b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..7305396
Binary files /dev/null and b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..7735e46
Binary files /dev/null and b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..adead79
Binary files /dev/null and b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..9f8ffe3
Binary files /dev/null and b/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/ko/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/ko/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..c98361b
Binary files /dev/null and b/bin/Debug/net10.0/ko/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..e318959
Binary files /dev/null and b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..89c6efc
Binary files /dev/null and b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..62dda99
Binary files /dev/null and b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..82b3fa2
Binary files /dev/null and b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..9db06d4
Binary files /dev/null and b/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/pl/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/pl/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..20086f0
Binary files /dev/null and b/bin/Debug/net10.0/pl/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..8be5aa7
Binary files /dev/null and b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..a263248
Binary files /dev/null and b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..04f70a6
Binary files /dev/null and b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..3a16748
Binary files /dev/null and b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..8b9f7ce
Binary files /dev/null and b/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/pt-BR/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/pt-BR/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..5b4bd1b
Binary files /dev/null and b/bin/Debug/net10.0/pt-BR/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..bd7b2a2
Binary files /dev/null and b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..6feb49f
Binary files /dev/null and b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..0b35a9d
Binary files /dev/null and b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..413ac6a
Binary files /dev/null and b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..b5e3f64
Binary files /dev/null and b/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/ru/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/ru/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..67159aa
Binary files /dev/null and b/bin/Debug/net10.0/ru/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll
new file mode 100644
index 0000000..09206c0
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll differ
diff --git a/bin/Debug/net10.0/runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll
new file mode 100644
index 0000000..7aaf95e
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll differ
diff --git a/bin/Debug/net10.0/runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net10.0/runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..0baeb08
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll differ
diff --git a/bin/Debug/net10.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net10.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100644
index 0000000..ce09630
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/bin/Debug/net10.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net10.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100644
index 0000000..a0083b1
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/bin/Debug/net10.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net10.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
new file mode 100644
index 0000000..36a2409
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ
diff --git a/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll
new file mode 100644
index 0000000..63ab7ba
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll differ
diff --git a/bin/Debug/net10.0/runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net10.0/runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..f983fa9
Binary files /dev/null and b/bin/Debug/net10.0/runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll differ
diff --git a/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..c219a07
Binary files /dev/null and b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..6697523
Binary files /dev/null and b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..79301b0
Binary files /dev/null and b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..28739df
Binary files /dev/null and b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..e5f35c2
Binary files /dev/null and b/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/tr/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/tr/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..1111f9a
Binary files /dev/null and b/bin/Debug/net10.0/tr/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..215fe77
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..53d30cc
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..62e7fc1
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..c1b4544
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..712df48
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..7eeebbc
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
new file mode 100644
index 0000000..d96f8c8
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
new file mode 100644
index 0000000..23c31b7
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
new file mode 100644
index 0000000..65f24ab
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
new file mode 100644
index 0000000..7d3ed5d
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
new file mode 100644
index 0000000..14fee21
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ
diff --git a/bin/Debug/net10.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll
new file mode 100644
index 0000000..c1aa37b
Binary files /dev/null and b/bin/Debug/net10.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll differ
diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json
index e0607b5..55b5497 100644
--- a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json
+++ b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json
@@ -24,9 +24,6 @@
}
},
"AutoMapper/12.0.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0"
- },
"runtime": {
"lib/netstandard2.1/AutoMapper.dll": {
"assemblyVersion": "12.0.0.0",
@@ -36,8 +33,7 @@
},
"AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
"dependencies": {
- "AutoMapper": "12.0.1",
- "Microsoft.Extensions.Options": "7.0.0"
+ "AutoMapper": "12.0.1"
},
"runtime": {
"lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
@@ -49,12 +45,7 @@
"Azure.Core/1.24.0": {
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "System.Diagnostics.DiagnosticSource": "5.0.0",
- "System.Memory.Data": "1.0.2",
- "System.Numerics.Vectors": "4.5.0",
- "System.Text.Encodings.Web": "7.0.0",
- "System.Text.Json": "7.0.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
+ "System.Memory.Data": "1.0.2"
},
"runtime": {
"lib/net5.0/Azure.Core.dll": {
@@ -68,10 +59,7 @@
"Azure.Core": "1.24.0",
"Microsoft.Identity.Client": "4.45.0",
"Microsoft.Identity.Client.Extensions.Msal": "2.19.3",
- "System.Memory": "4.5.5",
- "System.Security.Cryptography.ProtectedData": "6.0.0",
- "System.Text.Json": "7.0.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
+ "System.Security.Cryptography.ProtectedData": "6.0.0"
},
"runtime": {
"lib/netstandard2.0/Azure.Identity.dll": {
@@ -623,7 +611,6 @@
"Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Connections.Abstractions": "7.0.9",
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
"System.DirectoryServices.Protocols": "7.0.1"
},
"runtime": {
@@ -635,8 +622,7 @@
},
"Microsoft.AspNetCore.Connections.Abstractions/7.0.9": {
"dependencies": {
- "Microsoft.Extensions.Features": "7.0.9",
- "System.IO.Pipelines": "7.0.0"
+ "Microsoft.Extensions.Features": "7.0.9"
},
"runtime": {
"lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
@@ -647,7 +633,6 @@
},
"Microsoft.AspNetCore.JsonPatch/7.0.9": {
"dependencies": {
- "Microsoft.CSharp": "4.7.0",
"Newtonsoft.Json": "13.0.1"
},
"runtime": {
@@ -701,14 +686,8 @@
"dependencies": {
"Microsoft.Build.Framework": "17.3.2",
"Microsoft.NET.StringTools": "17.3.2",
- "System.Collections.Immutable": "6.0.0",
"System.Configuration.ConfigurationManager": "6.0.0",
- "System.Reflection.Metadata": "6.0.0",
- "System.Reflection.MetadataLoadContext": "6.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Text.Json": "7.0.0",
- "System.Threading.Tasks.Dataflow": "6.0.0"
+ "System.Reflection.MetadataLoadContext": "6.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.Build.dll": {
@@ -728,7 +707,6 @@
}
}
},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
"Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
@@ -738,15 +716,6 @@
}
},
"Microsoft.CodeAnalysis.Common/4.4.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Memory": "4.5.5",
- "System.Reflection.Metadata": "6.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
"runtime": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
"assemblyVersion": "4.4.0.0",
@@ -961,8 +930,7 @@
},
"Microsoft.CodeAnalysis.Elfie/1.0.0": {
"dependencies": {
- "System.Configuration.ConfigurationManager": "6.0.0",
- "System.Data.DataSetExtensions": "4.5.0"
+ "System.Configuration.ConfigurationManager": "6.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {
@@ -978,9 +946,7 @@
"Microsoft.CodeAnalysis.Elfie": "1.0.0",
"Microsoft.CodeAnalysis.Scripting.Common": "4.4.0",
"Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0",
- "Microsoft.DiaSymReader": "1.4.0",
- "System.Text.Json": "7.0.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
+ "Microsoft.DiaSymReader": "1.4.0"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {
@@ -1100,8 +1066,7 @@
"Humanizer.Core": "2.14.1",
"Microsoft.Bcl.AsyncInterfaces": "6.0.0",
"Microsoft.CodeAnalysis.Common": "4.4.0",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "7.0.0"
+ "System.Composition": "6.0.0"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
@@ -1151,7 +1116,6 @@
}
}
},
- "Microsoft.CSharp/4.7.0": {},
"Microsoft.Data.SqlClient/5.0.2": {
"dependencies": {
"Azure.Identity": "1.6.0",
@@ -1160,17 +1124,8 @@
"Microsoft.IdentityModel.JsonWebTokens": "6.21.0",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0",
"Microsoft.SqlServer.Server": "1.0.0",
- "Microsoft.Win32.Registry": "5.0.0",
- "System.Buffers": "4.5.1",
"System.Configuration.ConfigurationManager": "6.0.0",
- "System.Diagnostics.DiagnosticSource": "5.0.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime.Caching": "5.0.0",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Text.Encodings.Web": "7.0.0"
+ "System.Runtime.Caching": "5.0.0"
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
@@ -1218,9 +1173,6 @@
}
},
"Microsoft.DiaSymReader/1.4.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1"
- },
"runtime": {
"lib/netstandard1.1/Microsoft.DiaSymReader.dll": {
"assemblyVersion": "1.4.0.0",
@@ -1244,11 +1196,7 @@
},
"Microsoft.EntityFrameworkCore/7.0.9": {
"dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9",
- "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9",
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.Logging": "7.0.0"
+ "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
@@ -1265,7 +1213,6 @@
}
}
},
- "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {},
"Microsoft.EntityFrameworkCore.Design/7.0.9": {
"dependencies": {
"Humanizer.Core": "2.14.1",
@@ -1282,8 +1229,7 @@
},
"Microsoft.EntityFrameworkCore.Relational/7.0.9": {
"dependencies": {
- "Microsoft.EntityFrameworkCore": "7.0.9",
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ "Microsoft.EntityFrameworkCore": "7.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
@@ -1309,37 +1255,7 @@
"Microsoft.EntityFrameworkCore.Design": "7.0.9"
}
},
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {},
"Microsoft.Extensions.DependencyModel/7.0.0": {
- "dependencies": {
- "System.Text.Encodings.Web": "7.0.0",
- "System.Text.Json": "7.0.0"
- },
"runtime": {
"lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
"assemblyVersion": "7.0.0.0",
@@ -1355,22 +1271,6 @@
}
}
},
- "Microsoft.Extensions.Logging/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0"
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {},
- "Microsoft.Extensions.Options/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- }
- },
- "Microsoft.Extensions.Primitives/7.0.0": {},
"Microsoft.Identity.Client/4.45.0": {
"dependencies": {
"Microsoft.IdentityModel.Abstractions": "6.21.0"
@@ -1450,9 +1350,7 @@
},
"Microsoft.IdentityModel.Tokens/6.21.0": {
"dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "Microsoft.IdentityModel.Logging": "6.21.0",
- "System.Security.Cryptography.Cng": "5.0.0"
+ "Microsoft.IdentityModel.Logging": "6.21.0"
},
"runtime": {
"lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
@@ -1462,10 +1360,6 @@
}
},
"Microsoft.NET.StringTools/17.3.2": {
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
"runtime": {
"lib/net6.0/Microsoft.NET.StringTools.dll": {
"assemblyVersion": "1.0.0.0",
@@ -1473,8 +1367,6 @@
}
}
},
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.OpenApi/1.4.3": {
"runtime": {
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
@@ -1493,7 +1385,6 @@
},
"Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": {
"dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8"
},
"runtime": {
@@ -1505,7 +1396,6 @@
},
"Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": {
"dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8",
"Newtonsoft.Json": "13.0.1"
},
@@ -1580,19 +1470,6 @@
}
}
},
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "Microsoft.Win32.Registry/5.0.0": {
- "dependencies": {
- "System.Security.AccessControl": "6.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- }
- },
"Microsoft.Win32.SystemEvents/6.0.0": {
"runtime": {
"lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
@@ -1620,54 +1497,6 @@
}
}
},
- "NETStandard.Library/1.6.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.Compression.ZipFile": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Net.Http": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0"
- }
- },
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
@@ -1747,9 +1576,7 @@
"dependencies": {
"Newtonsoft.Json": "13.0.1",
"NuGet.Configuration": "6.3.1",
- "NuGet.Versioning": "6.3.1",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Cryptography.Pkcs": "5.0.0"
+ "NuGet.Versioning": "6.3.1"
},
"runtime": {
"lib/net5.0/NuGet.Packaging.dll": {
@@ -1788,57 +1615,8 @@
}
}
},
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"Swashbuckle.AspNetCore/6.5.0": {
"dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
"Swashbuckle.AspNetCore.Swagger": "6.5.0",
"Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
"Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
@@ -1874,12 +1652,6 @@
}
}
},
- "System.AppContext/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Buffers/4.5.1": {},
"System.CodeDom/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.CodeDom.dll": {
@@ -1888,32 +1660,6 @@
}
}
},
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
"System.Composition/6.0.0": {
"dependencies": {
"System.Composition.AttributedModel": "6.0.0",
@@ -1986,38 +1732,6 @@
}
}
},
- "System.Console/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Data.DataSetExtensions/4.5.0": {},
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/5.0.0": {},
- "System.Diagnostics.Tools/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
"System.DirectoryServices.Protocols/7.0.1": {
"runtime": {
"lib/net7.0/System.DirectoryServices.Protocols.dll": {
@@ -2071,32 +1785,6 @@
}
}
},
- "System.Formats.Asn1/5.0.0": {},
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- }
- },
"System.IdentityModel.Tokens.Jwt/6.21.0": {
"dependencies": {
"Microsoft.IdentityModel.JsonWebTokens": "6.21.0",
@@ -2109,101 +1797,7 @@
}
}
},
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Buffers": "4.5.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.IO.Compression": "4.3.0"
- }
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "dependencies": {
- "System.Buffers": "4.5.1",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.IO.Pipelines/7.0.0": {},
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Memory/4.5.5": {},
"System.Memory.Data/1.0.2": {
- "dependencies": {
- "System.Text.Encodings.Web": "7.0.0",
- "System.Text.Json": "7.0.0"
- },
"runtime": {
"lib/netstandard2.0/System.Memory.Data.dll": {
"assemblyVersion": "1.0.2.0",
@@ -2211,115 +1805,7 @@
}
}
},
- "System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "5.0.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Net.Sockets/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Numerics.Vectors/4.5.0": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/6.0.0": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- }
- },
"System.Reflection.MetadataLoadContext/6.0.0": {
- "dependencies": {
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.0"
- },
"runtime": {
"lib/net6.0/System.Reflection.MetadataLoadContext.dll": {
"assemblyVersion": "6.0.0.0",
@@ -2327,34 +1813,6 @@
}
}
},
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
"System.Runtime.Caching/5.0.0": {
"dependencies": {
"System.Configuration.ConfigurationManager": "6.0.0"
@@ -2374,141 +1832,6 @@
}
}
},
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Security.AccessControl/6.0.0": {},
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "dependencies": {
- "System.Formats.Asn1": "5.0.0"
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "System.Security.Cryptography.Pkcs/5.0.0": {
- "dependencies": {
- "System.Formats.Asn1": "5.0.0",
- "System.Security.Cryptography.Cng": "5.0.0"
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
"System.Security.Cryptography.ProtectedData/6.0.0": {
"runtime": {
"lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
@@ -2525,38 +1848,8 @@
}
}
},
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
"System.Security.Permissions/6.0.0": {
"dependencies": {
- "System.Security.AccessControl": "6.0.0",
"System.Windows.Extensions": "6.0.0"
},
"runtime": {
@@ -2566,60 +1859,6 @@
}
}
},
- "System.Security.Principal.Windows/5.0.0": {},
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.Encodings.Web/7.0.0": {},
- "System.Text.Json/7.0.0": {
- "dependencies": {
- "System.Text.Encodings.Web": "7.0.0"
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Dataflow/6.0.0": {},
- "System.Threading.Tasks.Extensions/4.5.4": {},
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
"System.Windows.Extensions/6.0.0": {
"dependencies": {
"System.Drawing.Common": "6.0.0"
@@ -2638,41 +1877,6 @@
"fileVersion": "6.0.21.52210"
}
}
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- }
}
}
},
@@ -3123,13 +2327,6 @@
"path": "microsoft.build.framework/17.3.2",
"hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512"
},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
- },
"Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
"type": "package",
"serviceable": true,
@@ -3200,13 +2397,6 @@
"path": "microsoft.codeanalysis.workspaces.common/4.4.0",
"hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512"
},
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
- "path": "microsoft.csharp/4.7.0",
- "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
- },
"Microsoft.Data.SqlClient/5.0.2": {
"type": "package",
"serviceable": true,
@@ -3249,13 +2439,6 @@
"path": "microsoft.entityframeworkcore.abstractions/7.0.9",
"hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512"
},
- "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==",
- "path": "microsoft.entityframeworkcore.analyzers/7.0.9",
- "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512"
- },
"Microsoft.EntityFrameworkCore.Design/7.0.9": {
"type": "package",
"serviceable": true,
@@ -3284,48 +2467,6 @@
"path": "microsoft.entityframeworkcore.tools/7.0.9",
"hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512"
},
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==",
- "path": "microsoft.extensions.caching.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==",
- "path": "microsoft.extensions.caching.memory/7.0.0",
- "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
- "path": "microsoft.extensions.configuration.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
- "path": "microsoft.extensions.dependencyinjection/7.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512"
- },
"Microsoft.Extensions.DependencyModel/7.0.0": {
"type": "package",
"serviceable": true,
@@ -3340,34 +2481,6 @@
"path": "microsoft.extensions.features/7.0.9",
"hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512"
},
- "Microsoft.Extensions.Logging/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
- "path": "microsoft.extensions.logging/7.0.0",
- "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
- "path": "microsoft.extensions.logging.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
- "path": "microsoft.extensions.options/7.0.0",
- "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
- "path": "microsoft.extensions.primitives/7.0.0",
- "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
- },
"Microsoft.Identity.Client/4.45.0": {
"type": "package",
"serviceable": true,
@@ -3431,20 +2544,6 @@
"path": "microsoft.net.stringtools/17.3.2",
"hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512"
},
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
"Microsoft.OpenApi/1.4.3": {
"type": "package",
"serviceable": true,
@@ -3508,20 +2607,6 @@
"path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8",
"hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512"
},
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "path": "microsoft.win32.primitives/4.3.0",
- "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
- "path": "microsoft.win32.registry/5.0.0",
- "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
- },
"Microsoft.Win32.SystemEvents/6.0.0": {
"type": "package",
"serviceable": true,
@@ -3536,13 +2621,6 @@
"path": "mono.texttemplating/2.2.1",
"hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
},
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "path": "netstandard.library/1.6.1",
- "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
- },
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,
@@ -3620,118 +2698,6 @@
"path": "nuget.versioning/6.3.1",
"hashPath": "nuget.versioning.6.3.1.nupkg.sha512"
},
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "path": "runtime.native.system.io.compression/4.3.0",
- "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
"Swashbuckle.AspNetCore/6.5.0": {
"type": "package",
"serviceable": true,
@@ -3760,20 +2726,6 @@
"path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
"hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
},
- "System.AppContext/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "path": "system.appcontext/4.3.0",
- "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
- "path": "system.buffers/4.5.1",
- "hashPath": "system.buffers.4.5.1.nupkg.sha512"
- },
"System.CodeDom/4.4.0": {
"type": "package",
"serviceable": true,
@@ -3781,27 +2733,6 @@
"path": "system.codedom/4.4.0",
"hashPath": "system.codedom.4.4.0.nupkg.sha512"
},
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
- "path": "system.collections.immutable/6.0.0",
- "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
- },
"System.Composition/6.0.0": {
"type": "package",
"serviceable": true,
@@ -3851,48 +2782,6 @@
"path": "system.configuration.configurationmanager/6.0.0",
"hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512"
},
- "System.Console/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "path": "system.console/4.3.0",
- "hashPath": "system.console.4.3.0.nupkg.sha512"
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
- "path": "system.data.datasetextensions/4.5.0",
- "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
- "path": "system.diagnostics.diagnosticsource/5.0.0",
- "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512"
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "path": "system.diagnostics.tools/4.3.0",
- "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
"System.DirectoryServices.Protocols/7.0.1": {
"type": "package",
"serviceable": true,
@@ -3907,34 +2796,6 @@
"path": "system.drawing.common/6.0.0",
"hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
},
- "System.Formats.Asn1/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
- "path": "system.formats.asn1/5.0.0",
- "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
"System.IdentityModel.Tokens.Jwt/6.21.0": {
"type": "package",
"serviceable": true,
@@ -3942,69 +2803,6 @@
"path": "system.identitymodel.tokens.jwt/6.21.0",
"hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512"
},
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "path": "system.io.compression/4.3.0",
- "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "path": "system.io.compression.zipfile/4.3.0",
- "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.IO.Pipelines/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
- "path": "system.io.pipelines/7.0.0",
- "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "path": "system.memory/4.5.5",
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
- },
"System.Memory.Data/1.0.2": {
"type": "package",
"serviceable": true,
@@ -4012,83 +2810,6 @@
"path": "system.memory.data/1.0.2",
"hashPath": "system.memory.data.1.0.2.nupkg.sha512"
},
- "System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "path": "system.net.http/4.3.0",
- "hashPath": "system.net.http.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "path": "system.net.sockets/4.3.0",
- "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "path": "system.numerics.vectors/4.5.0",
- "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==",
- "path": "system.reflection.metadata/6.0.0",
- "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512"
- },
"System.Reflection.MetadataLoadContext/6.0.0": {
"type": "package",
"serviceable": true,
@@ -4096,34 +2817,6 @@
"path": "system.reflection.metadataloadcontext/6.0.0",
"hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512"
},
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
"System.Runtime.Caching/5.0.0": {
"type": "package",
"serviceable": true,
@@ -4131,104 +2824,6 @@
"path": "system.runtime.caching/5.0.0",
"hashPath": "system.runtime.caching.5.0.0.nupkg.sha512"
},
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Security.AccessControl/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
- "path": "system.security.accesscontrol/6.0.0",
- "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
- "path": "system.security.cryptography.cng/5.0.0",
- "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Pkcs/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
- "path": "system.security.cryptography.pkcs/5.0.0",
- "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
"System.Security.Cryptography.ProtectedData/6.0.0": {
"type": "package",
"serviceable": true,
@@ -4236,13 +2831,6 @@
"path": "system.security.cryptography.protecteddata/6.0.0",
"hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
},
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
"System.Security.Permissions/6.0.0": {
"type": "package",
"serviceable": true,
@@ -4250,110 +2838,12 @@
"path": "system.security.permissions/6.0.0",
"hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
},
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "path": "system.security.principal.windows/5.0.0",
- "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "path": "system.text.encoding.extensions/4.3.0",
- "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
- },
- "System.Text.Encodings.Web/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
- "path": "system.text.encodings.web/7.0.0",
- "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
- },
- "System.Text.Json/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
- "path": "system.text.json/7.0.0",
- "hashPath": "system.text.json.7.0.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "path": "system.text.regularexpressions/4.3.0",
- "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Dataflow/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==",
- "path": "system.threading.tasks.dataflow/6.0.0",
- "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "path": "system.threading.tasks.extensions/4.5.4",
- "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "path": "system.threading.timer/4.3.0",
- "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
- },
"System.Windows.Extensions/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
"path": "system.windows.extensions/6.0.0",
"hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "path": "system.xml.readerwriter/4.3.0",
- "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "path": "system.xml.xdocument/4.3.0",
- "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
}
}
}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll
index eb4f51e..3daef64 100644
Binary files a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll and b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe
index 17fcb9f..fe6c14a 100644
Binary files a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe and b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe differ
diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb
index 53e007f..6450e35 100644
Binary files a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb and b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb differ
diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/appsettings.Development.json b/bin/Debug/net7.0/appsettings.Development.json
index 0c208ae..17da08f 100644
--- a/bin/Debug/net7.0/appsettings.Development.json
+++ b/bin/Debug/net7.0/appsettings.Development.json
@@ -1,8 +1,5 @@
{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
+ "ConnectionStrings": {
+ "Context": "Server=localhost;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI"
}
}
diff --git a/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..925b135
--- /dev/null
+++ b/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
diff --git a/obj/Debug/net10.0/Microsof.CC767D45.Up2Date b/obj/Debug/net10.0/Microsof.CC767D45.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
new file mode 100644
index 0000000..a413da7
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("9c90fee1-4576-4f20-be83-715728173b96")]
+[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft.SelfService.Portal.Core.API")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3bfc79e6d925b38681a51cb5f98fc6ed6e380785")]
+[assembly: System.Reflection.AssemblyProductAttribute("Microsoft.SelfService.Portal.Core.API")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft.SelfService.Portal.Core.API")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..f339b2c
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+58bef70d975c7d12b10dd73743c5cc2cbfe0b6b90a123137f9ad506dd2ccb8dd
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..cc74c7d
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,32 @@
+is_global = true
+build_property.TargetFramework = net10.0
+build_property.TargetFramework = net10.0
+build_property.TargetPlatformMinVersion =
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.TargetFrameworkIdentifier = .NETCoreApp
+build_property.TargetFrameworkVersion = v10.0
+build_property.EntryPointFilePath =
+build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API
+build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API
+build_property.ProjectDir = F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 10.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API
+build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 10.0
+build_property.EnableCodeStyleSeverity =
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs
new file mode 100644
index 0000000..5e6145d
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+global using Microsoft.AspNetCore.Builder;
+global using Microsoft.AspNetCore.Hosting;
+global using Microsoft.AspNetCore.Http;
+global using Microsoft.AspNetCore.Routing;
+global using Microsoft.Extensions.Configuration;
+global using Microsoft.Extensions.DependencyInjection;
+global using Microsoft.Extensions.Hosting;
+global using Microsoft.Extensions.Logging;
+global using System;
+global using System.Collections.Generic;
+global using System.IO;
+global using System.Linq;
+global using System.Net.Http;
+global using System.Net.Http.Json;
+global using System.Threading;
+global using System.Threading.Tasks;
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..7a8df11
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache
new file mode 100644
index 0000000..58f2197
Binary files /dev/null and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache differ
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..961394f
Binary files /dev/null and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..4b75000
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+16b0a4bc0204b202006dccf5c846548e730a6b235e2770dcdc089a9a355aa5df
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..eb80be7
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt
@@ -0,0 +1,170 @@
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rpswa.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\appsettings.Development.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\appsettings.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.exe
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.deps.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.pdb
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\AutoMapper.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Azure.Core.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Azure.Identity.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Humanizer.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.Authentication.Negotiate.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.JsonPatch.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.OpenApi.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Bcl.AsyncInterfaces.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Bcl.Cryptography.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.CSharp.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Data.SqlClient.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Design.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.SqlServer.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Extensions.DependencyModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Identity.Client.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Identity.Client.Extensions.Msal.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Abstractions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.JsonWebTokens.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Logging.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Tokens.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.OpenApi.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SqlServer.Server.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Mono.TextTemplating.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Newtonsoft.Json.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Newtonsoft.Json.Bson.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Swashbuckle.AspNetCore.Swagger.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Swashbuckle.AspNetCore.SwaggerGen.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Swashbuckle.AspNetCore.SwaggerUI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.ClientModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.CodeDom.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.AttributedModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.Convention.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.Hosting.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.Runtime.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.TypedParts.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Configuration.ConfigurationManager.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.IdentityModel.Tokens.Jwt.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Memory.Data.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Security.Cryptography.ProtectedData.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\unix\lib\net9.0\Microsoft.Data.SqlClient.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win\lib\net9.0\Microsoft.Data.SqlClient.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\linux\lib\net10.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\osx\lib\net10.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win\lib\net10.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjimswa.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjsmrazor.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.build.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.build.json.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.development.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.build.endpoints.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\swae.build.ex.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsof.CC767D45.Up2Date
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\refint\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.pdb
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\ref\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Build.Framework.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.VisualStudio.SolutionPersistence.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll
new file mode 100644
index 0000000..e7e5029
Binary files /dev/null and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
new file mode 100644
index 0000000..f5a55c3
--- /dev/null
+++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
@@ -0,0 +1 @@
+b374c518f75ce535177eb6d05d7832870b68ce27dd704f2108b142d5d260f2ca
diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb
new file mode 100644
index 0000000..cf63621
Binary files /dev/null and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb differ
diff --git a/obj/Debug/net10.0/apphost.exe b/obj/Debug/net10.0/apphost.exe
new file mode 100644
index 0000000..b0fc955
Binary files /dev/null and b/obj/Debug/net10.0/apphost.exe differ
diff --git a/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll
new file mode 100644
index 0000000..500ec6f
Binary files /dev/null and b/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll
new file mode 100644
index 0000000..500ec6f
Binary files /dev/null and b/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
new file mode 100644
index 0000000..136d9d9
--- /dev/null
+++ b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"ILSx+4dCyQzML0PLL1+iAfuwi4o6nolNPq04aGa56YY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
new file mode 100644
index 0000000..0f8584e
--- /dev/null
+++ b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"oEWZHnagBW83RxQSHOHII+WmGDIpscet4eQQc08gJ10=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/rpswa.dswa.cache.json b/obj/Debug/net10.0/rpswa.dswa.cache.json
new file mode 100644
index 0000000..eb69a58
--- /dev/null
+++ b/obj/Debug/net10.0/rpswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"SPJqT2LbTU7DC+nmzNGyx1ZmFtOV+aXZpHUist0ngzg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/obj/Debug/net10.0/staticwebassets.build.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/obj/Debug/net10.0/staticwebassets.build.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.build.json b/obj/Debug/net10.0/staticwebassets.build.json
new file mode 100644
index 0000000..840a86d
--- /dev/null
+++ b/obj/Debug/net10.0/staticwebassets.build.json
@@ -0,0 +1 @@
+{"Version":1,"Hash":"cHXLeIaOvbW9DoRmMcKQETs40b/kpgFCBjYp2tugVCo=","Source":"Microsoft.SelfService.Portal.Core.API","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Debug/net10.0/staticwebassets.build.json.cache b/obj/Debug/net10.0/staticwebassets.build.json.cache
new file mode 100644
index 0000000..8b12fbc
--- /dev/null
+++ b/obj/Debug/net10.0/staticwebassets.build.json.cache
@@ -0,0 +1 @@
+cHXLeIaOvbW9DoRmMcKQETs40b/kpgFCBjYp2tugVCo=
\ No newline at end of file
diff --git a/obj/Debug/net10.0/swae.build.ex.cache b/obj/Debug/net10.0/swae.build.ex.cache
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net7.0/Microsof.CC767D45.Up2Date b/obj/Debug/net7.0/Microsof.CC767D45.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
index 599bf19..a413da7 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
@@ -1,10 +1,9 @@
//------------------------------------------------------------------------------
//
-// Dieser Code wurde von einem Tool generiert.
-// Laufzeitversion:4.0.30319.42000
+// This code was generated by a tool.
//
-// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
-// der Code erneut generiert wird.
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
//
//------------------------------------------------------------------------------
@@ -15,10 +14,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft.SelfService.Portal.Core.API")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3bfc79e6d925b38681a51cb5f98fc6ed6e380785")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft.SelfService.Portal.Core.API")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft.SelfService.Portal.Core.API")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-// Von der MSBuild WriteCodeFragment-Klasse generiert.
+// Generated by the MSBuild WriteCodeFragment class.
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
index 22befc2..f339b2c 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
@@ -1 +1 @@
-df679a2a1bc339f5eb82553a4b89836f65e07ec1350ffba1687769f3bb52dab0
+58bef70d975c7d12b10dd73743c5cc2cbfe0b6b90a123137f9ad506dd2ccb8dd
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
index b4e5130..baea237 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,19 +1,24 @@
is_global = true
build_property.TargetFramework = net7.0
+build_property.TargetFrameworkIdentifier = .NETCoreApp
+build_property.TargetFrameworkVersion = v7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
+build_property.EntryPointFilePath =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API
build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API
-build_property.ProjectDir = C:\Projekte\Microsoft.SelfService.Portal.Core.API\
+build_property.ProjectDir = F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 7.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = C:\Projekte\Microsoft.SelfService.Portal.Core.API
+build_property.MSBuildProjectDirectory = F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API
build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 7.0
+build_property.EnableCodeStyleSeverity =
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs
index 025530a..5e6145d 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs
@@ -1,17 +1,17 @@
//
-global using global::Microsoft.AspNetCore.Builder;
-global using global::Microsoft.AspNetCore.Hosting;
-global using global::Microsoft.AspNetCore.Http;
-global using global::Microsoft.AspNetCore.Routing;
-global using global::Microsoft.Extensions.Configuration;
-global using global::Microsoft.Extensions.DependencyInjection;
-global using global::Microsoft.Extensions.Hosting;
-global using global::Microsoft.Extensions.Logging;
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Net.Http.Json;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
+global using Microsoft.AspNetCore.Builder;
+global using Microsoft.AspNetCore.Hosting;
+global using Microsoft.AspNetCore.Http;
+global using Microsoft.AspNetCore.Routing;
+global using Microsoft.Extensions.Configuration;
+global using Microsoft.Extensions.DependencyInjection;
+global using Microsoft.Extensions.Hosting;
+global using Microsoft.Extensions.Logging;
+global using System;
+global using System.Collections.Generic;
+global using System.IO;
+global using System.Linq;
+global using System.Net.Http;
+global using System.Net.Http.Json;
+global using System.Threading;
+global using System.Threading.Tasks;
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
index f9ccf61..7a8df11 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache
index f3ac471..220a01f 100644
Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache and b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache differ
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache
index 9eb28d2..8ebeaa7 100644
Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache and b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
index 17d8af7..54ed6c8 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-e95e3112c4fe754de2838be126d66536b82e4ef9
+d8668c8d4561b49549c8e5ac01ebabee85e844537454986f7a21667b5e362343
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt
index e8b295a..ffb30a6 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt
@@ -530,3 +530,272 @@ C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Por
C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb
C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\refint\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.exe
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.deps.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Core.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Identity.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Humanizer.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.Negotiate.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Connections.Abstractions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.Framework.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Features.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Elfie.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Features.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Scripting.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Workspaces.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DiaSymReader.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DotNet.Scaffolding.Shared.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.Features.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.NET.StringTools.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.OpenApi.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\dotnet-aspnet-codegenerator-design.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Mono.TextTemplating.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Common.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Configuration.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.DependencyResolver.Core.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Frameworks.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.LibraryModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Packaging.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.ProjectModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Protocol.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Versioning.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.CodeDom.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.AttributedModel.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Convention.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Hosting.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Runtime.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.TypedParts.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Drawing.Common.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Memory.Data.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Reflection.MetadataLoadContext.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Runtime.Caching.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Permissions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Windows.Extensions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\af\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ar\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\az\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bg\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bn-BD\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\da\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\el\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fa\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fi-FI\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr-BE\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\he\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hr\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hu\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hy\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\id\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\is\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko-KR\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ku\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\lv\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ms-MY\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\mt\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb-NO\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nl\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ro\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sk\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sl\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr-Latn\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sv\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\th-TH\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uk\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Cyrl-UZ\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Latn-UZ\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\vi\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-CN\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Humanizer.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rpswa.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rjimswa.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rjsmrazor.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rjsmcshtml.dswa.cache.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.json.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.development.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.endpoints.json
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\swae.build.ex.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsof.CC767D45.Up2Date
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll
+F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.Development.json
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll
index eb4f51e..3daef64 100644
Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll and b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
index b0884fd..389e950 100644
--- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
+++ b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache
@@ -1 +1 @@
-3cb8e051b5ea219b26e25b3be150f34a67516aa4
+68a5687a54a4fe0213420329a94d8d64a6d5d47ee79f3b3a1f36972c117abc90
diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb
index 53e007f..6450e35 100644
Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb and b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb differ
diff --git a/obj/Debug/net7.0/apphost.exe b/obj/Debug/net7.0/apphost.exe
index 17fcb9f..fe6c14a 100644
Binary files a/obj/Debug/net7.0/apphost.exe and b/obj/Debug/net7.0/apphost.exe differ
diff --git a/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll
index fc9e14e..c51341f 100644
Binary files a/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll and b/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll
index fc9e14e..c51341f 100644
Binary files a/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll and b/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll differ
diff --git a/obj/Debug/net7.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net7.0/rjsmcshtml.dswa.cache.json
new file mode 100644
index 0000000..6cbf85e
--- /dev/null
+++ b/obj/Debug/net7.0/rjsmcshtml.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"ILSx+4dCyQzML0PLL1+iAfuwi4o6nolNPq04aGa56YY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["8V3deuLyb/3rx0bsEvDDgnKEO9iLLhmh5lyW9Il\u002B9rM=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","hwvLNWr96ZmBNh2SH7Zg/dVvvoNLMVvd2EPF9d7qGjg="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/rjsmrazor.dswa.cache.json b/obj/Debug/net7.0/rjsmrazor.dswa.cache.json
new file mode 100644
index 0000000..91a97b6
--- /dev/null
+++ b/obj/Debug/net7.0/rjsmrazor.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"oEWZHnagBW83RxQSHOHII+WmGDIpscet4eQQc08gJ10=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["8V3deuLyb/3rx0bsEvDDgnKEO9iLLhmh5lyW9Il\u002B9rM=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","hwvLNWr96ZmBNh2SH7Zg/dVvvoNLMVvd2EPF9d7qGjg="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/rpswa.dswa.cache.json b/obj/Debug/net7.0/rpswa.dswa.cache.json
new file mode 100644
index 0000000..2aa72ee
--- /dev/null
+++ b/obj/Debug/net7.0/rpswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"SPJqT2LbTU7DC+nmzNGyx1ZmFtOV+aXZpHUist0ngzg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["8V3deuLyb/3rx0bsEvDDgnKEO9iLLhmh5lyW9Il\u002B9rM=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets.build.endpoints.json b/obj/Debug/net7.0/staticwebassets.build.endpoints.json
new file mode 100644
index 0000000..5576e88
--- /dev/null
+++ b/obj/Debug/net7.0/staticwebassets.build.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json
index c6d3b26..840a86d 100644
--- a/obj/Debug/net7.0/staticwebassets.build.json
+++ b/obj/Debug/net7.0/staticwebassets.build.json
@@ -1,11 +1 @@
-{
- "Version": 1,
- "Hash": "RfuVwFSrmDL42KLW9n4tsmvdD4doyOaYg171K58Ic/s=",
- "Source": "Microsoft.SelfService.Portal.Core.API",
- "BasePath": "_content/Microsoft.SelfService.Portal.Core.API",
- "Mode": "Default",
- "ManifestType": "Build",
- "ReferencedProjectsConfiguration": [],
- "DiscoveryPatterns": [],
- "Assets": []
-}
\ No newline at end of file
+{"Version":1,"Hash":"cHXLeIaOvbW9DoRmMcKQETs40b/kpgFCBjYp2tugVCo=","Source":"Microsoft.SelfService.Portal.Core.API","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets.build.json.cache b/obj/Debug/net7.0/staticwebassets.build.json.cache
new file mode 100644
index 0000000..8b12fbc
--- /dev/null
+++ b/obj/Debug/net7.0/staticwebassets.build.json.cache
@@ -0,0 +1 @@
+cHXLeIaOvbW9DoRmMcKQETs40b/kpgFCBjYp2tugVCo=
\ No newline at end of file
diff --git a/obj/Debug/net7.0/swae.build.ex.cache b/obj/Debug/net7.0/swae.build.ex.cache
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json
index 057b509..ef01dcc 100644
--- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json
+++ b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json
@@ -1,33 +1,31 @@
{
"format": 1,
"restore": {
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj": {}
+ "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj": {}
},
"projects": {
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj": {
+ "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
+ "projectUniqueName": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
"projectName": "Microsoft.SelfService.Portal.Core.API",
- "projectPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
- "packagesPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\obj\\",
+ "projectPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
+ "packagesPath": "C:\\Users\\torst\\.nuget\\packages\\",
+ "outputPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ "C:\\Users\\torst\\AppData\\Roaming\\NuGet\\NuGet.Config"
],
"originalTargetFrameworks": [
- "net7.0"
+ "net10.0"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\sdk\\7.0.304\\Sdks\\Microsoft.NET.Sdk.Web\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "net7.0": {
- "targetAlias": "net7.0",
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
"projectReferences": {}
}
},
@@ -35,53 +33,58 @@
"warnAsError": [
"NU1605"
]
- }
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.300"
},
"frameworks": {
- "net7.0": {
- "targetAlias": "net7.0",
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
"dependencies": {
"AutoMapper": {
"target": "Package",
- "version": "[12.0.1, )"
- },
- "AutoMapper.Extensions.Microsoft.DependencyInjection": {
- "target": "Package",
- "version": "[12.0.1, )"
+ "version": "[16.1.1, )"
},
"Microsoft.AspNetCore.Authentication.Negotiate": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.AspNetCore.OpenApi": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[10.0.8, )"
},
"Microsoft.EntityFrameworkCore.SqlServer": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.EntityFrameworkCore.Tools": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
- "version": "[7.0.9, )"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
- "target": "Package",
- "version": "[7.0.8, )"
+ "version": "[10.0.8, )"
},
"Swashbuckle.AspNetCore": {
"target": "Package",
- "version": "[6.5.0, )"
+ "version": "[10.1.7, )"
}
},
"imports": [
@@ -103,7 +106,421 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.300/PortableRuntimeIdentifierGraph.json",
+ "packagesToPrune": {
+ "Microsoft.AspNetCore": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
+ "Microsoft.AspNetCore.App": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Cors": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
+ "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Identity": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Localization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
+ "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
+ "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Razor": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
+ "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
+ "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Routing": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Session": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
+ "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
+ "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
+ "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
+ "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
+ "Microsoft.CSharp": "(,4.7.32767]",
+ "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Features": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
+ "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Http": "(,10.0.32767]",
+ "Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
+ "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
+ "Microsoft.Extensions.Localization": "(,10.0.32767]",
+ "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
+ "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
+ "Microsoft.Extensions.Options": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
+ "Microsoft.Extensions.Primitives": "(,10.0.32767]",
+ "Microsoft.Extensions.Validation": "(,10.0.32767]",
+ "Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
+ "Microsoft.JSInterop": "(,10.0.32767]",
+ "Microsoft.Net.Http.Headers": "(,10.0.32767]",
+ "Microsoft.VisualBasic": "(,10.4.32767]",
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
+ "runtime.any.System.Collections": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.any.System.Globalization": "(,4.3.32767]",
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.any.System.IO": "(,4.3.32767]",
+ "runtime.any.System.Reflection": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.any.System.Runtime": "(,4.3.32767]",
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.aot.System.Collections": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.aot.System.IO": "(,4.3.32767]",
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Console": "(,4.3.32767]",
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Console": "(,4.3.32767]",
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "System.AppContext": "(,4.3.32767]",
+ "System.Buffers": "(,5.0.32767]",
+ "System.Collections": "(,4.3.32767]",
+ "System.Collections.Concurrent": "(,4.3.32767]",
+ "System.Collections.Immutable": "(,10.0.32767]",
+ "System.Collections.NonGeneric": "(,4.3.32767]",
+ "System.Collections.Specialized": "(,4.3.32767]",
+ "System.ComponentModel": "(,4.3.32767]",
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
+ "System.Console": "(,4.3.32767]",
+ "System.Data.Common": "(,4.3.32767]",
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
+ "System.Diagnostics.Debug": "(,4.3.32767]",
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
+ "System.Diagnostics.EventLog": "(,10.0.32767]",
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
+ "System.Diagnostics.Process": "(,4.3.32767]",
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
+ "System.Diagnostics.Tools": "(,4.3.32767]",
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
+ "System.Drawing.Primitives": "(,4.3.32767]",
+ "System.Dynamic.Runtime": "(,4.3.32767]",
+ "System.Formats.Asn1": "(,10.0.32767]",
+ "System.Formats.Cbor": "(,10.0.32767]",
+ "System.Formats.Tar": "(,10.0.32767]",
+ "System.Globalization": "(,4.3.32767]",
+ "System.Globalization.Calendars": "(,4.3.32767]",
+ "System.Globalization.Extensions": "(,4.3.32767]",
+ "System.IO": "(,4.3.32767]",
+ "System.IO.Compression": "(,4.3.32767]",
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
+ "System.IO.FileSystem": "(,4.3.32767]",
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
+ "System.IO.Pipelines": "(,10.0.32767]",
+ "System.IO.Pipes": "(,4.3.32767]",
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
+ "System.Linq": "(,4.3.32767]",
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
+ "System.Linq.Expressions": "(,4.3.32767]",
+ "System.Linq.Parallel": "(,4.3.32767]",
+ "System.Linq.Queryable": "(,4.3.32767]",
+ "System.Memory": "(,5.0.32767]",
+ "System.Net.Http": "(,4.3.32767]",
+ "System.Net.Http.Json": "(,10.0.32767]",
+ "System.Net.NameResolution": "(,4.3.32767]",
+ "System.Net.NetworkInformation": "(,4.3.32767]",
+ "System.Net.Ping": "(,4.3.32767]",
+ "System.Net.Primitives": "(,4.3.32767]",
+ "System.Net.Requests": "(,4.3.32767]",
+ "System.Net.Security": "(,4.3.32767]",
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
+ "System.Net.Sockets": "(,4.3.32767]",
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
+ "System.Net.WebSockets": "(,4.3.32767]",
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
+ "System.Numerics.Vectors": "(,5.0.32767]",
+ "System.ObjectModel": "(,4.3.32767]",
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
+ "System.Private.Uri": "(,4.3.32767]",
+ "System.Reflection": "(,4.3.32767]",
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
+ "System.Reflection.Emit": "(,4.7.32767]",
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
+ "System.Reflection.Extensions": "(,4.3.32767]",
+ "System.Reflection.Metadata": "(,10.0.32767]",
+ "System.Reflection.Primitives": "(,4.3.32767]",
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
+ "System.Resources.Reader": "(,4.3.32767]",
+ "System.Resources.ResourceManager": "(,4.3.32767]",
+ "System.Resources.Writer": "(,4.3.32767]",
+ "System.Runtime": "(,4.3.32767]",
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
+ "System.Runtime.Extensions": "(,4.3.32767]",
+ "System.Runtime.Handles": "(,4.3.32767]",
+ "System.Runtime.InteropServices": "(,4.3.32767]",
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
+ "System.Runtime.Loader": "(,4.3.32767]",
+ "System.Runtime.Numerics": "(,4.3.32767]",
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
+ "System.Security.AccessControl": "(,6.0.32767]",
+ "System.Security.Claims": "(,4.3.32767]",
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
+ "System.Security.Cryptography.Xml": "(,10.0.32767]",
+ "System.Security.Principal": "(,4.3.32767]",
+ "System.Security.Principal.Windows": "(,5.0.32767]",
+ "System.Security.SecureString": "(,4.3.32767]",
+ "System.Text.Encoding": "(,4.3.32767]",
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "System.Text.Encodings.Web": "(,10.0.32767]",
+ "System.Text.Json": "(,10.0.32767]",
+ "System.Text.RegularExpressions": "(,4.3.32767]",
+ "System.Threading": "(,4.3.32767]",
+ "System.Threading.AccessControl": "(,10.0.32767]",
+ "System.Threading.Channels": "(,10.0.32767]",
+ "System.Threading.Overlapped": "(,4.3.32767]",
+ "System.Threading.RateLimiting": "(,10.0.32767]",
+ "System.Threading.Tasks": "(,4.3.32767]",
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
+ "System.Threading.Thread": "(,4.3.32767]",
+ "System.Threading.ThreadPool": "(,4.3.32767]",
+ "System.Threading.Timer": "(,4.3.32767]",
+ "System.ValueTuple": "(,4.5.32767]",
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
+ "System.Xml.XDocument": "(,4.3.32767]",
+ "System.Xml.XmlDocument": "(,4.3.32767]",
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
+ "System.Xml.XPath": "(,4.3.32767]",
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
+ }
}
}
}
diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props
index eb61f37..5acc2ef 100644
--- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props
+++ b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props
@@ -5,23 +5,23 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\
+ C:\Users\torst\.nuget\packages\
PackageReference
- 6.6.0
+ 7.0.0
-
+
-
-
-
-
+
+
+
+
+
- C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
- C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
- C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.codeanalysis.analyzerutilities\3.3.0
- C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.entityframeworkcore.tools\7.0.9
+ C:\Users\torst\.nuget\packages\microsoft.extensions.apidescription.server\10.0.0
+ C:\Users\torst\.nuget\packages\microsoft.codeanalysis.analyzers\3.11.0
+ C:\Users\torst\.nuget\packages\microsoft.entityframeworkcore.tools\10.0.8
\ No newline at end of file
diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets
index 2c493a8..529da74 100644
--- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets
+++ b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets
@@ -1,8 +1,9 @@
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
index c956903..ce856a2 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -1,137 +1,63 @@
{
- "version": 3,
+ "version": 4,
"targets": {
- "net7.0": {
- "AutoMapper/12.0.1": {
+ "net10.0": {
+ "AutoMapper/16.1.1": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.7.0"
+ "Microsoft.IdentityModel.JsonWebTokens": "8.14.0"
},
"compile": {
- "lib/netstandard2.1/AutoMapper.dll": {
+ "lib/net10.0/AutoMapper.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard2.1/AutoMapper.dll": {
+ "lib/net10.0/AutoMapper.dll": {
"related": ".xml"
}
}
},
- "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
+ "Azure.Core/1.47.1": {
"type": "package",
"dependencies": {
- "AutoMapper": "[12.0.1]",
- "Microsoft.Extensions.Options": "6.0.0"
+ "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
+ "System.ClientModel": "1.5.1",
+ "System.Memory.Data": "8.0.1"
},
"compile": {
- "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
- }
- },
- "Azure.Core/1.24.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "System.Diagnostics.DiagnosticSource": "4.6.0",
- "System.Memory.Data": "1.0.2",
- "System.Numerics.Vectors": "4.5.0",
- "System.Text.Encodings.Web": "4.7.2",
- "System.Text.Json": "4.7.2",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/net5.0/Azure.Core.dll": {
+ "lib/net8.0/Azure.Core.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net5.0/Azure.Core.dll": {
+ "lib/net8.0/Azure.Core.dll": {
"related": ".xml"
}
}
},
- "Azure.Identity/1.6.0": {
+ "Azure.Identity/1.14.2": {
"type": "package",
"dependencies": {
- "Azure.Core": "1.24.0",
- "Microsoft.Identity.Client": "4.39.0",
- "Microsoft.Identity.Client.Extensions.Msal": "2.19.3",
- "System.Memory": "4.5.4",
- "System.Security.Cryptography.ProtectedData": "4.7.0",
- "System.Text.Json": "4.7.2",
- "System.Threading.Tasks.Extensions": "4.5.4"
+ "Azure.Core": "1.46.1",
+ "Microsoft.Identity.Client": "4.73.1",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.73.1"
},
"compile": {
- "lib/netstandard2.0/Azure.Identity.dll": {
+ "lib/net8.0/Azure.Identity.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard2.0/Azure.Identity.dll": {
+ "lib/net8.0/Azure.Identity.dll": {
"related": ".xml"
}
}
},
- "Humanizer/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core.af": "2.14.1",
- "Humanizer.Core.ar": "2.14.1",
- "Humanizer.Core.az": "2.14.1",
- "Humanizer.Core.bg": "2.14.1",
- "Humanizer.Core.bn-BD": "2.14.1",
- "Humanizer.Core.cs": "2.14.1",
- "Humanizer.Core.da": "2.14.1",
- "Humanizer.Core.de": "2.14.1",
- "Humanizer.Core.el": "2.14.1",
- "Humanizer.Core.es": "2.14.1",
- "Humanizer.Core.fa": "2.14.1",
- "Humanizer.Core.fi-FI": "2.14.1",
- "Humanizer.Core.fr": "2.14.1",
- "Humanizer.Core.fr-BE": "2.14.1",
- "Humanizer.Core.he": "2.14.1",
- "Humanizer.Core.hr": "2.14.1",
- "Humanizer.Core.hu": "2.14.1",
- "Humanizer.Core.hy": "2.14.1",
- "Humanizer.Core.id": "2.14.1",
- "Humanizer.Core.is": "2.14.1",
- "Humanizer.Core.it": "2.14.1",
- "Humanizer.Core.ja": "2.14.1",
- "Humanizer.Core.ko-KR": "2.14.1",
- "Humanizer.Core.ku": "2.14.1",
- "Humanizer.Core.lv": "2.14.1",
- "Humanizer.Core.ms-MY": "2.14.1",
- "Humanizer.Core.mt": "2.14.1",
- "Humanizer.Core.nb": "2.14.1",
- "Humanizer.Core.nb-NO": "2.14.1",
- "Humanizer.Core.nl": "2.14.1",
- "Humanizer.Core.pl": "2.14.1",
- "Humanizer.Core.pt": "2.14.1",
- "Humanizer.Core.ro": "2.14.1",
- "Humanizer.Core.ru": "2.14.1",
- "Humanizer.Core.sk": "2.14.1",
- "Humanizer.Core.sl": "2.14.1",
- "Humanizer.Core.sr": "2.14.1",
- "Humanizer.Core.sr-Latn": "2.14.1",
- "Humanizer.Core.sv": "2.14.1",
- "Humanizer.Core.th-TH": "2.14.1",
- "Humanizer.Core.tr": "2.14.1",
- "Humanizer.Core.uk": "2.14.1",
- "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
- "Humanizer.Core.uz-Latn-UZ": "2.14.1",
- "Humanizer.Core.vi": "2.14.1",
- "Humanizer.Core.zh-CN": "2.14.1",
- "Humanizer.Core.zh-Hans": "2.14.1",
- "Humanizer.Core.zh-Hant": "2.14.1"
- }
- },
"Humanizer.Core/2.14.1": {
"type": "package",
"compile": {
- "lib/net6.0/Humanizer.dll": {
+ "lib/net6.0/_._": {
"related": ".xml"
}
},
@@ -141,548 +67,18 @@
}
}
},
- "Humanizer.Core.af/2.14.1": {
+ "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": {
"type": "package",
"dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/af/Humanizer.resources.dll": {
- "locale": "af"
- }
- }
- },
- "Humanizer.Core.ar/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ar/Humanizer.resources.dll": {
- "locale": "ar"
- }
- }
- },
- "Humanizer.Core.az/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/az/Humanizer.resources.dll": {
- "locale": "az"
- }
- }
- },
- "Humanizer.Core.bg/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/bg/Humanizer.resources.dll": {
- "locale": "bg"
- }
- }
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/bn-BD/Humanizer.resources.dll": {
- "locale": "bn-BD"
- }
- }
- },
- "Humanizer.Core.cs/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/cs/Humanizer.resources.dll": {
- "locale": "cs"
- }
- }
- },
- "Humanizer.Core.da/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/da/Humanizer.resources.dll": {
- "locale": "da"
- }
- }
- },
- "Humanizer.Core.de/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/de/Humanizer.resources.dll": {
- "locale": "de"
- }
- }
- },
- "Humanizer.Core.el/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/el/Humanizer.resources.dll": {
- "locale": "el"
- }
- }
- },
- "Humanizer.Core.es/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/es/Humanizer.resources.dll": {
- "locale": "es"
- }
- }
- },
- "Humanizer.Core.fa/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fa/Humanizer.resources.dll": {
- "locale": "fa"
- }
- }
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fi-FI/Humanizer.resources.dll": {
- "locale": "fi-FI"
- }
- }
- },
- "Humanizer.Core.fr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fr/Humanizer.resources.dll": {
- "locale": "fr"
- }
- }
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fr-BE/Humanizer.resources.dll": {
- "locale": "fr-BE"
- }
- }
- },
- "Humanizer.Core.he/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/he/Humanizer.resources.dll": {
- "locale": "he"
- }
- }
- },
- "Humanizer.Core.hr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/hr/Humanizer.resources.dll": {
- "locale": "hr"
- }
- }
- },
- "Humanizer.Core.hu/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/hu/Humanizer.resources.dll": {
- "locale": "hu"
- }
- }
- },
- "Humanizer.Core.hy/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/hy/Humanizer.resources.dll": {
- "locale": "hy"
- }
- }
- },
- "Humanizer.Core.id/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/id/Humanizer.resources.dll": {
- "locale": "id"
- }
- }
- },
- "Humanizer.Core.is/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/is/Humanizer.resources.dll": {
- "locale": "is"
- }
- }
- },
- "Humanizer.Core.it/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/it/Humanizer.resources.dll": {
- "locale": "it"
- }
- }
- },
- "Humanizer.Core.ja/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ja/Humanizer.resources.dll": {
- "locale": "ja"
- }
- }
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": {
- "locale": "ko-KR"
- }
- }
- },
- "Humanizer.Core.ku/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ku/Humanizer.resources.dll": {
- "locale": "ku"
- }
- }
- },
- "Humanizer.Core.lv/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/lv/Humanizer.resources.dll": {
- "locale": "lv"
- }
- }
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": {
- "locale": "ms-MY"
- }
- }
- },
- "Humanizer.Core.mt/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/mt/Humanizer.resources.dll": {
- "locale": "mt"
- }
- }
- },
- "Humanizer.Core.nb/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/nb/Humanizer.resources.dll": {
- "locale": "nb"
- }
- }
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/nb-NO/Humanizer.resources.dll": {
- "locale": "nb-NO"
- }
- }
- },
- "Humanizer.Core.nl/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/nl/Humanizer.resources.dll": {
- "locale": "nl"
- }
- }
- },
- "Humanizer.Core.pl/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/pl/Humanizer.resources.dll": {
- "locale": "pl"
- }
- }
- },
- "Humanizer.Core.pt/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/pt/Humanizer.resources.dll": {
- "locale": "pt"
- }
- }
- },
- "Humanizer.Core.ro/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ro/Humanizer.resources.dll": {
- "locale": "ro"
- }
- }
- },
- "Humanizer.Core.ru/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ru/Humanizer.resources.dll": {
- "locale": "ru"
- }
- }
- },
- "Humanizer.Core.sk/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sk/Humanizer.resources.dll": {
- "locale": "sk"
- }
- }
- },
- "Humanizer.Core.sl/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sl/Humanizer.resources.dll": {
- "locale": "sl"
- }
- }
- },
- "Humanizer.Core.sr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sr/Humanizer.resources.dll": {
- "locale": "sr"
- }
- }
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sr-Latn/Humanizer.resources.dll": {
- "locale": "sr-Latn"
- }
- }
- },
- "Humanizer.Core.sv/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sv/Humanizer.resources.dll": {
- "locale": "sv"
- }
- }
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/th-TH/Humanizer.resources.dll": {
- "locale": "th-TH"
- }
- }
- },
- "Humanizer.Core.tr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/tr/Humanizer.resources.dll": {
- "locale": "tr"
- }
- }
- },
- "Humanizer.Core.uk/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/uk/Humanizer.resources.dll": {
- "locale": "uk"
- }
- }
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": {
- "locale": "uz-Cyrl-UZ"
- }
- }
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": {
- "locale": "uz-Latn-UZ"
- }
- }
- },
- "Humanizer.Core.vi/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/vi/Humanizer.resources.dll": {
- "locale": "vi"
- }
- }
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/zh-CN/Humanizer.resources.dll": {
- "locale": "zh-CN"
- }
- }
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/zh-Hans/Humanizer.resources.dll": {
- "locale": "zh-Hans"
- }
- }
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/zh-Hant/Humanizer.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9",
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "System.DirectoryServices.Protocols": "7.0.1"
+ "System.DirectoryServices.Protocols": "10.0.8"
},
"compile": {
- "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": {
"related": ".xml"
}
},
@@ -690,54 +86,36 @@
"Microsoft.AspNetCore.App"
]
},
- "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": {
+ "Microsoft.AspNetCore.JsonPatch/10.0.8": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Features": "7.0.9",
- "System.IO.Pipelines": "7.0.0"
+ "Newtonsoft.Json": "13.0.3"
},
"compile": {
- "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.JsonPatch.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.JsonPatch.dll": {
"related": ".xml"
}
}
},
- "Microsoft.AspNetCore.JsonPatch/7.0.9": {
+ "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "Newtonsoft.Json": "13.0.1"
- },
- "compile": {
- "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "7.0.9",
- "Newtonsoft.Json": "13.0.1",
+ "Microsoft.AspNetCore.JsonPatch": "10.0.8",
+ "Newtonsoft.Json": "13.0.3",
"Newtonsoft.Json.Bson": "1.0.2"
},
"compile": {
- "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
"related": ".xml"
}
},
@@ -745,35 +123,29 @@
"Microsoft.AspNetCore.App"
]
},
- "Microsoft.AspNetCore.OpenApi/7.0.9": {
+ "Microsoft.AspNetCore.OpenApi/10.0.8": {
"type": "package",
"dependencies": {
- "Microsoft.OpenApi": "1.4.3"
+ "Microsoft.OpenApi": "2.0.0"
},
"compile": {
- "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
"related": ".xml"
}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
- ]
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.11": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
+ ],
+ "build": {
+ "build/Microsoft.AspNetCore.OpenApi.targets": {}
}
},
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
"type": "package",
"compile": {
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
@@ -786,575 +158,426 @@
}
}
},
- "Microsoft.Build/17.3.2": {
+ "Microsoft.Bcl.Cryptography/9.0.4": {
"type": "package",
- "dependencies": {
- "Microsoft.Build.Framework": "17.3.2",
- "Microsoft.NET.StringTools": "17.3.2",
- "System.Collections.Immutable": "6.0.0",
- "System.Configuration.ConfigurationManager": "6.0.0",
- "System.Reflection.Metadata": "6.0.0",
- "System.Reflection.MetadataLoadContext": "6.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Text.Json": "6.0.0",
- "System.Threading.Tasks.Dataflow": "6.0.0"
- },
"compile": {
- "ref/net6.0/Microsoft.Build.dll": {
+ "lib/net9.0/Microsoft.Bcl.Cryptography.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.Build.dll": {
- "related": ".pdb;.xml"
+ "lib/net9.0/Microsoft.Bcl.Cryptography.dll": {
+ "related": ".xml"
}
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
}
},
- "Microsoft.Build.Framework/17.3.2": {
+ "Microsoft.Build.Framework/18.0.2": {
"type": "package",
- "dependencies": {
- "System.Security.Permissions": "6.0.0"
- },
"compile": {
- "ref/net6.0/Microsoft.Build.Framework.dll": {
+ "ref/net10.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.Build.Framework.dll": {
+ "lib/net10.0/Microsoft.Build.Framework.dll": {
"related": ".pdb;.xml"
}
}
},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
+ "Microsoft.CodeAnalysis.Analyzers/3.11.0": {
"type": "package",
"build": {
- "build/_._": {}
+ "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {},
+ "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {}
}
},
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.Common/4.4.0": {
+ "Microsoft.CodeAnalysis.Common/5.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Memory": "4.5.5",
- "System.Reflection.Metadata": "5.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
+ "Microsoft.CodeAnalysis.Analyzers": "3.11.0"
},
"compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "lib/net9.0/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "lib/net9.0/Microsoft.CodeAnalysis.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": {
"locale": "cs"
},
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": {
"locale": "de"
},
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": {
"locale": "es"
},
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": {
"locale": "fr"
},
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": {
"locale": "it"
},
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ja"
},
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ko"
},
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": {
"locale": "pl"
},
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
"locale": "pt-BR"
},
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ru"
},
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": {
"locale": "tr"
},
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
"locale": "zh-Hans"
},
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.CSharp/4.4.0": {
+ "Microsoft.CodeAnalysis.CSharp/5.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.4.0]"
+ "Microsoft.CodeAnalysis.Analyzers": "3.11.0",
+ "Microsoft.CodeAnalysis.Common": "[5.0.0]"
},
"compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "lib/net9.0/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "cs"
},
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "de"
},
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "es"
},
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "fr"
},
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "it"
},
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ja"
},
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ko"
},
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "pl"
},
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "pt-BR"
},
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ru"
},
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "tr"
},
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "zh-Hans"
},
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": {
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.4.0]",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.4.0]",
- "Microsoft.CodeAnalysis.Common": "[4.4.0]",
- "Microsoft.CodeAnalysis.Features": "[4.4.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]"
+ "Microsoft.CodeAnalysis.Analyzers": "3.11.0",
+ "Microsoft.CodeAnalysis.CSharp": "[5.0.0]",
+ "Microsoft.CodeAnalysis.Common": "[5.0.0]",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]",
+ "System.Composition": "9.0.0"
},
"compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": {
+ "lib/net9.0/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": {
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "cs"
},
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "de"
},
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "es"
},
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "fr"
},
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "it"
},
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "ja"
},
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "ko"
},
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "pl"
},
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "pt-BR"
},
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "ru"
},
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "tr"
},
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "zh-Hans"
},
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": {
+ "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.4.0]",
- "Microsoft.CodeAnalysis.Common": "[4.4.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]"
+ "Microsoft.CodeAnalysis.Analyzers": "3.11.0",
+ "Microsoft.CodeAnalysis.Common": "[5.0.0]",
+ "System.Composition": "9.0.0"
},
"compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "lib/net9.0/_._": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "cs"
},
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "de"
},
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "es"
},
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "fr"
},
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "it"
},
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "ja"
},
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "ko"
},
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "pl"
},
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "pt-BR"
},
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "ru"
},
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "tr"
},
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "zh-Hans"
},
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
"locale": "zh-Hant"
}
}
},
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.Configuration.ConfigurationManager": "4.5.0",
- "System.Data.DataSetExtensions": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Features/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
- "Microsoft.CodeAnalysis.Common": "[4.4.0]",
- "Microsoft.CodeAnalysis.Elfie": "1.0.0",
- "Microsoft.CodeAnalysis.Scripting.Common": "[4.4.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]",
- "Microsoft.DiaSymReader": "1.4.0",
- "System.Text.Json": "6.0.0",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/6.0.11": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "6.0.11",
- "Microsoft.CodeAnalysis.CSharp": "4.0.0",
- "Microsoft.CodeAnalysis.Common": "4.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.4.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": {
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "[4.4.0]",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3"
+ "Microsoft.Build.Framework": "17.11.31",
+ "Microsoft.CodeAnalysis.Analyzers": "3.11.0",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "[5.0.0]",
+ "Microsoft.VisualStudio.SolutionPersistence": "1.0.52",
+ "Newtonsoft.Json": "13.0.3",
+ "System.Composition": "9.0.0"
},
"compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/net9.0/_._": {}
},
"runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
+ "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": {},
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {
"related": ".pdb;.xml"
}
},
"resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "cs"
},
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "de"
},
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "es"
},
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "fr"
},
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "it"
},
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "ja"
},
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "ko"
},
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "pl"
},
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "pt-BR"
},
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "ru"
},
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "tr"
},
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "zh-Hans"
},
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
"locale": "zh-Hant"
}
+ },
+ "contentFiles": {
+ "contentFiles/any/any/_._": {
+ "buildAction": "None",
+ "codeLanguage": "any",
+ "copyToOutput": false
+ }
}
},
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.Data.SqlClient/5.0.2": {
+ "Microsoft.Data.SqlClient/6.1.1": {
"type": "package",
"dependencies": {
- "Azure.Identity": "1.6.0",
- "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1",
- "Microsoft.Identity.Client": "4.45.0",
- "Microsoft.IdentityModel.JsonWebTokens": "6.21.0",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0",
+ "Azure.Core": "1.47.1",
+ "Azure.Identity": "1.14.2",
+ "Microsoft.Bcl.Cryptography": "9.0.4",
+ "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2",
+ "Microsoft.IdentityModel.JsonWebTokens": "7.7.1",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.7.1",
"Microsoft.SqlServer.Server": "1.0.0",
- "Microsoft.Win32.Registry": "5.0.0",
- "System.Buffers": "4.5.1",
- "System.Configuration.ConfigurationManager": "5.0.0",
- "System.Diagnostics.DiagnosticSource": "5.0.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime.Caching": "5.0.0",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "5.0.0",
- "System.Text.Encodings.Web": "4.7.2"
+ "System.Configuration.ConfigurationManager": "9.0.4",
+ "System.Security.Cryptography.Pkcs": "9.0.4"
},
"compile": {
- "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
- "related": ".pdb;.xml"
+ "ref/net9.0/Microsoft.Data.SqlClient.dll": {
+ "related": ".xml"
}
},
"runtime": {
- "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
- "related": ".pdb;.xml"
+ "lib/net9.0/Microsoft.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
+ },
+ "resource": {
+ "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "de"
+ },
+ "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "es"
+ },
+ "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "it"
+ },
+ "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": {
+ "locale": "zh-Hant"
}
},
"runtimeTargets": {
- "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
+ "runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll": {
"assetType": "runtime",
"rid": "unix"
},
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
+ "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
- "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": {
+ "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": {
"type": "package",
"runtimeTargets": {
- "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
- "assetType": "native",
- "rid": "win-arm"
- },
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
"assetType": "native",
"rid": "win-arm64"
@@ -1369,155 +592,115 @@
}
}
},
- "Microsoft.DiaSymReader/1.4.0": {
+ "Microsoft.EntityFrameworkCore/10.0.8": {
"type": "package",
"dependencies": {
- "NETStandard.Library": "1.6.1"
+ "Microsoft.EntityFrameworkCore.Abstractions": "10.0.8",
+ "Microsoft.EntityFrameworkCore.Analyzers": "10.0.8"
},
"compile": {
- "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.DotNet.Scaffolding.Shared/7.0.8": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0",
- "Newtonsoft.Json": "13.0.1",
- "NuGet.ProjectModel": "6.3.1"
- },
- "compile": {
- "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/7.0.9": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9",
- "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9",
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.Logging": "7.0.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {}
+ "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {}
}
},
- "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": {
+ "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": {
"type": "package",
"compile": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
"related": ".xml"
}
}
},
- "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
+ "Microsoft.EntityFrameworkCore.Analyzers/10.0.8": {
+ "type": "package"
},
- "Microsoft.EntityFrameworkCore.Design/7.0.9": {
+ "Microsoft.EntityFrameworkCore.Design/10.0.8": {
"type": "package",
"dependencies": {
"Humanizer.Core": "2.14.1",
- "Microsoft.EntityFrameworkCore.Relational": "7.0.9",
- "Microsoft.Extensions.DependencyModel": "7.0.0",
- "Mono.TextTemplating": "2.2.1"
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.CodeAnalysis.CSharp": "5.0.0",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0",
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.0.0",
+ "Microsoft.EntityFrameworkCore.Relational": "10.0.8",
+ "Microsoft.Extensions.DependencyModel": "10.0.8",
+ "Mono.TextTemplating": "3.0.0",
+ "Newtonsoft.Json": "13.0.3"
},
"compile": {
- "lib/net6.0/_._": {
+ "lib/net10.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": {
"related": ".xml"
}
},
"build": {
- "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
+ "build/net10.0/Microsoft.EntityFrameworkCore.Design.props": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/7.0.9": {
+ "Microsoft.EntityFrameworkCore.Relational/10.0.8": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "7.0.9",
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ "Microsoft.EntityFrameworkCore": "10.0.8"
},
"compile": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": {
"related": ".xml"
}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": {
+ "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": {
"type": "package",
"dependencies": {
- "Microsoft.Data.SqlClient": "5.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "7.0.9"
+ "Microsoft.Data.SqlClient": "6.1.1",
+ "Microsoft.EntityFrameworkCore.Relational": "10.0.8"
},
"compile": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
+ "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
"related": ".xml"
}
}
},
- "Microsoft.EntityFrameworkCore.Tools/7.0.9": {
+ "Microsoft.EntityFrameworkCore.Tools/10.0.8": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "7.0.9"
+ "Microsoft.EntityFrameworkCore.Design": "8.0.0"
},
"compile": {
- "lib/net6.0/_._": {}
+ "lib/net8.0/_._": {}
},
"runtime": {
- "lib/net6.0/_._": {}
+ "lib/net8.0/_._": {}
}
},
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "Microsoft.Extensions.ApiDescription.Server/10.0.0": {
"type": "package",
"build": {
"build/Microsoft.Extensions.ApiDescription.Server.props": {},
@@ -1528,383 +711,158 @@
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
+ "Microsoft.Extensions.DependencyModel/10.0.8": {
+ "type": "package",
+ "compile": {
+ "lib/net10.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "Microsoft.Identity.Client/4.73.1": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
+ "Microsoft.IdentityModel.Abstractions": "6.35.0"
},
"compile": {
- "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Identity.Client.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "lib/net8.0/Microsoft.Identity.Client.dll": {
"related": ".xml"
}
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
}
},
- "Microsoft.Extensions.Caching.Memory/7.0.0": {
+ "Microsoft.Identity.Client.Extensions.Msal/4.73.1": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Text.Encodings.Web": "7.0.0",
- "System.Text.Json": "7.0.0"
- },
- "compile": {
- "lib/net7.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Features/7.0.9": {
- "type": "package",
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Features.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Features.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
- "Microsoft.Extensions.Options": "7.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Identity.Client/4.45.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.18.0"
- },
- "compile": {
- "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.38.0",
+ "Microsoft.Identity.Client": "4.73.1",
"System.Security.Cryptography.ProtectedData": "4.5.0"
},
"compile": {
- "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
"related": ".xml"
}
}
},
- "Microsoft.IdentityModel.Abstractions/6.21.0": {
+ "Microsoft.IdentityModel.Abstractions/8.14.0": {
"type": "package",
"compile": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
"related": ".xml"
}
}
},
- "Microsoft.IdentityModel.JsonWebTokens/6.21.0": {
+ "Microsoft.IdentityModel.JsonWebTokens/8.14.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Tokens": "6.21.0"
+ "Microsoft.IdentityModel.Tokens": "8.14.0"
},
"compile": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
"related": ".xml"
}
}
},
- "Microsoft.IdentityModel.Logging/6.21.0": {
+ "Microsoft.IdentityModel.Logging/8.14.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.21.0"
+ "Microsoft.IdentityModel.Abstractions": "8.14.0"
},
"compile": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.Logging.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.Logging.dll": {
"related": ".xml"
}
}
},
- "Microsoft.IdentityModel.Protocols/6.21.0": {
+ "Microsoft.IdentityModel.Protocols/7.7.1": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Logging": "6.21.0",
- "Microsoft.IdentityModel.Tokens": "6.21.0"
+ "Microsoft.IdentityModel.Tokens": "7.7.1"
},
"compile": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
"related": ".xml"
}
}
},
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": {
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Protocols": "6.21.0",
- "System.IdentityModel.Tokens.Jwt": "6.21.0"
+ "Microsoft.IdentityModel.Protocols": "7.7.1",
+ "System.IdentityModel.Tokens.Jwt": "7.7.1"
},
"compile": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
"related": ".xml"
}
}
},
- "Microsoft.IdentityModel.Tokens/6.21.0": {
+ "Microsoft.IdentityModel.Tokens/8.14.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Microsoft.IdentityModel.Logging": "6.21.0",
- "System.Security.Cryptography.Cng": "4.5.0"
+ "Microsoft.IdentityModel.Logging": "8.14.0"
},
"compile": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
+ "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {
"related": ".xml"
}
}
},
- "Microsoft.NET.StringTools/17.3.2": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "ref/net6.0/Microsoft.NET.StringTools.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.NET.StringTools.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
+ "Microsoft.OpenApi/2.4.1": {
"type": "package",
"compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.OpenApi/1.4.3": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "lib/net8.0/Microsoft.OpenApi.dll": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "lib/net8.0/Microsoft.OpenApi.dll": {
"related": ".pdb;.xml"
}
}
@@ -1922,258 +880,43 @@
}
}
},
- "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": {
+ "Microsoft.VisualStudio.SolutionPersistence/1.0.52": {
"type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8"
- },
"compile": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
+ "lib/net8.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
+ "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll": {
"related": ".xml"
}
}
},
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": {
+ "Mono.TextTemplating/3.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection": "7.0.0",
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8",
- "Newtonsoft.Json": "13.0.1"
+ "System.CodeDom": "6.0.0"
},
"compile": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
- "related": ".xml"
- }
+ "lib/net6.0/_._": {}
},
"runtime": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.DotNet.Scaffolding.Shared": "7.0.8",
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8"
- },
- "compile": {
- "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.DotNet.Scaffolding.Shared": "7.0.8",
- "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8"
- },
- "compile": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "6.0.11",
- "Microsoft.CodeAnalysis.CSharp": "4.4.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.11",
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8"
- },
- "compile": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build": "17.3.2",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0",
- "Microsoft.DotNet.Scaffolding.Shared": "7.0.8",
- "Newtonsoft.Json": "13.0.1"
- },
- "compile": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.DotNet.Scaffolding.Shared": "7.0.8",
- "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8"
- },
- "compile": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Win32.Registry/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- },
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
+ "lib/net6.0/Mono.TextTemplating.dll": {}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
+ "buildTransitive/Mono.TextTemplating.targets": {}
}
},
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {}
- }
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.Compression.ZipFile": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Net.Http": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0"
- }
- },
- "Newtonsoft.Json/13.0.1": {
+ "Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
"related": ".xml"
}
}
@@ -2194,347 +937,33 @@
}
}
},
- "NuGet.Common/6.3.1": {
+ "Swashbuckle.AspNetCore/10.1.7": {
"type": "package",
"dependencies": {
- "NuGet.Frameworks": "6.3.1"
- },
- "compile": {
- "lib/netstandard2.0/NuGet.Common.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Common.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Configuration/6.3.1": {
- "type": "package",
- "dependencies": {
- "NuGet.Common": "6.3.1",
- "System.Security.Cryptography.ProtectedData": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/NuGet.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.DependencyResolver.Core/6.3.1": {
- "type": "package",
- "dependencies": {
- "NuGet.Configuration": "6.3.1",
- "NuGet.LibraryModel": "6.3.1",
- "NuGet.Protocol": "6.3.1"
- },
- "compile": {
- "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Frameworks/6.3.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.LibraryModel/6.3.1": {
- "type": "package",
- "dependencies": {
- "NuGet.Common": "6.3.1",
- "NuGet.Versioning": "6.3.1"
- },
- "compile": {
- "lib/netstandard2.0/NuGet.LibraryModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.LibraryModel.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Packaging/6.3.1": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.1",
- "NuGet.Configuration": "6.3.1",
- "NuGet.Versioning": "6.3.1",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Cryptography.Pkcs": "5.0.0"
- },
- "compile": {
- "lib/net5.0/NuGet.Packaging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net5.0/NuGet.Packaging.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.ProjectModel/6.3.1": {
- "type": "package",
- "dependencies": {
- "NuGet.DependencyResolver.Core": "6.3.1"
- },
- "compile": {
- "lib/net5.0/NuGet.ProjectModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net5.0/NuGet.ProjectModel.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Protocol/6.3.1": {
- "type": "package",
- "dependencies": {
- "NuGet.Packaging": "6.3.1"
- },
- "compile": {
- "lib/net5.0/NuGet.Protocol.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net5.0/NuGet.Protocol.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Versioning/6.3.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NuGet.Versioning.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Versioning.dll": {
- "related": ".xml"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "debian.8-x64"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.23-x64"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.24-x64"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.13.2-x64"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.42.1-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "rhel.7-x64"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.14.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.10-x64"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.5.0",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
+ "Microsoft.Extensions.ApiDescription.Server": "10.0.0",
+ "Swashbuckle.AspNetCore.Swagger": "10.1.7",
+ "Swashbuckle.AspNetCore.SwaggerGen": "10.1.7",
+ "Swashbuckle.AspNetCore.SwaggerUI": "10.1.7"
},
"build": {
"build/Swashbuckle.AspNetCore.props": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/Swashbuckle.AspNetCore.props": {}
}
},
- "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "Swashbuckle.AspNetCore.Swagger/10.1.7": {
"type": "package",
"dependencies": {
- "Microsoft.OpenApi": "1.2.3"
+ "Microsoft.OpenApi": "2.4.1"
},
"compile": {
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": {
"related": ".pdb;.xml"
}
},
@@ -2542,31 +971,31 @@
"Microsoft.AspNetCore.App"
]
},
- "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": {
"type": "package",
"dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.5.0"
+ "Swashbuckle.AspNetCore.Swagger": "10.1.7"
},
"compile": {
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
"related": ".pdb;.xml"
}
}
},
- "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": {
"type": "package",
"compile": {
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
"related": ".pdb;.xml"
}
},
"runtime": {
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
"related": ".pdb;.xml"
}
},
@@ -2574,550 +1003,223 @@
"Microsoft.AspNetCore.App"
]
},
- "System.AppContext/4.3.0": {
+ "System.ClientModel/1.5.1": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.3.0"
+ "System.Memory.Data": "8.0.1"
},
"compile": {
- "ref/netstandard1.6/System.AppContext.dll": {
+ "lib/net8.0/System.ClientModel.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard1.6/System.AppContext.dll": {}
+ "lib/net8.0/System.ClientModel.dll": {
+ "related": ".xml"
+ }
}
},
- "System.Buffers/4.5.1": {
+ "System.CodeDom/6.0.0": {
"type": "package",
"compile": {
- "ref/netcoreapp2.0/_._": {}
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.CodeDom.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Composition/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Composition.AttributedModel": "9.0.0",
+ "System.Composition.Convention": "9.0.0",
+ "System.Composition.Hosting": "9.0.0",
+ "System.Composition.Runtime": "9.0.0",
+ "System.Composition.TypedParts": "9.0.0"
+ },
+ "compile": {
+ "lib/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.CodeDom/4.4.0": {
+ "System.Composition.AttributedModel/9.0.0": {
"type": "package",
"compile": {
- "ref/netstandard2.0/_._": {
+ "lib/net9.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Collections.Immutable.dll": {
+ "lib/net9.0/System.Composition.AttributedModel.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.Composition/6.0.0": {
+ "System.Composition.Convention/9.0.0": {
"type": "package",
"dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
+ "System.Composition.AttributedModel": "9.0.0"
},
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
"compile": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
+ "lib/net9.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
+ "lib/net9.0/System.Composition.Convention.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.Composition.Convention/6.0.0": {
+ "System.Composition.Hosting/9.0.0": {
"type": "package",
"dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
+ "System.Composition.Runtime": "9.0.0"
},
"compile": {
- "lib/net6.0/System.Composition.Convention.dll": {
+ "lib/net9.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
+ "lib/net9.0/System.Composition.Hosting.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.Composition.Hosting/6.0.0": {
+ "System.Composition.Runtime/9.0.0": {
"type": "package",
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
"compile": {
- "lib/net6.0/System.Composition.Hosting.dll": {
+ "lib/net9.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
+ "lib/net9.0/System.Composition.Runtime.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.Composition.Runtime/6.0.0": {
+ "System.Composition.TypedParts/9.0.0": {
"type": "package",
+ "dependencies": {
+ "System.Composition.AttributedModel": "9.0.0",
+ "System.Composition.Hosting": "9.0.0",
+ "System.Composition.Runtime": "9.0.0"
+ },
"compile": {
- "lib/net6.0/System.Composition.Runtime.dll": {
+ "lib/net9.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
+ "lib/net9.0/System.Composition.TypedParts.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.Composition.TypedParts/6.0.0": {
+ "System.Configuration.ConfigurationManager/9.0.4": {
"type": "package",
"dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
+ "System.Security.Cryptography.ProtectedData": "9.0.4"
},
"compile": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
+ "lib/net9.0/_._": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
+ "lib/net9.0/System.Configuration.ConfigurationManager.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
}
},
- "System.Configuration.ConfigurationManager/6.0.0": {
+ "System.DirectoryServices.Protocols/10.0.8": {
"type": "package",
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "6.0.0",
- "System.Security.Permissions": "6.0.0"
- },
"compile": {
- "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "lib/net10.0/System.DirectoryServices.Protocols.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
+ "lib/net10.0/System.DirectoryServices.Protocols.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Console/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Console.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/5.0.0": {
- "type": "package",
- "compile": {
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
- "related": ".xml"
- }
- }
- },
- "System.DirectoryServices.Protocols/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.DirectoryServices.Protocols.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.DirectoryServices.Protocols.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
+ "buildTransitive/net8.0/_._": {}
},
"runtimeTargets": {
- "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": {
+ "runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "linux"
},
- "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": {
+ "runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "osx"
},
- "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": {
+ "runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
- "System.Drawing.Common/6.0.0": {
+ "System.IdentityModel.Tokens.Jwt/7.7.1": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.SystemEvents": "6.0.0"
+ "Microsoft.IdentityModel.JsonWebTokens": "7.7.1",
+ "Microsoft.IdentityModel.Tokens": "7.7.1"
},
"compile": {
- "lib/net6.0/System.Drawing.Common.dll": {
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Drawing.Common.dll": {
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
"related": ".xml"
}
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
}
},
- "System.Formats.Asn1/5.0.0": {
+ "System.Memory.Data/8.0.1": {
"type": "package",
"compile": {
- "lib/netstandard2.0/_._": {
+ "lib/net8.0/System.Memory.Data.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard2.0/System.Formats.Asn1.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IdentityModel.Tokens.Jwt/6.21.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "6.21.0",
- "Microsoft.IdentityModel.Tokens": "6.21.0"
- },
- "compile": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Buffers": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.IO.Compression": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.IO.Pipelines/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.IO.Pipelines.dll": {
+ "lib/net8.0/System.Memory.Data.dll": {
"related": ".xml"
}
},
@@ -3125,1132 +1227,111 @@
"buildTransitive/net6.0/_._": {}
}
},
- "System.Linq/4.3.0": {
+ "System.Security.Cryptography.Pkcs/9.0.4": {
"type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
"compile": {
- "ref/netstandard1.6/System.Linq.dll": {
+ "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Memory.Data/1.0.2": {
- "type": "package",
- "dependencies": {
- "System.Text.Encodings.Web": "4.7.2",
- "System.Text.Json": "4.6.0"
- },
- "compile": {
- "lib/netstandard2.0/System.Memory.Data.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Memory.Data.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {}
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Metadata/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Reflection.Metadata.dll": {
+ "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
+ "buildTransitive/net8.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
}
},
- "System.Reflection.MetadataLoadContext/6.0.0": {
+ "System.Security.Cryptography.ProtectedData/9.0.4": {
"type": "package",
- "dependencies": {
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.0"
- },
"compile": {
- "lib/net6.0/System.Reflection.MetadataLoadContext.dll": {
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
"related": ".xml"
}
},
"runtime": {
- "lib/net6.0/System.Reflection.MetadataLoadContext.dll": {
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
"related": ".xml"
}
},
"build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Caching/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Configuration.ConfigurationManager": "5.0.0"
- },
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Runtime.Caching.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "runtime": {
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Security.AccessControl/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Formats.Asn1": "5.0.0"
- },
- "compile": {
- "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- }
- }
- },
- "System.Security.Cryptography.Pkcs/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Formats.Asn1": "5.0.0",
- "System.Security.Cryptography.Cng": "5.0.0"
- },
- "compile": {
- "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- }
- },
- "System.Security.Cryptography.ProtectedData/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Permissions/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "6.0.0",
- "System.Windows.Extensions": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encodings.Web/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
- "assetType": "runtime",
- "rid": "browser"
- }
- }
- },
- "System.Text.Json/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Text.Encodings.Web": "7.0.0"
- },
- "compile": {
- "lib/net7.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/System.Text.Json.targets": {}
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Dataflow/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Threading.Tasks.Dataflow.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Threading.Tasks.Dataflow.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Windows.Extensions/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Drawing.Common": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XDocument.dll": {}
+ "buildTransitive/net8.0/_._": {}
}
}
}
},
"libraries": {
- "AutoMapper/12.0.1": {
- "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
+ "AutoMapper/16.1.1": {
+ "sha512": "VNEky8JA15ci+oIDRGHITOGOpV4dILsf8pnn24QhDl2urtqgJ2IXiS/V2EtGU17P/+f6OeFQPJETaZXV9QOIZg==",
"type": "package",
- "path": "automapper/12.0.1",
+ "path": "automapper/16.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
+ "LICENSE.md",
"README.md",
- "automapper.12.0.1.nupkg.sha512",
+ "automapper.16.1.1.nupkg.sha512",
"automapper.nuspec",
"icon.png",
- "lib/netstandard2.1/AutoMapper.dll",
- "lib/netstandard2.1/AutoMapper.xml"
+ "lib/net10.0/AutoMapper.dll",
+ "lib/net10.0/AutoMapper.xml",
+ "lib/net471/AutoMapper.dll",
+ "lib/net471/AutoMapper.xml",
+ "lib/net8.0/AutoMapper.dll",
+ "lib/net8.0/AutoMapper.xml",
+ "lib/net9.0/AutoMapper.dll",
+ "lib/net9.0/AutoMapper.xml",
+ "lib/netstandard2.0/AutoMapper.dll",
+ "lib/netstandard2.0/AutoMapper.xml"
]
},
- "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
- "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
+ "Azure.Core/1.47.1": {
+ "sha512": "oPcncSsDHuxB8SC522z47xbp2+ttkcKv2YZ90KXhRKN0YQd2+7l1UURT9EBzUNEXtkLZUOAB5xbByMTrYRh3yA==",
"type": "package",
- "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
- "automapper.extensions.microsoft.dependencyinjection.nuspec",
- "icon.png",
- "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
- ]
- },
- "Azure.Core/1.24.0": {
- "sha512": "+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==",
- "type": "package",
- "path": "azure.core/1.24.0",
+ "path": "azure.core/1.47.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"CHANGELOG.md",
"README.md",
- "azure.core.1.24.0.nupkg.sha512",
+ "azure.core.1.47.1.nupkg.sha512",
"azure.core.nuspec",
"azureicon.png",
- "lib/net461/Azure.Core.dll",
- "lib/net461/Azure.Core.xml",
- "lib/net5.0/Azure.Core.dll",
- "lib/net5.0/Azure.Core.xml",
- "lib/netcoreapp2.1/Azure.Core.dll",
- "lib/netcoreapp2.1/Azure.Core.xml",
+ "lib/net462/Azure.Core.dll",
+ "lib/net462/Azure.Core.xml",
+ "lib/net472/Azure.Core.dll",
+ "lib/net472/Azure.Core.xml",
+ "lib/net8.0/Azure.Core.dll",
+ "lib/net8.0/Azure.Core.xml",
"lib/netstandard2.0/Azure.Core.dll",
"lib/netstandard2.0/Azure.Core.xml"
]
},
- "Azure.Identity/1.6.0": {
- "sha512": "EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==",
+ "Azure.Identity/1.14.2": {
+ "sha512": "YhNMwOTwT+I2wIcJKSdP0ADyB2aK+JaYWZxO8LSRDm5w77LFr0ykR9xmt2ZV5T1gaI7xU6iNFIh/yW1dAlpddQ==",
"type": "package",
- "path": "azure.identity/1.6.0",
+ "path": "azure.identity/1.14.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"CHANGELOG.md",
"README.md",
- "azure.identity.1.6.0.nupkg.sha512",
+ "azure.identity.1.14.2.nupkg.sha512",
"azure.identity.nuspec",
"azureicon.png",
+ "lib/net8.0/Azure.Identity.dll",
+ "lib/net8.0/Azure.Identity.xml",
"lib/netstandard2.0/Azure.Identity.dll",
"lib/netstandard2.0/Azure.Identity.xml"
]
},
- "Humanizer/2.14.1": {
- "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
- "type": "package",
- "path": "humanizer/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.2.14.1.nupkg.sha512",
- "humanizer.nuspec",
- "logo.png"
- ]
- },
"Humanizer.Core/2.14.1": {
"sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
"type": "package",
@@ -4269,902 +1350,164 @@
"logo.png"
]
},
- "Humanizer.Core.af/2.14.1": {
- "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
+ "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": {
+ "sha512": "PkNdrRbU4togx1Eg3/0kcqpRLbtkfqhZ3aHudMQwbXnwcGJgxEgu65YLjqRD/tSp8szrH1XdefyyymTrfi0WPQ==",
"type": "package",
- "path": "humanizer.core.af/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.af.2.14.1.nupkg.sha512",
- "humanizer.core.af.nuspec",
- "lib/net6.0/af/Humanizer.resources.dll",
- "lib/netstandard1.0/af/Humanizer.resources.dll",
- "lib/netstandard2.0/af/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ar/2.14.1": {
- "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
- "type": "package",
- "path": "humanizer.core.ar/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ar.2.14.1.nupkg.sha512",
- "humanizer.core.ar.nuspec",
- "lib/net6.0/ar/Humanizer.resources.dll",
- "lib/netstandard1.0/ar/Humanizer.resources.dll",
- "lib/netstandard2.0/ar/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.az/2.14.1": {
- "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
- "type": "package",
- "path": "humanizer.core.az/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.az.2.14.1.nupkg.sha512",
- "humanizer.core.az.nuspec",
- "lib/net6.0/az/Humanizer.resources.dll",
- "lib/netstandard1.0/az/Humanizer.resources.dll",
- "lib/netstandard2.0/az/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.bg/2.14.1": {
- "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
- "type": "package",
- "path": "humanizer.core.bg/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.bg.2.14.1.nupkg.sha512",
- "humanizer.core.bg.nuspec",
- "lib/net6.0/bg/Humanizer.resources.dll",
- "lib/netstandard1.0/bg/Humanizer.resources.dll",
- "lib/netstandard2.0/bg/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
- "type": "package",
- "path": "humanizer.core.bn-bd/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.bn-bd.2.14.1.nupkg.sha512",
- "humanizer.core.bn-bd.nuspec",
- "lib/net6.0/bn-BD/Humanizer.resources.dll",
- "lib/netstandard1.0/bn-BD/Humanizer.resources.dll",
- "lib/netstandard2.0/bn-BD/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.cs/2.14.1": {
- "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
- "type": "package",
- "path": "humanizer.core.cs/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.cs.2.14.1.nupkg.sha512",
- "humanizer.core.cs.nuspec",
- "lib/net6.0/cs/Humanizer.resources.dll",
- "lib/netstandard1.0/cs/Humanizer.resources.dll",
- "lib/netstandard2.0/cs/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.da/2.14.1": {
- "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
- "type": "package",
- "path": "humanizer.core.da/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.da.2.14.1.nupkg.sha512",
- "humanizer.core.da.nuspec",
- "lib/net6.0/da/Humanizer.resources.dll",
- "lib/netstandard1.0/da/Humanizer.resources.dll",
- "lib/netstandard2.0/da/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.de/2.14.1": {
- "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
- "type": "package",
- "path": "humanizer.core.de/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.de.2.14.1.nupkg.sha512",
- "humanizer.core.de.nuspec",
- "lib/net6.0/de/Humanizer.resources.dll",
- "lib/netstandard1.0/de/Humanizer.resources.dll",
- "lib/netstandard2.0/de/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.el/2.14.1": {
- "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
- "type": "package",
- "path": "humanizer.core.el/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.el.2.14.1.nupkg.sha512",
- "humanizer.core.el.nuspec",
- "lib/net6.0/el/Humanizer.resources.dll",
- "lib/netstandard1.0/el/Humanizer.resources.dll",
- "lib/netstandard2.0/el/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.es/2.14.1": {
- "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
- "type": "package",
- "path": "humanizer.core.es/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.es.2.14.1.nupkg.sha512",
- "humanizer.core.es.nuspec",
- "lib/net6.0/es/Humanizer.resources.dll",
- "lib/netstandard1.0/es/Humanizer.resources.dll",
- "lib/netstandard2.0/es/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fa/2.14.1": {
- "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
- "type": "package",
- "path": "humanizer.core.fa/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fa.2.14.1.nupkg.sha512",
- "humanizer.core.fa.nuspec",
- "lib/net6.0/fa/Humanizer.resources.dll",
- "lib/netstandard1.0/fa/Humanizer.resources.dll",
- "lib/netstandard2.0/fa/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
- "type": "package",
- "path": "humanizer.core.fi-fi/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fi-fi.2.14.1.nupkg.sha512",
- "humanizer.core.fi-fi.nuspec",
- "lib/net6.0/fi-FI/Humanizer.resources.dll",
- "lib/netstandard1.0/fi-FI/Humanizer.resources.dll",
- "lib/netstandard2.0/fi-FI/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fr/2.14.1": {
- "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
- "type": "package",
- "path": "humanizer.core.fr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fr.2.14.1.nupkg.sha512",
- "humanizer.core.fr.nuspec",
- "lib/net6.0/fr/Humanizer.resources.dll",
- "lib/netstandard1.0/fr/Humanizer.resources.dll",
- "lib/netstandard2.0/fr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
- "type": "package",
- "path": "humanizer.core.fr-be/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fr-be.2.14.1.nupkg.sha512",
- "humanizer.core.fr-be.nuspec",
- "lib/net6.0/fr-BE/Humanizer.resources.dll",
- "lib/netstandard1.0/fr-BE/Humanizer.resources.dll",
- "lib/netstandard2.0/fr-BE/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.he/2.14.1": {
- "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
- "type": "package",
- "path": "humanizer.core.he/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.he.2.14.1.nupkg.sha512",
- "humanizer.core.he.nuspec",
- "lib/net6.0/he/Humanizer.resources.dll",
- "lib/netstandard1.0/he/Humanizer.resources.dll",
- "lib/netstandard2.0/he/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.hr/2.14.1": {
- "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
- "type": "package",
- "path": "humanizer.core.hr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.hr.2.14.1.nupkg.sha512",
- "humanizer.core.hr.nuspec",
- "lib/net6.0/hr/Humanizer.resources.dll",
- "lib/netstandard1.0/hr/Humanizer.resources.dll",
- "lib/netstandard2.0/hr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.hu/2.14.1": {
- "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
- "type": "package",
- "path": "humanizer.core.hu/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.hu.2.14.1.nupkg.sha512",
- "humanizer.core.hu.nuspec",
- "lib/net6.0/hu/Humanizer.resources.dll",
- "lib/netstandard1.0/hu/Humanizer.resources.dll",
- "lib/netstandard2.0/hu/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.hy/2.14.1": {
- "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
- "type": "package",
- "path": "humanizer.core.hy/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.hy.2.14.1.nupkg.sha512",
- "humanizer.core.hy.nuspec",
- "lib/net6.0/hy/Humanizer.resources.dll",
- "lib/netstandard1.0/hy/Humanizer.resources.dll",
- "lib/netstandard2.0/hy/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.id/2.14.1": {
- "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
- "type": "package",
- "path": "humanizer.core.id/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.id.2.14.1.nupkg.sha512",
- "humanizer.core.id.nuspec",
- "lib/net6.0/id/Humanizer.resources.dll",
- "lib/netstandard1.0/id/Humanizer.resources.dll",
- "lib/netstandard2.0/id/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.is/2.14.1": {
- "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
- "type": "package",
- "path": "humanizer.core.is/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.is.2.14.1.nupkg.sha512",
- "humanizer.core.is.nuspec",
- "lib/net6.0/is/Humanizer.resources.dll",
- "lib/netstandard1.0/is/Humanizer.resources.dll",
- "lib/netstandard2.0/is/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.it/2.14.1": {
- "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
- "type": "package",
- "path": "humanizer.core.it/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.it.2.14.1.nupkg.sha512",
- "humanizer.core.it.nuspec",
- "lib/net6.0/it/Humanizer.resources.dll",
- "lib/netstandard1.0/it/Humanizer.resources.dll",
- "lib/netstandard2.0/it/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ja/2.14.1": {
- "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
- "type": "package",
- "path": "humanizer.core.ja/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ja.2.14.1.nupkg.sha512",
- "humanizer.core.ja.nuspec",
- "lib/net6.0/ja/Humanizer.resources.dll",
- "lib/netstandard1.0/ja/Humanizer.resources.dll",
- "lib/netstandard2.0/ja/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
- "type": "package",
- "path": "humanizer.core.ko-kr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ko-kr.2.14.1.nupkg.sha512",
- "humanizer.core.ko-kr.nuspec",
- "lib/netstandard1.0/ko-KR/Humanizer.resources.dll",
- "lib/netstandard2.0/ko-KR/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ku/2.14.1": {
- "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
- "type": "package",
- "path": "humanizer.core.ku/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ku.2.14.1.nupkg.sha512",
- "humanizer.core.ku.nuspec",
- "lib/net6.0/ku/Humanizer.resources.dll",
- "lib/netstandard1.0/ku/Humanizer.resources.dll",
- "lib/netstandard2.0/ku/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.lv/2.14.1": {
- "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
- "type": "package",
- "path": "humanizer.core.lv/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.lv.2.14.1.nupkg.sha512",
- "humanizer.core.lv.nuspec",
- "lib/net6.0/lv/Humanizer.resources.dll",
- "lib/netstandard1.0/lv/Humanizer.resources.dll",
- "lib/netstandard2.0/lv/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
- "type": "package",
- "path": "humanizer.core.ms-my/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ms-my.2.14.1.nupkg.sha512",
- "humanizer.core.ms-my.nuspec",
- "lib/netstandard1.0/ms-MY/Humanizer.resources.dll",
- "lib/netstandard2.0/ms-MY/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.mt/2.14.1": {
- "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
- "type": "package",
- "path": "humanizer.core.mt/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.mt.2.14.1.nupkg.sha512",
- "humanizer.core.mt.nuspec",
- "lib/netstandard1.0/mt/Humanizer.resources.dll",
- "lib/netstandard2.0/mt/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.nb/2.14.1": {
- "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
- "type": "package",
- "path": "humanizer.core.nb/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.nb.2.14.1.nupkg.sha512",
- "humanizer.core.nb.nuspec",
- "lib/net6.0/nb/Humanizer.resources.dll",
- "lib/netstandard1.0/nb/Humanizer.resources.dll",
- "lib/netstandard2.0/nb/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
- "type": "package",
- "path": "humanizer.core.nb-no/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.nb-no.2.14.1.nupkg.sha512",
- "humanizer.core.nb-no.nuspec",
- "lib/net6.0/nb-NO/Humanizer.resources.dll",
- "lib/netstandard1.0/nb-NO/Humanizer.resources.dll",
- "lib/netstandard2.0/nb-NO/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.nl/2.14.1": {
- "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
- "type": "package",
- "path": "humanizer.core.nl/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.nl.2.14.1.nupkg.sha512",
- "humanizer.core.nl.nuspec",
- "lib/net6.0/nl/Humanizer.resources.dll",
- "lib/netstandard1.0/nl/Humanizer.resources.dll",
- "lib/netstandard2.0/nl/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.pl/2.14.1": {
- "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
- "type": "package",
- "path": "humanizer.core.pl/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.pl.2.14.1.nupkg.sha512",
- "humanizer.core.pl.nuspec",
- "lib/net6.0/pl/Humanizer.resources.dll",
- "lib/netstandard1.0/pl/Humanizer.resources.dll",
- "lib/netstandard2.0/pl/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.pt/2.14.1": {
- "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
- "type": "package",
- "path": "humanizer.core.pt/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.pt.2.14.1.nupkg.sha512",
- "humanizer.core.pt.nuspec",
- "lib/net6.0/pt/Humanizer.resources.dll",
- "lib/netstandard1.0/pt/Humanizer.resources.dll",
- "lib/netstandard2.0/pt/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ro/2.14.1": {
- "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
- "type": "package",
- "path": "humanizer.core.ro/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ro.2.14.1.nupkg.sha512",
- "humanizer.core.ro.nuspec",
- "lib/net6.0/ro/Humanizer.resources.dll",
- "lib/netstandard1.0/ro/Humanizer.resources.dll",
- "lib/netstandard2.0/ro/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ru/2.14.1": {
- "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
- "type": "package",
- "path": "humanizer.core.ru/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ru.2.14.1.nupkg.sha512",
- "humanizer.core.ru.nuspec",
- "lib/net6.0/ru/Humanizer.resources.dll",
- "lib/netstandard1.0/ru/Humanizer.resources.dll",
- "lib/netstandard2.0/ru/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sk/2.14.1": {
- "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
- "type": "package",
- "path": "humanizer.core.sk/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sk.2.14.1.nupkg.sha512",
- "humanizer.core.sk.nuspec",
- "lib/net6.0/sk/Humanizer.resources.dll",
- "lib/netstandard1.0/sk/Humanizer.resources.dll",
- "lib/netstandard2.0/sk/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sl/2.14.1": {
- "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
- "type": "package",
- "path": "humanizer.core.sl/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sl.2.14.1.nupkg.sha512",
- "humanizer.core.sl.nuspec",
- "lib/net6.0/sl/Humanizer.resources.dll",
- "lib/netstandard1.0/sl/Humanizer.resources.dll",
- "lib/netstandard2.0/sl/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sr/2.14.1": {
- "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
- "type": "package",
- "path": "humanizer.core.sr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sr.2.14.1.nupkg.sha512",
- "humanizer.core.sr.nuspec",
- "lib/net6.0/sr/Humanizer.resources.dll",
- "lib/netstandard1.0/sr/Humanizer.resources.dll",
- "lib/netstandard2.0/sr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
- "type": "package",
- "path": "humanizer.core.sr-latn/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sr-latn.2.14.1.nupkg.sha512",
- "humanizer.core.sr-latn.nuspec",
- "lib/net6.0/sr-Latn/Humanizer.resources.dll",
- "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll",
- "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sv/2.14.1": {
- "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
- "type": "package",
- "path": "humanizer.core.sv/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sv.2.14.1.nupkg.sha512",
- "humanizer.core.sv.nuspec",
- "lib/net6.0/sv/Humanizer.resources.dll",
- "lib/netstandard1.0/sv/Humanizer.resources.dll",
- "lib/netstandard2.0/sv/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
- "type": "package",
- "path": "humanizer.core.th-th/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.th-th.2.14.1.nupkg.sha512",
- "humanizer.core.th-th.nuspec",
- "lib/netstandard1.0/th-TH/Humanizer.resources.dll",
- "lib/netstandard2.0/th-TH/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.tr/2.14.1": {
- "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
- "type": "package",
- "path": "humanizer.core.tr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.tr.2.14.1.nupkg.sha512",
- "humanizer.core.tr.nuspec",
- "lib/net6.0/tr/Humanizer.resources.dll",
- "lib/netstandard1.0/tr/Humanizer.resources.dll",
- "lib/netstandard2.0/tr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.uk/2.14.1": {
- "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
- "type": "package",
- "path": "humanizer.core.uk/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.uk.2.14.1.nupkg.sha512",
- "humanizer.core.uk.nuspec",
- "lib/net6.0/uk/Humanizer.resources.dll",
- "lib/netstandard1.0/uk/Humanizer.resources.dll",
- "lib/netstandard2.0/uk/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
- "type": "package",
- "path": "humanizer.core.uz-cyrl-uz/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512",
- "humanizer.core.uz-cyrl-uz.nuspec",
- "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll",
- "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll",
- "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
- "type": "package",
- "path": "humanizer.core.uz-latn-uz/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512",
- "humanizer.core.uz-latn-uz.nuspec",
- "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll",
- "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll",
- "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.vi/2.14.1": {
- "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
- "type": "package",
- "path": "humanizer.core.vi/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.vi.2.14.1.nupkg.sha512",
- "humanizer.core.vi.nuspec",
- "lib/net6.0/vi/Humanizer.resources.dll",
- "lib/netstandard1.0/vi/Humanizer.resources.dll",
- "lib/netstandard2.0/vi/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
- "type": "package",
- "path": "humanizer.core.zh-cn/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.zh-cn.2.14.1.nupkg.sha512",
- "humanizer.core.zh-cn.nuspec",
- "lib/net6.0/zh-CN/Humanizer.resources.dll",
- "lib/netstandard1.0/zh-CN/Humanizer.resources.dll",
- "lib/netstandard2.0/zh-CN/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
- "type": "package",
- "path": "humanizer.core.zh-hans/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.zh-hans.2.14.1.nupkg.sha512",
- "humanizer.core.zh-hans.nuspec",
- "lib/net6.0/zh-Hans/Humanizer.resources.dll",
- "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll",
- "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
- "type": "package",
- "path": "humanizer.core.zh-hant/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.zh-hant.2.14.1.nupkg.sha512",
- "humanizer.core.zh-hant.nuspec",
- "lib/net6.0/zh-Hant/Humanizer.resources.dll",
- "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll",
- "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": {
- "sha512": "/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9",
+ "path": "microsoft.aspnetcore.authentication.negotiate/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll",
- "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.xml",
- "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512",
+ "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll",
+ "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.xml",
+ "microsoft.aspnetcore.authentication.negotiate.10.0.8.nupkg.sha512",
"microsoft.aspnetcore.authentication.negotiate.nuspec"
]
},
- "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": {
- "sha512": "T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==",
+ "Microsoft.AspNetCore.JsonPatch/10.0.8": {
+ "sha512": "xGMQwR06DxQSpSUdYvUPLQkjcQUAXnFIUbNoafAcLvUXDnmKNEuddxKvrGoWDT7svt90wWet2Xve5uacO/pVtw==",
"type": "package",
- "path": "microsoft.aspnetcore.connections.abstractions/7.0.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.dll",
- "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.xml",
- "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
- "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml",
- "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512",
- "microsoft.aspnetcore.connections.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.JsonPatch/7.0.9": {
- "sha512": "6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.jsonpatch/7.0.9",
+ "path": "microsoft.aspnetcore.jsonpatch/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
+ "lib/net10.0/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net10.0/Microsoft.AspNetCore.JsonPatch.xml",
"lib/net462/Microsoft.AspNetCore.JsonPatch.dll",
"lib/net462/Microsoft.AspNetCore.JsonPatch.xml",
- "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/net7.0/Microsoft.AspNetCore.JsonPatch.xml",
"lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
"lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
- "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512",
+ "microsoft.aspnetcore.jsonpatch.10.0.8.nupkg.sha512",
"microsoft.aspnetcore.jsonpatch.nuspec"
]
},
- "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": {
- "sha512": "dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==",
+ "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": {
+ "sha512": "LAZmDrEsExc11l7nyQ+efQHTKp4MOskAuPSgkW64LoxrJv2YnElc4IM1VGfIHNRspqVguO5TY5kz2YTRcNSHeQ==",
"type": "package",
- "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9",
+ "path": "microsoft.aspnetcore.mvc.newtonsoftjson/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
- "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
- "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512",
+ "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
+ "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
+ "microsoft.aspnetcore.mvc.newtonsoftjson.10.0.8.nupkg.sha512",
"microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
]
},
- "Microsoft.AspNetCore.OpenApi/7.0.9": {
- "sha512": "5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==",
+ "Microsoft.AspNetCore.OpenApi/10.0.8": {
+ "sha512": "cw24xHE2QaWwyEG9GQwFbjboyabub6Vd80DIItUGENzcQOa/BEnTrXsg2GADqWTmY/3ycqk9ToLGjgvF/VRlGA==",
"type": "package",
- "path": "microsoft.aspnetcore.openapi/7.0.9",
+ "path": "microsoft.aspnetcore.openapi/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll",
- "lib/net7.0/Microsoft.AspNetCore.OpenApi.xml",
- "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512",
+ "analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll",
+ "build/Microsoft.AspNetCore.OpenApi.targets",
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net10.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.10.0.8.nupkg.sha512",
"microsoft.aspnetcore.openapi.nuspec"
]
},
- "Microsoft.AspNetCore.Razor.Language/6.0.11": {
- "sha512": "SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==",
+ "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
+ "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
"type": "package",
- "path": "microsoft.aspnetcore.razor.language/6.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
- "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512",
- "microsoft.aspnetcore.razor.language.nuspec"
- ]
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
+ "path": "microsoft.bcl.asyncinterfaces/8.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
+ "buildTransitive/net462/_._",
+ "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
"microsoft.bcl.asyncinterfaces.nuspec",
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Build/17.3.2": {
- "sha512": "k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==",
+ "Microsoft.Bcl.Cryptography/9.0.4": {
+ "sha512": "YgZYAWzyNuPVtPq6WNm0bqOWNjYaWgl5mBWTGZyNoXitYBUYSp6iUB9AwK0V1mo793qRJUXz2t6UZrWITZSvuQ==",
"type": "package",
- "path": "microsoft.build/17.3.2",
+ "path": "microsoft.bcl.cryptography/9.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net472/Microsoft.Build.dll",
- "lib/net472/Microsoft.Build.pdb",
- "lib/net472/Microsoft.Build.xml",
- "lib/net6.0/Microsoft.Build.dll",
- "lib/net6.0/Microsoft.Build.pdb",
- "lib/net6.0/Microsoft.Build.xml",
- "microsoft.build.17.3.2.nupkg.sha512",
- "microsoft.build.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net472/Microsoft.Build.dll",
- "ref/net472/Microsoft.Build.xml",
- "ref/net6.0/Microsoft.Build.dll",
- "ref/net6.0/Microsoft.Build.xml"
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Bcl.Cryptography.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Cryptography.targets",
+ "lib/net462/Microsoft.Bcl.Cryptography.dll",
+ "lib/net462/Microsoft.Bcl.Cryptography.xml",
+ "lib/net8.0/Microsoft.Bcl.Cryptography.dll",
+ "lib/net8.0/Microsoft.Bcl.Cryptography.xml",
+ "lib/net9.0/Microsoft.Bcl.Cryptography.dll",
+ "lib/net9.0/Microsoft.Bcl.Cryptography.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.Cryptography.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.Cryptography.xml",
+ "microsoft.bcl.cryptography.9.0.4.nupkg.sha512",
+ "microsoft.bcl.cryptography.nuspec",
+ "useSharedDesignerContext.txt"
]
},
- "Microsoft.Build.Framework/17.3.2": {
- "sha512": "iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==",
+ "Microsoft.Build.Framework/18.0.2": {
+ "sha512": "sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==",
"type": "package",
- "path": "microsoft.build.framework/17.3.2",
+ "path": "microsoft.build.framework/18.0.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"MSBuild-NuGet-Icon.png",
"README.md",
+ "lib/net10.0/Microsoft.Build.Framework.dll",
+ "lib/net10.0/Microsoft.Build.Framework.pdb",
+ "lib/net10.0/Microsoft.Build.Framework.xml",
"lib/net472/Microsoft.Build.Framework.dll",
"lib/net472/Microsoft.Build.Framework.pdb",
"lib/net472/Microsoft.Build.Framework.xml",
- "lib/net6.0/Microsoft.Build.Framework.dll",
- "lib/net6.0/Microsoft.Build.Framework.pdb",
- "lib/net6.0/Microsoft.Build.Framework.xml",
- "microsoft.build.framework.17.3.2.nupkg.sha512",
+ "microsoft.build.framework.18.0.2.nupkg.sha512",
"microsoft.build.framework.nuspec",
"notices/THIRDPARTYNOTICES.txt",
+ "ref/net10.0/Microsoft.Build.Framework.dll",
+ "ref/net10.0/Microsoft.Build.Framework.xml",
"ref/net472/Microsoft.Build.Framework.dll",
"ref/net472/Microsoft.Build.Framework.xml",
- "ref/net6.0/Microsoft.Build.Framework.dll",
- "ref/net6.0/Microsoft.Build.Framework.xml",
"ref/netstandard2.0/Microsoft.Build.Framework.dll",
"ref/netstandard2.0/Microsoft.Build.Framework.xml"
]
},
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
+ "Microsoft.CodeAnalysis.Analyzers/3.11.0": {
+ "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==",
"type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
+ "path": "microsoft.codeanalysis.analyzers/3.11.0",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "ThirdPartyNotices.rtf",
+ "ThirdPartyNotices.txt",
"analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
"analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
"analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
@@ -5195,161 +1538,612 @@
"analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "build/Microsoft.CodeAnalysis.Analyzers.props",
- "build/Microsoft.CodeAnalysis.Analyzers.targets",
- "build/config/analysislevel_2_9_8_all.editorconfig",
- "build/config/analysislevel_2_9_8_default.editorconfig",
- "build/config/analysislevel_2_9_8_minimum.editorconfig",
- "build/config/analysislevel_2_9_8_none.editorconfig",
- "build/config/analysislevel_2_9_8_recommended.editorconfig",
- "build/config/analysislevel_3_3_all.editorconfig",
- "build/config/analysislevel_3_3_default.editorconfig",
- "build/config/analysislevel_3_3_minimum.editorconfig",
- "build/config/analysislevel_3_3_none.editorconfig",
- "build/config/analysislevel_3_3_recommended.editorconfig",
- "build/config/analysislevel_3_all.editorconfig",
- "build/config/analysislevel_3_default.editorconfig",
- "build/config/analysislevel_3_minimum.editorconfig",
- "build/config/analysislevel_3_none.editorconfig",
- "build/config/analysislevel_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_recommended.editorconfig",
- "build/config/analysislevellibrary_2_9_8_all.editorconfig",
- "build/config/analysislevellibrary_2_9_8_default.editorconfig",
- "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
- "build/config/analysislevellibrary_2_9_8_none.editorconfig",
- "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
- "build/config/analysislevellibrary_3_3_all.editorconfig",
- "build/config/analysislevellibrary_3_3_default.editorconfig",
- "build/config/analysislevellibrary_3_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_3_none.editorconfig",
- "build/config/analysislevellibrary_3_3_recommended.editorconfig",
- "build/config/analysislevellibrary_3_all.editorconfig",
- "build/config/analysislevellibrary_3_default.editorconfig",
- "build/config/analysislevellibrary_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_none.editorconfig",
- "build/config/analysislevellibrary_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
+ "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props",
+ "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets",
+ "buildTransitive/config/analysislevel_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_all.globalconfig",
+ "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_default.globalconfig",
+ "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_none.globalconfig",
+ "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_all.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_default.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_none.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig",
+ "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig",
"documentation/Analyzer Configuration.md",
"documentation/Microsoft.CodeAnalysis.Analyzers.md",
"documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
+ "documentation/readme.md",
"editorconfig/AllRulesDefault/.editorconfig",
"editorconfig/AllRulesDisabled/.editorconfig",
"editorconfig/AllRulesEnabled/.editorconfig",
@@ -5375,7 +2169,7 @@
"editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
"editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
"editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
- "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
+ "microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512",
"microsoft.codeanalysis.analyzers.nuspec",
"rulesets/AllRulesDefault.ruleset",
"rulesets/AllRulesDisabled.ruleset",
@@ -5406,49 +2200,47 @@
"tools/uninstall.ps1"
]
},
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
+ "Microsoft.CodeAnalysis.Common/5.0.0": {
+ "sha512": "ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==",
"type": "package",
- "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EULA.rtf",
- "ThirdPartyNotices.rtf",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml",
- "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
- "microsoft.codeanalysis.analyzerutilities.nuspec",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/4.4.0": {
- "sha512": "JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/4.4.0",
+ "path": "microsoft.codeanalysis.common/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.pdb",
+ "lib/net8.0/Microsoft.CodeAnalysis.xml",
+ "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.pdb",
+ "lib/net9.0/Microsoft.CodeAnalysis.xml",
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
@@ -5465,35 +2257,51 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "microsoft.codeanalysis.common.4.4.0.nupkg.sha512",
+ "microsoft.codeanalysis.common.5.0.0.nupkg.sha512",
"microsoft.codeanalysis.common.nuspec"
]
},
- "Microsoft.CodeAnalysis.CSharp/4.4.0": {
- "sha512": "eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==",
+ "Microsoft.CodeAnalysis.CSharp/5.0.0": {
+ "sha512": "5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==",
"type": "package",
- "path": "microsoft.codeanalysis.csharp/4.4.0",
+ "path": "microsoft.codeanalysis.csharp/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb",
+ "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml",
+ "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb",
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml",
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
@@ -5510,80 +2318,51 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512",
+ "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512",
"microsoft.codeanalysis.csharp.nuspec"
]
},
- "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": {
- "sha512": "Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": {
+ "sha512": "Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==",
"type": "package",
- "path": "microsoft.codeanalysis.csharp.features/4.4.0",
+ "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.features.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": {
- "sha512": "ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
+ "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
+ "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
+ "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
@@ -5600,152 +2379,51 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512",
+ "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512",
"microsoft.codeanalysis.csharp.workspaces.nuspec"
]
},
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "sha512": "r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==",
+ "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": {
+ "sha512": "ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==",
"type": "package",
- "path": "microsoft.codeanalysis.elfie/1.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.CodeAnalysis.Elfie.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll",
- "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512",
- "microsoft.codeanalysis.elfie.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Features/4.4.0": {
- "sha512": "0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.features/4.4.0",
+ "path": "microsoft.codeanalysis.workspaces.common/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
- "microsoft.codeanalysis.features.4.4.0.nupkg.sha512",
- "microsoft.codeanalysis.features.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Razor/6.0.11": {
- "sha512": "40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.razor/6.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
- "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512",
- "microsoft.codeanalysis.razor.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": {
- "sha512": "RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==",
- "type": "package",
- "path": "microsoft.codeanalysis.scripting.common/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512",
- "microsoft.codeanalysis.scripting.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": {
- "sha512": "6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb",
+ "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml",
+ "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb",
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml",
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
"lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
"lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
@@ -5762,285 +2440,311 @@
"lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512",
+ "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512",
"microsoft.codeanalysis.workspaces.common.nuspec"
]
},
- "Microsoft.CSharp/4.7.0": {
- "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
+ "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": {
+ "sha512": "/G+LVoAGMz6Ae8nm+PGLxSw+F5RjYx/J7irbTO5uKAPw1bxHyQJLc/YOnpDxt+EpPtYxvC9wvBsg/kETZp1F9Q==",
"type": "package",
- "path": "microsoft.csharp/4.7.0",
+ "path": "microsoft.codeanalysis.workspaces.msbuild/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.xml",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/uap10.0.16299/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.7.0.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard2.0/Microsoft.CSharp.dll",
- "ref/netstandard2.0/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/uap10.0.16299/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "useSharedDesignerContext.txt",
- "version.txt"
+ "Icon.png",
+ "ThirdPartyNotices.rtf",
+ "contentFiles/any/any/BuildHost-net472/Microsoft.Build.Locator.dll",
+ "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe",
+ "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config",
+ "contentFiles/any/any/BuildHost-net472/Microsoft.IO.Redist.dll",
+ "contentFiles/any/any/BuildHost-net472/Newtonsoft.Json.dll",
+ "contentFiles/any/any/BuildHost-net472/System.Buffers.dll",
+ "contentFiles/any/any/BuildHost-net472/System.Collections.Immutable.dll",
+ "contentFiles/any/any/BuildHost-net472/System.CommandLine.dll",
+ "contentFiles/any/any/BuildHost-net472/System.Memory.dll",
+ "contentFiles/any/any/BuildHost-net472/System.Numerics.Vectors.dll",
+ "contentFiles/any/any/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll",
+ "contentFiles/any/any/BuildHost-net472/System.Threading.Tasks.Extensions.dll",
+ "contentFiles/any/any/BuildHost-net472/cs/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/de/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/es/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/fr/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/it/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/ja/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/ko/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/pl/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/pt-BR/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/ru/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/tr/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/Microsoft.Build.Locator.dll",
+ "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json",
+ "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll",
+ "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json",
+ "contentFiles/any/any/BuildHost-netcore/Newtonsoft.Json.dll",
+ "contentFiles/any/any/BuildHost-netcore/System.Collections.Immutable.dll",
+ "contentFiles/any/any/BuildHost-netcore/System.CommandLine.dll",
+ "contentFiles/any/any/BuildHost-netcore/cs/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/de/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/es/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/fr/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/it/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/ja/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/ko/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/pl/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/ru/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/tr/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll",
+ "contentFiles/any/any/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll",
+ "lib/net472/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll",
+ "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
+ "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
+ "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
+ "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
+ "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
+ "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
+ "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
+ "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
+ "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
+ "microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512",
+ "microsoft.codeanalysis.workspaces.msbuild.nuspec"
]
},
- "Microsoft.Data.SqlClient/5.0.2": {
- "sha512": "mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==",
+ "Microsoft.Data.SqlClient/6.1.1": {
+ "sha512": "syGQmIUPAYYHAHyTD8FCkTNThpQWvoA7crnIQRMfp8dyB5A2cWU3fQexlRTFkVmV7S0TjVmthi0LJEFVjHo8AQ==",
"type": "package",
- "path": "microsoft.data.sqlclient/5.0.2",
+ "path": "microsoft.data.sqlclient/6.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
+ "README.md",
"dotnet.png",
"lib/net462/Microsoft.Data.SqlClient.dll",
- "lib/net462/Microsoft.Data.SqlClient.pdb",
"lib/net462/Microsoft.Data.SqlClient.xml",
+ "lib/net462/cs/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/pl/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net462/tr/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
"lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
- "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
- "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
- "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
+ "lib/net8.0/Microsoft.Data.SqlClient.dll",
+ "lib/net8.0/Microsoft.Data.SqlClient.xml",
+ "lib/net8.0/cs/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/pl/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/tr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/Microsoft.Data.SqlClient.dll",
+ "lib/net9.0/Microsoft.Data.SqlClient.xml",
+ "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
"lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
"lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "microsoft.data.sqlclient.5.0.2.nupkg.sha512",
+ "microsoft.data.sqlclient.6.1.1.nupkg.sha512",
"microsoft.data.sqlclient.nuspec",
"ref/net462/Microsoft.Data.SqlClient.dll",
- "ref/net462/Microsoft.Data.SqlClient.pdb",
"ref/net462/Microsoft.Data.SqlClient.xml",
- "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
- "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
- "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
+ "ref/net8.0/Microsoft.Data.SqlClient.dll",
+ "ref/net8.0/Microsoft.Data.SqlClient.xml",
+ "ref/net9.0/Microsoft.Data.SqlClient.dll",
+ "ref/net9.0/Microsoft.Data.SqlClient.xml",
"ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
"ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
- "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
+ "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll",
"runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
+ "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll"
]
},
- "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": {
- "sha512": "y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==",
+ "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": {
+ "sha512": "f+pRODTWX7Y67jXO3T5S2dIPZ9qMJNySjlZT/TKmWVNWe19N8jcWmHaqHnnchaq3gxEKv1SWVY5EFzOD06l41w==",
"type": "package",
- "path": "microsoft.data.sqlclient.sni.runtime/5.0.1",
+ "path": "microsoft.data.sqlclient.sni.runtime/6.0.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"dotnet.png",
- "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512",
+ "microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512",
"microsoft.data.sqlclient.sni.runtime.nuspec",
- "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
]
},
- "Microsoft.DiaSymReader/1.4.0": {
- "sha512": "iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==",
+ "Microsoft.EntityFrameworkCore/10.0.8": {
+ "sha512": "EJx+fIBMgBlgD+ublKCn+GTOJkw3UqV7xOjYWBRVdUYyIm8UfvAsmSOPFiIInsWTHyMEYUJ9gCJY1jwX+6UB7w==",
"type": "package",
- "path": "microsoft.diasymreader/1.4.0",
+ "path": "microsoft.entityframeworkcore/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "lib/net20/Microsoft.DiaSymReader.dll",
- "lib/net20/Microsoft.DiaSymReader.pdb",
- "lib/net20/Microsoft.DiaSymReader.xml",
- "lib/netstandard1.1/Microsoft.DiaSymReader.dll",
- "lib/netstandard1.1/Microsoft.DiaSymReader.pdb",
- "lib/netstandard1.1/Microsoft.DiaSymReader.xml",
- "microsoft.diasymreader.1.4.0.nupkg.sha512",
- "microsoft.diasymreader.nuspec"
- ]
- },
- "Microsoft.DotNet.Scaffolding.Shared/7.0.8": {
- "sha512": "QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==",
- "type": "package",
- "path": "microsoft.dotnet.scaffolding.shared/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll",
- "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.xml",
- "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512",
- "microsoft.dotnet.scaffolding.shared.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore/7.0.9": {
- "sha512": "9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/7.0.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props",
- "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
- "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.7.0.9.nupkg.sha512",
+ "PACKAGE.md",
+ "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.dll",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.xml",
+ "microsoft.entityframeworkcore.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": {
- "sha512": "cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==",
+ "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": {
+ "sha512": "jbKDXWPZQhuPHygMnwzNOqxBADVcpRVytcKYZsA++QqhPkpF93Ta8o5mbJQGrARSjlkr9WtOaADV97EDMOZ7DA==",
"type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/7.0.9",
+ "path": "microsoft.entityframeworkcore.abstractions/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512",
+ "PACKAGE.md",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
+ "microsoft.entityframeworkcore.abstractions.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.abstractions.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {
- "sha512": "VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==",
+ "Microsoft.EntityFrameworkCore.Analyzers/10.0.8": {
+ "sha512": "M3BZ8JH8rB6BE7dO2g9iVbrHLnEz9wMXT6q+tDR6Nq3gyP3KmBj5OTiZGxyF3vesjOQNKanYoPGSNBR4kR2llg==",
"type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/7.0.9",
+ "path": "microsoft.entityframeworkcore.analyzers/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512",
+ "docs/PACKAGE.md",
+ "microsoft.entityframeworkcore.analyzers.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.analyzers.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Design/7.0.9": {
- "sha512": "tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==",
+ "Microsoft.EntityFrameworkCore.Design/10.0.8": {
+ "sha512": "LlUUXdfqKFk7RlGExojVP8GI6hN9O21WjpxFnp5mLeGjd9iYdwywIgK9WOLvPM2hrknrRyHR/i43FQdw/oCrOw==",
"type": "package",
- "path": "microsoft.entityframeworkcore.design/7.0.9",
+ "path": "microsoft.entityframeworkcore.design/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
- "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512",
+ "PACKAGE.md",
+ "build/net10.0/Microsoft.EntityFrameworkCore.Design.props",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Design.xml",
+ "microsoft.entityframeworkcore.design.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.design.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Relational/7.0.9": {
- "sha512": "u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==",
+ "Microsoft.EntityFrameworkCore.Relational/10.0.8": {
+ "sha512": "UU3diAD2wwZveye2rnrwaF/wvJ9tm5iL2fuY9TTap6/iGQK1OO29M1BzXZRlRPVH/dByt5w/pISBSFtyR7hTqw==",
"type": "package",
- "path": "microsoft.entityframeworkcore.relational/7.0.9",
+ "path": "microsoft.entityframeworkcore.relational/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512",
+ "PACKAGE.md",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml",
+ "microsoft.entityframeworkcore.relational.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.relational.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": {
- "sha512": "19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==",
+ "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": {
+ "sha512": "A+FLIsTH9l5DG2iD6QW6Mfwlvr+BjWme/jJ2hvwmmENTr7lR1UWmgCtKCjDYcHxqdAD15bb4PgQnSzw12DV/pw==",
"type": "package",
- "path": "microsoft.entityframeworkcore.sqlserver/7.0.9",
+ "path": "microsoft.entityframeworkcore.sqlserver/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
- "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
- "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512",
+ "PACKAGE.md",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
+ "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
+ "microsoft.entityframeworkcore.sqlserver.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.sqlserver.nuspec"
]
},
- "Microsoft.EntityFrameworkCore.Tools/7.0.9": {
- "sha512": "GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==",
+ "Microsoft.EntityFrameworkCore.Tools/10.0.8": {
+ "sha512": "bKtoSviiOUX75jM5bzSnBGPUjb2CfbBHdUDsjYv2X3/G3ZMMG18VpJMMAcP0tD8Xepu+wLl2soNJiWH6XxXWdQ==",
"type": "package",
- "path": "microsoft.entityframeworkcore.tools/7.0.9",
+ "path": "microsoft.entityframeworkcore.tools/10.0.8",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "lib/net6.0/_._",
- "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512",
+ "docs/PACKAGE.md",
+ "lib/net8.0/_._",
+ "microsoft.entityframeworkcore.tools.10.0.8.nupkg.sha512",
"microsoft.entityframeworkcore.tools.nuspec",
"tools/EntityFrameworkCore.PS2.psd1",
"tools/EntityFrameworkCore.PS2.psm1",
@@ -6048,17 +2752,17 @@
"tools/EntityFrameworkCore.psm1",
"tools/about_EntityFrameworkCore.help.txt",
"tools/init.ps1",
- "tools/net461/any/ef.exe",
- "tools/net461/win-arm64/ef.exe",
- "tools/net461/win-x86/ef.exe",
- "tools/netcoreapp2.0/any/ef.dll",
- "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
+ "tools/net472/any/ef.exe",
+ "tools/net472/win-arm64/ef.exe",
+ "tools/net472/win-x86/ef.exe",
+ "tools/net8.0/any/ef.dll",
+ "tools/net8.0/any/ef.runtimeconfig.json"
]
},
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
+ "Microsoft.Extensions.ApiDescription.Server/10.0.0": {
+ "sha512": "NCWCGiwRwje8773yzPQhvucYnnfeR+ZoB1VRIrIMp4uaeUNw7jvEPHij3HIbwCDuNCrNcphA00KSAR9yD9qmbg==",
"type": "package",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
+ "path": "microsoft.extensions.apidescription.server/10.0.0",
"hasTools": true,
"files": [
".nupkg.metadata",
@@ -6068,812 +2772,480 @@
"build/Microsoft.Extensions.ApiDescription.Server.targets",
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
- "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "microsoft.extensions.apidescription.server.10.0.0.nupkg.sha512",
"microsoft.extensions.apidescription.server.nuspec",
"tools/Newtonsoft.Json.dll",
"tools/dotnet-getdocument.deps.json",
"tools/dotnet-getdocument.dll",
"tools/dotnet-getdocument.runtimeconfig.json",
- "tools/net461-x86/GetDocument.Insider.exe",
- "tools/net461-x86/GetDocument.Insider.exe.config",
- "tools/net461-x86/Microsoft.Win32.Primitives.dll",
- "tools/net461-x86/System.AppContext.dll",
- "tools/net461-x86/System.Buffers.dll",
- "tools/net461-x86/System.Collections.Concurrent.dll",
- "tools/net461-x86/System.Collections.NonGeneric.dll",
- "tools/net461-x86/System.Collections.Specialized.dll",
- "tools/net461-x86/System.Collections.dll",
- "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
- "tools/net461-x86/System.ComponentModel.Primitives.dll",
- "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
- "tools/net461-x86/System.ComponentModel.dll",
- "tools/net461-x86/System.Console.dll",
- "tools/net461-x86/System.Data.Common.dll",
- "tools/net461-x86/System.Diagnostics.Contracts.dll",
- "tools/net461-x86/System.Diagnostics.Debug.dll",
- "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
- "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
- "tools/net461-x86/System.Diagnostics.Process.dll",
- "tools/net461-x86/System.Diagnostics.StackTrace.dll",
- "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
- "tools/net461-x86/System.Diagnostics.Tools.dll",
- "tools/net461-x86/System.Diagnostics.TraceSource.dll",
- "tools/net461-x86/System.Diagnostics.Tracing.dll",
- "tools/net461-x86/System.Drawing.Primitives.dll",
- "tools/net461-x86/System.Dynamic.Runtime.dll",
- "tools/net461-x86/System.Globalization.Calendars.dll",
- "tools/net461-x86/System.Globalization.Extensions.dll",
- "tools/net461-x86/System.Globalization.dll",
- "tools/net461-x86/System.IO.Compression.ZipFile.dll",
- "tools/net461-x86/System.IO.Compression.dll",
- "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
- "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
- "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
- "tools/net461-x86/System.IO.FileSystem.dll",
- "tools/net461-x86/System.IO.IsolatedStorage.dll",
- "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
- "tools/net461-x86/System.IO.Pipes.dll",
- "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
- "tools/net461-x86/System.IO.dll",
- "tools/net461-x86/System.Linq.Expressions.dll",
- "tools/net461-x86/System.Linq.Parallel.dll",
- "tools/net461-x86/System.Linq.Queryable.dll",
- "tools/net461-x86/System.Linq.dll",
- "tools/net461-x86/System.Memory.dll",
- "tools/net461-x86/System.Net.Http.dll",
- "tools/net461-x86/System.Net.NameResolution.dll",
- "tools/net461-x86/System.Net.NetworkInformation.dll",
- "tools/net461-x86/System.Net.Ping.dll",
- "tools/net461-x86/System.Net.Primitives.dll",
- "tools/net461-x86/System.Net.Requests.dll",
- "tools/net461-x86/System.Net.Security.dll",
- "tools/net461-x86/System.Net.Sockets.dll",
- "tools/net461-x86/System.Net.WebHeaderCollection.dll",
- "tools/net461-x86/System.Net.WebSockets.Client.dll",
- "tools/net461-x86/System.Net.WebSockets.dll",
- "tools/net461-x86/System.Numerics.Vectors.dll",
- "tools/net461-x86/System.ObjectModel.dll",
- "tools/net461-x86/System.Reflection.Extensions.dll",
- "tools/net461-x86/System.Reflection.Primitives.dll",
- "tools/net461-x86/System.Reflection.dll",
- "tools/net461-x86/System.Resources.Reader.dll",
- "tools/net461-x86/System.Resources.ResourceManager.dll",
- "tools/net461-x86/System.Resources.Writer.dll",
- "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
- "tools/net461-x86/System.Runtime.Extensions.dll",
- "tools/net461-x86/System.Runtime.Handles.dll",
- "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
- "tools/net461-x86/System.Runtime.InteropServices.dll",
- "tools/net461-x86/System.Runtime.Numerics.dll",
- "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
- "tools/net461-x86/System.Runtime.Serialization.Json.dll",
- "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
- "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
- "tools/net461-x86/System.Runtime.dll",
- "tools/net461-x86/System.Security.Claims.dll",
- "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
- "tools/net461-x86/System.Security.Cryptography.Csp.dll",
- "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
- "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
- "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
- "tools/net461-x86/System.Security.Principal.dll",
- "tools/net461-x86/System.Security.SecureString.dll",
- "tools/net461-x86/System.Text.Encoding.Extensions.dll",
- "tools/net461-x86/System.Text.Encoding.dll",
- "tools/net461-x86/System.Text.RegularExpressions.dll",
- "tools/net461-x86/System.Threading.Overlapped.dll",
- "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
- "tools/net461-x86/System.Threading.Tasks.dll",
- "tools/net461-x86/System.Threading.Thread.dll",
- "tools/net461-x86/System.Threading.ThreadPool.dll",
- "tools/net461-x86/System.Threading.Timer.dll",
- "tools/net461-x86/System.Threading.dll",
- "tools/net461-x86/System.ValueTuple.dll",
- "tools/net461-x86/System.Xml.ReaderWriter.dll",
- "tools/net461-x86/System.Xml.XDocument.dll",
- "tools/net461-x86/System.Xml.XPath.XDocument.dll",
- "tools/net461-x86/System.Xml.XPath.dll",
- "tools/net461-x86/System.Xml.XmlDocument.dll",
- "tools/net461-x86/System.Xml.XmlSerializer.dll",
- "tools/net461-x86/netstandard.dll",
- "tools/net461/GetDocument.Insider.exe",
- "tools/net461/GetDocument.Insider.exe.config",
- "tools/net461/Microsoft.Win32.Primitives.dll",
- "tools/net461/System.AppContext.dll",
- "tools/net461/System.Buffers.dll",
- "tools/net461/System.Collections.Concurrent.dll",
- "tools/net461/System.Collections.NonGeneric.dll",
- "tools/net461/System.Collections.Specialized.dll",
- "tools/net461/System.Collections.dll",
- "tools/net461/System.ComponentModel.EventBasedAsync.dll",
- "tools/net461/System.ComponentModel.Primitives.dll",
- "tools/net461/System.ComponentModel.TypeConverter.dll",
- "tools/net461/System.ComponentModel.dll",
- "tools/net461/System.Console.dll",
- "tools/net461/System.Data.Common.dll",
- "tools/net461/System.Diagnostics.Contracts.dll",
- "tools/net461/System.Diagnostics.Debug.dll",
- "tools/net461/System.Diagnostics.DiagnosticSource.dll",
- "tools/net461/System.Diagnostics.FileVersionInfo.dll",
- "tools/net461/System.Diagnostics.Process.dll",
- "tools/net461/System.Diagnostics.StackTrace.dll",
- "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
- "tools/net461/System.Diagnostics.Tools.dll",
- "tools/net461/System.Diagnostics.TraceSource.dll",
- "tools/net461/System.Diagnostics.Tracing.dll",
- "tools/net461/System.Drawing.Primitives.dll",
- "tools/net461/System.Dynamic.Runtime.dll",
- "tools/net461/System.Globalization.Calendars.dll",
- "tools/net461/System.Globalization.Extensions.dll",
- "tools/net461/System.Globalization.dll",
- "tools/net461/System.IO.Compression.ZipFile.dll",
- "tools/net461/System.IO.Compression.dll",
- "tools/net461/System.IO.FileSystem.DriveInfo.dll",
- "tools/net461/System.IO.FileSystem.Primitives.dll",
- "tools/net461/System.IO.FileSystem.Watcher.dll",
- "tools/net461/System.IO.FileSystem.dll",
- "tools/net461/System.IO.IsolatedStorage.dll",
- "tools/net461/System.IO.MemoryMappedFiles.dll",
- "tools/net461/System.IO.Pipes.dll",
- "tools/net461/System.IO.UnmanagedMemoryStream.dll",
- "tools/net461/System.IO.dll",
- "tools/net461/System.Linq.Expressions.dll",
- "tools/net461/System.Linq.Parallel.dll",
- "tools/net461/System.Linq.Queryable.dll",
- "tools/net461/System.Linq.dll",
- "tools/net461/System.Memory.dll",
- "tools/net461/System.Net.Http.dll",
- "tools/net461/System.Net.NameResolution.dll",
- "tools/net461/System.Net.NetworkInformation.dll",
- "tools/net461/System.Net.Ping.dll",
- "tools/net461/System.Net.Primitives.dll",
- "tools/net461/System.Net.Requests.dll",
- "tools/net461/System.Net.Security.dll",
- "tools/net461/System.Net.Sockets.dll",
- "tools/net461/System.Net.WebHeaderCollection.dll",
- "tools/net461/System.Net.WebSockets.Client.dll",
- "tools/net461/System.Net.WebSockets.dll",
- "tools/net461/System.Numerics.Vectors.dll",
- "tools/net461/System.ObjectModel.dll",
- "tools/net461/System.Reflection.Extensions.dll",
- "tools/net461/System.Reflection.Primitives.dll",
- "tools/net461/System.Reflection.dll",
- "tools/net461/System.Resources.Reader.dll",
- "tools/net461/System.Resources.ResourceManager.dll",
- "tools/net461/System.Resources.Writer.dll",
- "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
- "tools/net461/System.Runtime.Extensions.dll",
- "tools/net461/System.Runtime.Handles.dll",
- "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
- "tools/net461/System.Runtime.InteropServices.dll",
- "tools/net461/System.Runtime.Numerics.dll",
- "tools/net461/System.Runtime.Serialization.Formatters.dll",
- "tools/net461/System.Runtime.Serialization.Json.dll",
- "tools/net461/System.Runtime.Serialization.Primitives.dll",
- "tools/net461/System.Runtime.Serialization.Xml.dll",
- "tools/net461/System.Runtime.dll",
- "tools/net461/System.Security.Claims.dll",
- "tools/net461/System.Security.Cryptography.Algorithms.dll",
- "tools/net461/System.Security.Cryptography.Csp.dll",
- "tools/net461/System.Security.Cryptography.Encoding.dll",
- "tools/net461/System.Security.Cryptography.Primitives.dll",
- "tools/net461/System.Security.Cryptography.X509Certificates.dll",
- "tools/net461/System.Security.Principal.dll",
- "tools/net461/System.Security.SecureString.dll",
- "tools/net461/System.Text.Encoding.Extensions.dll",
- "tools/net461/System.Text.Encoding.dll",
- "tools/net461/System.Text.RegularExpressions.dll",
- "tools/net461/System.Threading.Overlapped.dll",
- "tools/net461/System.Threading.Tasks.Parallel.dll",
- "tools/net461/System.Threading.Tasks.dll",
- "tools/net461/System.Threading.Thread.dll",
- "tools/net461/System.Threading.ThreadPool.dll",
- "tools/net461/System.Threading.Timer.dll",
- "tools/net461/System.Threading.dll",
- "tools/net461/System.ValueTuple.dll",
- "tools/net461/System.Xml.ReaderWriter.dll",
- "tools/net461/System.Xml.XDocument.dll",
- "tools/net461/System.Xml.XPath.XDocument.dll",
- "tools/net461/System.Xml.XPath.dll",
- "tools/net461/System.Xml.XmlDocument.dll",
- "tools/net461/System.Xml.XmlSerializer.dll",
- "tools/net461/netstandard.dll",
- "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
- "tools/netcoreapp2.1/GetDocument.Insider.dll",
- "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
- "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
+ "tools/net10.0/GetDocument.Insider.deps.json",
+ "tools/net10.0/GetDocument.Insider.dll",
+ "tools/net10.0/GetDocument.Insider.exe",
+ "tools/net10.0/GetDocument.Insider.runtimeconfig.json",
+ "tools/net10.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
+ "tools/net10.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
+ "tools/net10.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
+ "tools/net10.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
+ "tools/net10.0/Microsoft.AspNetCore.Http.Features.dll",
+ "tools/net10.0/Microsoft.AspNetCore.Http.Features.xml",
+ "tools/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "tools/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "tools/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
+ "tools/net10.0/Microsoft.Extensions.Features.dll",
+ "tools/net10.0/Microsoft.Extensions.Features.xml",
+ "tools/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "tools/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "tools/net10.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "tools/net10.0/Microsoft.Extensions.Options.dll",
+ "tools/net10.0/Microsoft.Extensions.Primitives.dll",
+ "tools/net10.0/Microsoft.Net.Http.Headers.dll",
+ "tools/net10.0/Microsoft.Net.Http.Headers.xml",
+ "tools/net10.0/Microsoft.OpenApi.dll",
+ "tools/net462-x86/GetDocument.Insider.exe",
+ "tools/net462-x86/GetDocument.Insider.exe.config",
+ "tools/net462-x86/Microsoft.Bcl.AsyncInterfaces.dll",
+ "tools/net462-x86/Microsoft.OpenApi.dll",
+ "tools/net462-x86/Microsoft.Win32.Primitives.dll",
+ "tools/net462-x86/System.AppContext.dll",
+ "tools/net462-x86/System.Buffers.dll",
+ "tools/net462-x86/System.Collections.Concurrent.dll",
+ "tools/net462-x86/System.Collections.NonGeneric.dll",
+ "tools/net462-x86/System.Collections.Specialized.dll",
+ "tools/net462-x86/System.Collections.dll",
+ "tools/net462-x86/System.ComponentModel.EventBasedAsync.dll",
+ "tools/net462-x86/System.ComponentModel.Primitives.dll",
+ "tools/net462-x86/System.ComponentModel.TypeConverter.dll",
+ "tools/net462-x86/System.ComponentModel.dll",
+ "tools/net462-x86/System.Console.dll",
+ "tools/net462-x86/System.Data.Common.dll",
+ "tools/net462-x86/System.Diagnostics.Contracts.dll",
+ "tools/net462-x86/System.Diagnostics.Debug.dll",
+ "tools/net462-x86/System.Diagnostics.DiagnosticSource.dll",
+ "tools/net462-x86/System.Diagnostics.FileVersionInfo.dll",
+ "tools/net462-x86/System.Diagnostics.Process.dll",
+ "tools/net462-x86/System.Diagnostics.StackTrace.dll",
+ "tools/net462-x86/System.Diagnostics.TextWriterTraceListener.dll",
+ "tools/net462-x86/System.Diagnostics.Tools.dll",
+ "tools/net462-x86/System.Diagnostics.TraceSource.dll",
+ "tools/net462-x86/System.Diagnostics.Tracing.dll",
+ "tools/net462-x86/System.Drawing.Primitives.dll",
+ "tools/net462-x86/System.Dynamic.Runtime.dll",
+ "tools/net462-x86/System.Globalization.Calendars.dll",
+ "tools/net462-x86/System.Globalization.Extensions.dll",
+ "tools/net462-x86/System.Globalization.dll",
+ "tools/net462-x86/System.IO.Compression.ZipFile.dll",
+ "tools/net462-x86/System.IO.Compression.dll",
+ "tools/net462-x86/System.IO.FileSystem.DriveInfo.dll",
+ "tools/net462-x86/System.IO.FileSystem.Primitives.dll",
+ "tools/net462-x86/System.IO.FileSystem.Watcher.dll",
+ "tools/net462-x86/System.IO.FileSystem.dll",
+ "tools/net462-x86/System.IO.IsolatedStorage.dll",
+ "tools/net462-x86/System.IO.MemoryMappedFiles.dll",
+ "tools/net462-x86/System.IO.Pipes.dll",
+ "tools/net462-x86/System.IO.UnmanagedMemoryStream.dll",
+ "tools/net462-x86/System.IO.dll",
+ "tools/net462-x86/System.Linq.Expressions.dll",
+ "tools/net462-x86/System.Linq.Parallel.dll",
+ "tools/net462-x86/System.Linq.Queryable.dll",
+ "tools/net462-x86/System.Linq.dll",
+ "tools/net462-x86/System.Memory.dll",
+ "tools/net462-x86/System.Net.Http.dll",
+ "tools/net462-x86/System.Net.NameResolution.dll",
+ "tools/net462-x86/System.Net.NetworkInformation.dll",
+ "tools/net462-x86/System.Net.Ping.dll",
+ "tools/net462-x86/System.Net.Primitives.dll",
+ "tools/net462-x86/System.Net.Requests.dll",
+ "tools/net462-x86/System.Net.Security.dll",
+ "tools/net462-x86/System.Net.Sockets.dll",
+ "tools/net462-x86/System.Net.WebHeaderCollection.dll",
+ "tools/net462-x86/System.Net.WebSockets.Client.dll",
+ "tools/net462-x86/System.Net.WebSockets.dll",
+ "tools/net462-x86/System.Numerics.Vectors.dll",
+ "tools/net462-x86/System.ObjectModel.dll",
+ "tools/net462-x86/System.Reflection.Extensions.dll",
+ "tools/net462-x86/System.Reflection.Primitives.dll",
+ "tools/net462-x86/System.Reflection.dll",
+ "tools/net462-x86/System.Resources.Reader.dll",
+ "tools/net462-x86/System.Resources.ResourceManager.dll",
+ "tools/net462-x86/System.Resources.Writer.dll",
+ "tools/net462-x86/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net462-x86/System.Runtime.CompilerServices.VisualC.dll",
+ "tools/net462-x86/System.Runtime.Extensions.dll",
+ "tools/net462-x86/System.Runtime.Handles.dll",
+ "tools/net462-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "tools/net462-x86/System.Runtime.InteropServices.dll",
+ "tools/net462-x86/System.Runtime.Numerics.dll",
+ "tools/net462-x86/System.Runtime.Serialization.Formatters.dll",
+ "tools/net462-x86/System.Runtime.Serialization.Json.dll",
+ "tools/net462-x86/System.Runtime.Serialization.Primitives.dll",
+ "tools/net462-x86/System.Runtime.Serialization.Xml.dll",
+ "tools/net462-x86/System.Runtime.dll",
+ "tools/net462-x86/System.Security.Claims.dll",
+ "tools/net462-x86/System.Security.Cryptography.Algorithms.dll",
+ "tools/net462-x86/System.Security.Cryptography.Csp.dll",
+ "tools/net462-x86/System.Security.Cryptography.Encoding.dll",
+ "tools/net462-x86/System.Security.Cryptography.Primitives.dll",
+ "tools/net462-x86/System.Security.Cryptography.X509Certificates.dll",
+ "tools/net462-x86/System.Security.Principal.dll",
+ "tools/net462-x86/System.Security.SecureString.dll",
+ "tools/net462-x86/System.Text.Encoding.Extensions.dll",
+ "tools/net462-x86/System.Text.Encoding.dll",
+ "tools/net462-x86/System.Text.Encodings.Web.dll",
+ "tools/net462-x86/System.Text.Json.dll",
+ "tools/net462-x86/System.Text.RegularExpressions.dll",
+ "tools/net462-x86/System.Threading.Overlapped.dll",
+ "tools/net462-x86/System.Threading.Tasks.Extensions.dll",
+ "tools/net462-x86/System.Threading.Tasks.Parallel.dll",
+ "tools/net462-x86/System.Threading.Tasks.dll",
+ "tools/net462-x86/System.Threading.Thread.dll",
+ "tools/net462-x86/System.Threading.ThreadPool.dll",
+ "tools/net462-x86/System.Threading.Timer.dll",
+ "tools/net462-x86/System.Threading.dll",
+ "tools/net462-x86/System.ValueTuple.dll",
+ "tools/net462-x86/System.Xml.ReaderWriter.dll",
+ "tools/net462-x86/System.Xml.XDocument.dll",
+ "tools/net462-x86/System.Xml.XPath.XDocument.dll",
+ "tools/net462-x86/System.Xml.XPath.dll",
+ "tools/net462-x86/System.Xml.XmlDocument.dll",
+ "tools/net462-x86/System.Xml.XmlSerializer.dll",
+ "tools/net462-x86/netstandard.dll",
+ "tools/net462/GetDocument.Insider.exe",
+ "tools/net462/GetDocument.Insider.exe.config",
+ "tools/net462/Microsoft.Bcl.AsyncInterfaces.dll",
+ "tools/net462/Microsoft.OpenApi.dll",
+ "tools/net462/Microsoft.Win32.Primitives.dll",
+ "tools/net462/System.AppContext.dll",
+ "tools/net462/System.Buffers.dll",
+ "tools/net462/System.Collections.Concurrent.dll",
+ "tools/net462/System.Collections.NonGeneric.dll",
+ "tools/net462/System.Collections.Specialized.dll",
+ "tools/net462/System.Collections.dll",
+ "tools/net462/System.ComponentModel.EventBasedAsync.dll",
+ "tools/net462/System.ComponentModel.Primitives.dll",
+ "tools/net462/System.ComponentModel.TypeConverter.dll",
+ "tools/net462/System.ComponentModel.dll",
+ "tools/net462/System.Console.dll",
+ "tools/net462/System.Data.Common.dll",
+ "tools/net462/System.Diagnostics.Contracts.dll",
+ "tools/net462/System.Diagnostics.Debug.dll",
+ "tools/net462/System.Diagnostics.DiagnosticSource.dll",
+ "tools/net462/System.Diagnostics.FileVersionInfo.dll",
+ "tools/net462/System.Diagnostics.Process.dll",
+ "tools/net462/System.Diagnostics.StackTrace.dll",
+ "tools/net462/System.Diagnostics.TextWriterTraceListener.dll",
+ "tools/net462/System.Diagnostics.Tools.dll",
+ "tools/net462/System.Diagnostics.TraceSource.dll",
+ "tools/net462/System.Diagnostics.Tracing.dll",
+ "tools/net462/System.Drawing.Primitives.dll",
+ "tools/net462/System.Dynamic.Runtime.dll",
+ "tools/net462/System.Globalization.Calendars.dll",
+ "tools/net462/System.Globalization.Extensions.dll",
+ "tools/net462/System.Globalization.dll",
+ "tools/net462/System.IO.Compression.ZipFile.dll",
+ "tools/net462/System.IO.Compression.dll",
+ "tools/net462/System.IO.FileSystem.DriveInfo.dll",
+ "tools/net462/System.IO.FileSystem.Primitives.dll",
+ "tools/net462/System.IO.FileSystem.Watcher.dll",
+ "tools/net462/System.IO.FileSystem.dll",
+ "tools/net462/System.IO.IsolatedStorage.dll",
+ "tools/net462/System.IO.MemoryMappedFiles.dll",
+ "tools/net462/System.IO.Pipes.dll",
+ "tools/net462/System.IO.UnmanagedMemoryStream.dll",
+ "tools/net462/System.IO.dll",
+ "tools/net462/System.Linq.Expressions.dll",
+ "tools/net462/System.Linq.Parallel.dll",
+ "tools/net462/System.Linq.Queryable.dll",
+ "tools/net462/System.Linq.dll",
+ "tools/net462/System.Memory.dll",
+ "tools/net462/System.Net.Http.dll",
+ "tools/net462/System.Net.NameResolution.dll",
+ "tools/net462/System.Net.NetworkInformation.dll",
+ "tools/net462/System.Net.Ping.dll",
+ "tools/net462/System.Net.Primitives.dll",
+ "tools/net462/System.Net.Requests.dll",
+ "tools/net462/System.Net.Security.dll",
+ "tools/net462/System.Net.Sockets.dll",
+ "tools/net462/System.Net.WebHeaderCollection.dll",
+ "tools/net462/System.Net.WebSockets.Client.dll",
+ "tools/net462/System.Net.WebSockets.dll",
+ "tools/net462/System.Numerics.Vectors.dll",
+ "tools/net462/System.ObjectModel.dll",
+ "tools/net462/System.Reflection.Extensions.dll",
+ "tools/net462/System.Reflection.Primitives.dll",
+ "tools/net462/System.Reflection.dll",
+ "tools/net462/System.Resources.Reader.dll",
+ "tools/net462/System.Resources.ResourceManager.dll",
+ "tools/net462/System.Resources.Writer.dll",
+ "tools/net462/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net462/System.Runtime.CompilerServices.VisualC.dll",
+ "tools/net462/System.Runtime.Extensions.dll",
+ "tools/net462/System.Runtime.Handles.dll",
+ "tools/net462/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "tools/net462/System.Runtime.InteropServices.dll",
+ "tools/net462/System.Runtime.Numerics.dll",
+ "tools/net462/System.Runtime.Serialization.Formatters.dll",
+ "tools/net462/System.Runtime.Serialization.Json.dll",
+ "tools/net462/System.Runtime.Serialization.Primitives.dll",
+ "tools/net462/System.Runtime.Serialization.Xml.dll",
+ "tools/net462/System.Runtime.dll",
+ "tools/net462/System.Security.Claims.dll",
+ "tools/net462/System.Security.Cryptography.Algorithms.dll",
+ "tools/net462/System.Security.Cryptography.Csp.dll",
+ "tools/net462/System.Security.Cryptography.Encoding.dll",
+ "tools/net462/System.Security.Cryptography.Primitives.dll",
+ "tools/net462/System.Security.Cryptography.X509Certificates.dll",
+ "tools/net462/System.Security.Principal.dll",
+ "tools/net462/System.Security.SecureString.dll",
+ "tools/net462/System.Text.Encoding.Extensions.dll",
+ "tools/net462/System.Text.Encoding.dll",
+ "tools/net462/System.Text.Encodings.Web.dll",
+ "tools/net462/System.Text.Json.dll",
+ "tools/net462/System.Text.RegularExpressions.dll",
+ "tools/net462/System.Threading.Overlapped.dll",
+ "tools/net462/System.Threading.Tasks.Extensions.dll",
+ "tools/net462/System.Threading.Tasks.Parallel.dll",
+ "tools/net462/System.Threading.Tasks.dll",
+ "tools/net462/System.Threading.Thread.dll",
+ "tools/net462/System.Threading.ThreadPool.dll",
+ "tools/net462/System.Threading.Timer.dll",
+ "tools/net462/System.Threading.dll",
+ "tools/net462/System.ValueTuple.dll",
+ "tools/net462/System.Xml.ReaderWriter.dll",
+ "tools/net462/System.Xml.XDocument.dll",
+ "tools/net462/System.Xml.XPath.XDocument.dll",
+ "tools/net462/System.Xml.XPath.dll",
+ "tools/net462/System.Xml.XmlDocument.dll",
+ "tools/net462/System.Xml.XmlSerializer.dll",
+ "tools/net462/netstandard.dll"
]
},
- "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
- "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==",
+ "Microsoft.Extensions.DependencyModel/10.0.8": {
+ "sha512": "vLyZVpxmduO2jx+76ggqnsA3m81kwMY3NkWciNTj5E+Nvqb0VihqCvQP89QsGONWp0AJwMZG+u9GzaCjDdFGNw==",
"type": "package",
- "path": "microsoft.extensions.caching.abstractions/7.0.0",
+ "path": "microsoft.extensions.dependencymodel/10.0.8",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/7.0.0": {
- "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
- "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
- "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/7.0.0": {
- "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
- "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyModel/7.0.0": {
- "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==",
- "type": "package",
- "path": "microsoft.extensions.dependencymodel/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
"buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
+ "buildTransitive/net8.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.xml",
"lib/net462/Microsoft.Extensions.DependencyModel.dll",
"lib/net462/Microsoft.Extensions.DependencyModel.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net9.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net9.0/Microsoft.Extensions.DependencyModel.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
- "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencymodel.10.0.8.nupkg.sha512",
"microsoft.extensions.dependencymodel.nuspec",
"useSharedDesignerContext.txt"
]
},
- "Microsoft.Extensions.Features/7.0.9": {
- "sha512": "IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==",
+ "Microsoft.Identity.Client/4.73.1": {
+ "sha512": "NnDLS8QwYqO5ZZecL2oioi1LUqjh5Ewk4bMLzbgiXJbQmZhDLtKwLxL3DpGMlQAJ2G4KgEnvGPKa+OOgffeJbw==",
"type": "package",
- "path": "microsoft.extensions.features/7.0.9",
+ "path": "microsoft.identity.client/4.73.1",
"files": [
".nupkg.metadata",
".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.Extensions.Features.dll",
- "lib/net462/Microsoft.Extensions.Features.xml",
- "lib/net7.0/Microsoft.Extensions.Features.dll",
- "lib/net7.0/Microsoft.Extensions.Features.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Features.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Features.xml",
- "microsoft.extensions.features.7.0.9.nupkg.sha512",
- "microsoft.extensions.features.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging/7.0.0": {
- "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
- "type": "package",
- "path": "microsoft.extensions.logging/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
- "lib/net462/Microsoft.Extensions.Logging.dll",
- "lib/net462/Microsoft.Extensions.Logging.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.7.0.0.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
- "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Options/7.0.0": {
- "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
- "type": "package",
- "path": "microsoft.extensions.options/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Options.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
- "lib/net462/Microsoft.Extensions.Options.dll",
- "lib/net462/Microsoft.Extensions.Options.xml",
- "lib/net6.0/Microsoft.Extensions.Options.dll",
- "lib/net6.0/Microsoft.Extensions.Options.xml",
- "lib/net7.0/Microsoft.Extensions.Options.dll",
- "lib/net7.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.7.0.0.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/7.0.0": {
- "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
- "type": "package",
- "path": "microsoft.extensions.primitives/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
- "lib/net462/Microsoft.Extensions.Primitives.dll",
- "lib/net462/Microsoft.Extensions.Primitives.xml",
- "lib/net6.0/Microsoft.Extensions.Primitives.dll",
- "lib/net6.0/Microsoft.Extensions.Primitives.xml",
- "lib/net7.0/Microsoft.Extensions.Primitives.dll",
- "lib/net7.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Identity.Client/4.45.0": {
- "sha512": "ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==",
- "type": "package",
- "path": "microsoft.identity.client/4.45.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
- "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
- "lib/monoandroid90/Microsoft.Identity.Client.dll",
- "lib/monoandroid90/Microsoft.Identity.Client.xml",
- "lib/net45/Microsoft.Identity.Client.dll",
- "lib/net45/Microsoft.Identity.Client.xml",
- "lib/net461/Microsoft.Identity.Client.dll",
- "lib/net461/Microsoft.Identity.Client.xml",
- "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.dll",
- "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.xml",
- "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
- "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
+ "README.md",
+ "lib/net462/Microsoft.Identity.Client.dll",
+ "lib/net462/Microsoft.Identity.Client.xml",
+ "lib/net472/Microsoft.Identity.Client.dll",
+ "lib/net472/Microsoft.Identity.Client.xml",
+ "lib/net8.0-android34.0/Microsoft.Identity.Client.aar",
+ "lib/net8.0-android34.0/Microsoft.Identity.Client.dll",
+ "lib/net8.0-android34.0/Microsoft.Identity.Client.xml",
+ "lib/net8.0-ios18.0/Microsoft.Identity.Client.dll",
+ "lib/net8.0-ios18.0/Microsoft.Identity.Client.xml",
+ "lib/net8.0/Microsoft.Identity.Client.dll",
+ "lib/net8.0/Microsoft.Identity.Client.xml",
"lib/netstandard2.0/Microsoft.Identity.Client.dll",
"lib/netstandard2.0/Microsoft.Identity.Client.xml",
- "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
- "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
- "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
- "lib/xamarinios10/Microsoft.Identity.Client.dll",
- "lib/xamarinios10/Microsoft.Identity.Client.xml",
- "lib/xamarinmac20/Microsoft.Identity.Client.dll",
- "lib/xamarinmac20/Microsoft.Identity.Client.xml",
- "microsoft.identity.client.4.45.0.nupkg.sha512",
+ "microsoft.identity.client.4.73.1.nupkg.sha512",
"microsoft.identity.client.nuspec"
]
},
- "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
- "sha512": "zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==",
+ "Microsoft.Identity.Client.Extensions.Msal/4.73.1": {
+ "sha512": "xDztAiV2F0wI0W8FLKv5cbaBefyLD6JVaAsvgSN7bjWNCzGYzHbcOEIP5s4TJXUpQzMfUyBsFl1mC6Zmgpz0PQ==",
"type": "package",
- "path": "microsoft.identity.client.extensions.msal/2.19.3",
+ "path": "microsoft.identity.client.extensions.msal/4.73.1",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/net45/Microsoft.Identity.Client.Extensions.Msal.xml",
- "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "README.md",
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.xml",
"lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
"lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
- "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
+ "microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512",
"microsoft.identity.client.extensions.msal.nuspec"
]
},
- "Microsoft.IdentityModel.Abstractions/6.21.0": {
- "sha512": "XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==",
+ "Microsoft.IdentityModel.Abstractions/8.14.0": {
+ "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==",
"type": "package",
- "path": "microsoft.identitymodel.abstractions/6.21.0",
+ "path": "microsoft.identitymodel.abstractions/8.14.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
+ "README.md",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
"lib/net472/Microsoft.IdentityModel.Abstractions.dll",
"lib/net472/Microsoft.IdentityModel.Abstractions.xml",
"lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
"lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
- "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512",
+ "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
"microsoft.identitymodel.abstractions.nuspec"
]
},
- "Microsoft.IdentityModel.JsonWebTokens/6.21.0": {
- "sha512": "d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==",
+ "Microsoft.IdentityModel.JsonWebTokens/8.14.0": {
+ "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==",
"type": "package",
- "path": "microsoft.identitymodel.jsonwebtokens/6.21.0",
+ "path": "microsoft.identitymodel.jsonwebtokens/8.14.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
- "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "README.md",
+ "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
"lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
"lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
+ "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
+ "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
- "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512",
+ "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512",
"microsoft.identitymodel.jsonwebtokens.nuspec"
]
},
- "Microsoft.IdentityModel.Logging/6.21.0": {
- "sha512": "tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==",
+ "Microsoft.IdentityModel.Logging/8.14.0": {
+ "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==",
"type": "package",
- "path": "microsoft.identitymodel.logging/6.21.0",
+ "path": "microsoft.identitymodel.logging/8.14.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Logging.dll",
- "lib/net45/Microsoft.IdentityModel.Logging.xml",
- "lib/net461/Microsoft.IdentityModel.Logging.dll",
- "lib/net461/Microsoft.IdentityModel.Logging.xml",
+ "README.md",
+ "lib/net462/Microsoft.IdentityModel.Logging.dll",
+ "lib/net462/Microsoft.IdentityModel.Logging.xml",
"lib/net472/Microsoft.IdentityModel.Logging.dll",
"lib/net472/Microsoft.IdentityModel.Logging.xml",
"lib/net6.0/Microsoft.IdentityModel.Logging.dll",
"lib/net6.0/Microsoft.IdentityModel.Logging.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
+ "lib/net9.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/net9.0/Microsoft.IdentityModel.Logging.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
- "microsoft.identitymodel.logging.6.21.0.nupkg.sha512",
+ "microsoft.identitymodel.logging.8.14.0.nupkg.sha512",
"microsoft.identitymodel.logging.nuspec"
]
},
- "Microsoft.IdentityModel.Protocols/6.21.0": {
- "sha512": "0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==",
+ "Microsoft.IdentityModel.Protocols/7.7.1": {
+ "sha512": "h+fHHBGokepmCX+QZXJk4Ij8OApCb2n2ktoDkNX5CXteXsOxTHMNgjPGpAwdJMFvAL7TtGarUnk3o97NmBq2QQ==",
"type": "package",
- "path": "microsoft.identitymodel.protocols/6.21.0",
+ "path": "microsoft.identitymodel.protocols/7.7.1",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Protocols.dll",
- "lib/net45/Microsoft.IdentityModel.Protocols.xml",
"lib/net461/Microsoft.IdentityModel.Protocols.dll",
"lib/net461/Microsoft.IdentityModel.Protocols.xml",
+ "lib/net462/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net462/Microsoft.IdentityModel.Protocols.xml",
"lib/net472/Microsoft.IdentityModel.Protocols.dll",
"lib/net472/Microsoft.IdentityModel.Protocols.xml",
"lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
"lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
- "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512",
+ "microsoft.identitymodel.protocols.7.7.1.nupkg.sha512",
"microsoft.identitymodel.protocols.nuspec"
]
},
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": {
- "sha512": "vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": {
+ "sha512": "yT2Hdj8LpPbcT9C9KlLVxXl09C8zjFaVSaApdOwuecMuoV4s6Sof/mnTDz/+F/lILPIBvrWugR9CC7iRVZgbfQ==",
"type": "package",
- "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0",
+ "path": "microsoft.identitymodel.protocols.openidconnect/7.7.1",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512",
+ "microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512",
"microsoft.identitymodel.protocols.openidconnect.nuspec"
]
},
- "Microsoft.IdentityModel.Tokens/6.21.0": {
- "sha512": "AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==",
+ "Microsoft.IdentityModel.Tokens/8.14.0": {
+ "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==",
"type": "package",
- "path": "microsoft.identitymodel.tokens/6.21.0",
+ "path": "microsoft.identitymodel.tokens/8.14.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Tokens.dll",
- "lib/net45/Microsoft.IdentityModel.Tokens.xml",
- "lib/net461/Microsoft.IdentityModel.Tokens.dll",
- "lib/net461/Microsoft.IdentityModel.Tokens.xml",
+ "README.md",
+ "lib/net462/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net462/Microsoft.IdentityModel.Tokens.xml",
"lib/net472/Microsoft.IdentityModel.Tokens.dll",
"lib/net472/Microsoft.IdentityModel.Tokens.xml",
"lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
"lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
- "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512",
+ "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512",
"microsoft.identitymodel.tokens.nuspec"
]
},
- "Microsoft.NET.StringTools/17.3.2": {
- "sha512": "3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==",
+ "Microsoft.OpenApi/2.4.1": {
+ "sha512": "u7QhXCISMQuab3flasb1hoaiERmUqyWsW7tmQODyILoQ7mJV5IRGM+2KKZYo0QUfC13evEOcHAb6TPWgqEQtrw==",
"type": "package",
- "path": "microsoft.net.stringtools/17.3.2",
+ "path": "microsoft.openapi/2.4.1",
"files": [
".nupkg.metadata",
".signature.p7s",
- "MSBuild-NuGet-Icon.png",
"README.md",
- "lib/net35/Microsoft.NET.StringTools.net35.dll",
- "lib/net35/Microsoft.NET.StringTools.net35.pdb",
- "lib/net35/Microsoft.NET.StringTools.net35.xml",
- "lib/net472/Microsoft.NET.StringTools.dll",
- "lib/net472/Microsoft.NET.StringTools.pdb",
- "lib/net472/Microsoft.NET.StringTools.xml",
- "lib/net6.0/Microsoft.NET.StringTools.dll",
- "lib/net6.0/Microsoft.NET.StringTools.pdb",
- "lib/net6.0/Microsoft.NET.StringTools.xml",
- "microsoft.net.stringtools.17.3.2.nupkg.sha512",
- "microsoft.net.stringtools.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net35/Microsoft.NET.StringTools.net35.dll",
- "ref/net35/Microsoft.NET.StringTools.net35.xml",
- "ref/net472/Microsoft.NET.StringTools.dll",
- "ref/net472/Microsoft.NET.StringTools.xml",
- "ref/net6.0/Microsoft.NET.StringTools.dll",
- "ref/net6.0/Microsoft.NET.StringTools.xml",
- "ref/netstandard2.0/Microsoft.NET.StringTools.dll",
- "ref/netstandard2.0/Microsoft.NET.StringTools.xml"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "type": "package",
- "path": "microsoft.netcore.platforms/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.OpenApi/1.4.3": {
- "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
- "type": "package",
- "path": "microsoft.openapi/1.4.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
+ "lib/net8.0/Microsoft.OpenApi.dll",
+ "lib/net8.0/Microsoft.OpenApi.pdb",
+ "lib/net8.0/Microsoft.OpenApi.xml",
"lib/netstandard2.0/Microsoft.OpenApi.dll",
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
"lib/netstandard2.0/Microsoft.OpenApi.xml",
- "microsoft.openapi.1.4.3.nupkg.sha512",
+ "microsoft.openapi.2.4.1.nupkg.sha512",
"microsoft.openapi.nuspec"
]
},
@@ -6895,712 +3267,50 @@
"microsoft.sqlserver.server.nuspec"
]
},
- "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": {
- "sha512": "AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==",
+ "Microsoft.VisualStudio.SolutionPersistence/1.0.52": {
+ "sha512": "oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==",
"type": "package",
- "path": "microsoft.visualstudio.web.codegeneration/7.0.8",
+ "path": "microsoft.visualstudio.solutionpersistence/1.0.52",
"files": [
".nupkg.metadata",
".signature.p7s",
- "Icon.png",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
- "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.nuspec"
+ "NOTICE",
+ "lib/net472/Microsoft.VisualStudio.SolutionPersistence.dll",
+ "lib/net472/Microsoft.VisualStudio.SolutionPersistence.xml",
+ "lib/net472/manifest.spdx.json",
+ "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll",
+ "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.xml",
+ "lib/net8.0/manifest.spdx.json",
+ "microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512",
+ "microsoft.visualstudio.solutionpersistence.nuspec"
]
},
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": {
- "sha512": "Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==",
+ "Mono.TextTemplating/3.0.0": {
+ "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==",
"type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
- "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.core.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": {
- "sha512": "56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "README.md",
- "lib/net7.0/dotnet-aspnet-codegenerator-design.dll",
- "lib/net7.0/dotnet-aspnet-codegenerator-design.xml",
- "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.design.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": {
- "sha512": "xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "Templates/DbContext/NewLocalDbContext.cshtml",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
- "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": {
- "sha512": "JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
- "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.templating.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": {
- "sha512": "5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
- "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.utils.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": {
- "sha512": "xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Generators/ParameterDefinitions/area.json",
- "Generators/ParameterDefinitions/controller.json",
- "Generators/ParameterDefinitions/identity.json",
- "Generators/ParameterDefinitions/minimalapi.json",
- "Generators/ParameterDefinitions/razorpage.json",
- "Generators/ParameterDefinitions/view.json",
- "Icon.png",
- "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
- "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
- "Templates/ControllerGenerator/ApiEmptyController.cshtml",
- "Templates/ControllerGenerator/ControllerWithActions.cshtml",
- "Templates/ControllerGenerator/EmptyController.cshtml",
- "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
- "Templates/Identity/Data/ApplicationDbContext.cshtml",
- "Templates/Identity/Data/ApplicationUser.cshtml",
- "Templates/Identity/IdentityHostingStartup.cshtml",
- "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Login.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Register.cshtml",
- "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml",
- "Templates/Identity/Pages/Error.cs.cshtml",
- "Templates/Identity/Pages/Error.cshtml",
- "Templates/Identity/Pages/_Layout.cshtml",
- "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity/Pages/_ViewImports.cshtml",
- "Templates/Identity/Pages/_ViewStart.cshtml",
- "Templates/Identity/ScaffoldingReadme.cshtml",
- "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity/SupportPages._ViewImports.cshtml",
- "Templates/Identity/SupportPages._ViewStart.cshtml",
- "Templates/Identity/_LoginPartial.cshtml",
- "Templates/Identity/wwwroot/css/site.css",
- "Templates/Identity/wwwroot/favicon.ico",
- "Templates/Identity/wwwroot/js/site.js",
- "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/MinimalApi/MinimalApi.cshtml",
- "Templates/MinimalApi/MinimalApiEf.cshtml",
- "Templates/MinimalApi/MinimalApiEfNoClass.cshtml",
- "Templates/MinimalApi/MinimalApiNoClass.cshtml",
- "Templates/MvcLayout/Error.cshtml",
- "Templates/MvcLayout/_Layout.cshtml",
- "Templates/RazorPageGenerator/Create.cshtml",
- "Templates/RazorPageGenerator/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator/Delete.cshtml",
- "Templates/RazorPageGenerator/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator/Details.cshtml",
- "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator/Edit.cshtml",
- "Templates/RazorPageGenerator/EditPageModel.cshtml",
- "Templates/RazorPageGenerator/Empty.cshtml",
- "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
- "Templates/RazorPageGenerator/List.cshtml",
- "Templates/RazorPageGenerator/ListPageModel.cshtml",
- "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Empty.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/EmptyPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
- "Templates/Startup/ReadMe.cshtml",
- "Templates/Startup/Startup.cshtml",
- "Templates/ViewGenerator/Create.cshtml",
- "Templates/ViewGenerator/Delete.cshtml",
- "Templates/ViewGenerator/Details.cshtml",
- "Templates/ViewGenerator/Edit.cshtml",
- "Templates/ViewGenerator/Empty.cshtml",
- "Templates/ViewGenerator/List.cshtml",
- "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
- "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
- "lib/net7.0/bootstrap3_identitygeneratorfilesconfig.json",
- "lib/net7.0/bootstrap4_identitygeneratorfilesconfig.json",
- "lib/net7.0/bootstrap5_identitygeneratorfilesconfig.json",
- "lib/net7.0/identityMinimalHostingChanges.json",
- "lib/net7.0/minimalApiChanges.json",
- "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512",
- "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
- ]
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "type": "package",
- "path": "microsoft.win32.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.win32.primitives.4.3.0.nupkg.sha512",
- "microsoft.win32.primitives.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/Microsoft.Win32.Primitives.dll",
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
- "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.Win32.Registry/5.0.0": {
- "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
- "type": "package",
- "path": "microsoft.win32.registry/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/Microsoft.Win32.Registry.dll",
- "lib/net461/Microsoft.Win32.Registry.dll",
- "lib/net461/Microsoft.Win32.Registry.xml",
- "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
- "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
- "microsoft.win32.registry.5.0.0.nupkg.sha512",
- "microsoft.win32.registry.nuspec",
- "ref/net46/Microsoft.Win32.Registry.dll",
- "ref/net461/Microsoft.Win32.Registry.dll",
- "ref/net461/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
- "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
- "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
- "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
- "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
- "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
- "type": "package",
- "path": "microsoft.win32.systemevents/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/Microsoft.Win32.SystemEvents.dll",
- "lib/net461/Microsoft.Win32.SystemEvents.xml",
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
- "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
- "microsoft.win32.systemevents.nuspec",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
- "useSharedDesignerContext.txt"
- ]
- },
- "Mono.TextTemplating/2.2.1": {
- "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "type": "package",
- "path": "mono.texttemplating/2.2.1",
+ "path": "mono.texttemplating/3.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
+ "LICENSE.txt/LICENSE",
+ "buildTransitive/Mono.TextTemplating.targets",
"lib/net472/Mono.TextTemplating.dll",
+ "lib/net6.0/Mono.TextTemplating.dll",
"lib/netstandard2.0/Mono.TextTemplating.dll",
- "mono.texttemplating.2.2.1.nupkg.sha512",
- "mono.texttemplating.nuspec"
+ "mono.texttemplating.3.0.0.nupkg.sha512",
+ "mono.texttemplating.nuspec",
+ "readme.md"
]
},
- "NETStandard.Library/1.6.1": {
- "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "Newtonsoft.Json/13.0.3": {
+ "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"type": "package",
- "path": "netstandard.library/1.6.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "netstandard.library.1.6.1.nupkg.sha512",
- "netstandard.library.nuspec"
- ]
- },
- "Newtonsoft.Json/13.0.1": {
- "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
- "type": "package",
- "path": "newtonsoft.json/13.0.1",
+ "path": "newtonsoft.json/13.0.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.md",
+ "README.md",
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
"lib/net35/Newtonsoft.Json.dll",
@@ -7609,13 +3319,15 @@
"lib/net40/Newtonsoft.Json.xml",
"lib/net45/Newtonsoft.Json.dll",
"lib/net45/Newtonsoft.Json.xml",
+ "lib/net6.0/Newtonsoft.Json.dll",
+ "lib/net6.0/Newtonsoft.Json.xml",
"lib/netstandard1.0/Newtonsoft.Json.dll",
"lib/netstandard1.0/Newtonsoft.Json.xml",
"lib/netstandard1.3/Newtonsoft.Json.dll",
"lib/netstandard1.3/Newtonsoft.Json.xml",
"lib/netstandard2.0/Newtonsoft.Json.dll",
"lib/netstandard2.0/Newtonsoft.Json.xml",
- "newtonsoft.json.13.0.1.nupkg.sha512",
+ "newtonsoft.json.13.0.3.nupkg.sha512",
"newtonsoft.json.nuspec",
"packageIcon.png"
]
@@ -7641,4531 +3353,519 @@
"newtonsoft.json.bson.nuspec"
]
},
- "NuGet.Common/6.3.1": {
- "sha512": "/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==",
+ "Swashbuckle.AspNetCore/10.1.7": {
+ "sha512": "vgef8DPT411JU5JjHiDbr0WOxsIVuAvegPGtqmm4Na4JRl/264dfBJcGkiPHsAr5P+Vda+qN1rZKRtBl1rF9aA==",
"type": "package",
- "path": "nuget.common/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Common.dll",
- "lib/net472/NuGet.Common.xml",
- "lib/netstandard2.0/NuGet.Common.dll",
- "lib/netstandard2.0/NuGet.Common.xml",
- "nuget.common.6.3.1.nupkg.sha512",
- "nuget.common.nuspec"
- ]
- },
- "NuGet.Configuration/6.3.1": {
- "sha512": "ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==",
- "type": "package",
- "path": "nuget.configuration/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Configuration.dll",
- "lib/net472/NuGet.Configuration.xml",
- "lib/netstandard2.0/NuGet.Configuration.dll",
- "lib/netstandard2.0/NuGet.Configuration.xml",
- "nuget.configuration.6.3.1.nupkg.sha512",
- "nuget.configuration.nuspec"
- ]
- },
- "NuGet.DependencyResolver.Core/6.3.1": {
- "sha512": "wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==",
- "type": "package",
- "path": "nuget.dependencyresolver.core/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.DependencyResolver.Core.dll",
- "lib/net472/NuGet.DependencyResolver.Core.xml",
- "lib/net5.0/NuGet.DependencyResolver.Core.dll",
- "lib/net5.0/NuGet.DependencyResolver.Core.xml",
- "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll",
- "lib/netstandard2.0/NuGet.DependencyResolver.Core.xml",
- "nuget.dependencyresolver.core.6.3.1.nupkg.sha512",
- "nuget.dependencyresolver.core.nuspec"
- ]
- },
- "NuGet.Frameworks/6.3.1": {
- "sha512": "Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==",
- "type": "package",
- "path": "nuget.frameworks/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Frameworks.dll",
- "lib/net472/NuGet.Frameworks.xml",
- "lib/netstandard2.0/NuGet.Frameworks.dll",
- "lib/netstandard2.0/NuGet.Frameworks.xml",
- "nuget.frameworks.6.3.1.nupkg.sha512",
- "nuget.frameworks.nuspec"
- ]
- },
- "NuGet.LibraryModel/6.3.1": {
- "sha512": "aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==",
- "type": "package",
- "path": "nuget.librarymodel/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.LibraryModel.dll",
- "lib/net472/NuGet.LibraryModel.xml",
- "lib/netstandard2.0/NuGet.LibraryModel.dll",
- "lib/netstandard2.0/NuGet.LibraryModel.xml",
- "nuget.librarymodel.6.3.1.nupkg.sha512",
- "nuget.librarymodel.nuspec"
- ]
- },
- "NuGet.Packaging/6.3.1": {
- "sha512": "/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==",
- "type": "package",
- "path": "nuget.packaging/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Packaging.dll",
- "lib/net472/NuGet.Packaging.xml",
- "lib/net5.0/NuGet.Packaging.dll",
- "lib/net5.0/NuGet.Packaging.xml",
- "lib/netstandard2.0/NuGet.Packaging.dll",
- "lib/netstandard2.0/NuGet.Packaging.xml",
- "nuget.packaging.6.3.1.nupkg.sha512",
- "nuget.packaging.nuspec"
- ]
- },
- "NuGet.ProjectModel/6.3.1": {
- "sha512": "TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==",
- "type": "package",
- "path": "nuget.projectmodel/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.ProjectModel.dll",
- "lib/net472/NuGet.ProjectModel.xml",
- "lib/net5.0/NuGet.ProjectModel.dll",
- "lib/net5.0/NuGet.ProjectModel.xml",
- "lib/netstandard2.0/NuGet.ProjectModel.dll",
- "lib/netstandard2.0/NuGet.ProjectModel.xml",
- "nuget.projectmodel.6.3.1.nupkg.sha512",
- "nuget.projectmodel.nuspec"
- ]
- },
- "NuGet.Protocol/6.3.1": {
- "sha512": "1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==",
- "type": "package",
- "path": "nuget.protocol/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Protocol.dll",
- "lib/net472/NuGet.Protocol.xml",
- "lib/net5.0/NuGet.Protocol.dll",
- "lib/net5.0/NuGet.Protocol.xml",
- "lib/netstandard2.0/NuGet.Protocol.dll",
- "lib/netstandard2.0/NuGet.Protocol.xml",
- "nuget.protocol.6.3.1.nupkg.sha512",
- "nuget.protocol.nuspec"
- ]
- },
- "NuGet.Versioning/6.3.1": {
- "sha512": "T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==",
- "type": "package",
- "path": "nuget.versioning/6.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Versioning.dll",
- "lib/net472/NuGet.Versioning.xml",
- "lib/netstandard2.0/NuGet.Versioning.dll",
- "lib/netstandard2.0/NuGet.Versioning.xml",
- "nuget.versioning.6.3.1.nupkg.sha512",
- "nuget.versioning.nuspec"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.system/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.4.3.0.nupkg.sha512",
- "runtime.native.system.nuspec"
- ]
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "type": "package",
- "path": "runtime.native.system.io.compression/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
- "runtime.native.system.io.compression.nuspec"
- ]
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.system.net.http/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "runtime.native.system.net.http.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "runtime.native.system.security.cryptography.apple.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.native.system.security.cryptography.openssl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
- ]
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "Swashbuckle.AspNetCore/6.5.0": {
- "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore/6.5.0",
+ "path": "swashbuckle.aspnetcore/10.1.7",
"files": [
".nupkg.metadata",
".signature.p7s",
"build/Swashbuckle.AspNetCore.props",
- "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "buildMultiTargeting/Swashbuckle.AspNetCore.props",
+ "docs/package-readme.md",
+ "swashbuckle.aspnetcore.10.1.7.nupkg.sha512",
"swashbuckle.aspnetcore.nuspec"
]
},
- "Swashbuckle.AspNetCore.Swagger/6.5.0": {
- "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
+ "Swashbuckle.AspNetCore.Swagger/10.1.7": {
+ "sha512": "EjLibt/d/QuRv170GoihTbcPUpgzSFm2WKHhnGJFZQ03JYzfuitsM79azaAR8NBwRunU7yScSX6HRE5JUlrEMQ==",
"type": "package",
- "path": "swashbuckle.aspnetcore.swagger/6.5.0",
+ "path": "swashbuckle.aspnetcore.swagger/10.1.7",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
- "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net10.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net10.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net8.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net8.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net9.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net9.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "package-readme.md",
+ "swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512",
"swashbuckle.aspnetcore.swagger.nuspec"
]
},
- "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
- "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
+ "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": {
+ "sha512": "PuubO9BjvNn6U3D9kLpuWKY1JtziWw7SsGBq0age1E50uQjQ8Fzl8s0EwzrLfANqYJNgDnJi9l7N1QxcGVB2Zw==",
"type": "package",
- "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
+ "path": "swashbuckle.aspnetcore.swaggergen/10.1.7",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "package-readme.md",
+ "swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512",
"swashbuckle.aspnetcore.swaggergen.nuspec"
]
},
- "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
- "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
+ "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": {
+ "sha512": "iJo3ODyUb/M8Vm8AH1r9y9iAba0w95xsCn3zFVl96ISRHbTDWxi+l7oFVCZqUEdjd97B8VMDPnMliWAdomR8uw==",
"type": "package",
- "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
+ "path": "swashbuckle.aspnetcore.swaggerui/10.1.7",
"files": [
".nupkg.metadata",
".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "package-readme.md",
+ "swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512",
"swashbuckle.aspnetcore.swaggerui.nuspec"
]
},
- "System.AppContext/4.3.0": {
- "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "System.ClientModel/1.5.1": {
+ "sha512": "k2jKSO0X45IqhVOT9iQB4xralNN9foRQsRvXBTyRpAVxyzCJlG895T9qYrQWbcJ6OQXxOouJQ37x5nZH5XKK+A==",
"type": "package",
- "path": "system.appcontext/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.AppContext.dll",
- "lib/net463/System.AppContext.dll",
- "lib/netcore50/System.AppContext.dll",
- "lib/netstandard1.6/System.AppContext.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.AppContext.dll",
- "ref/net463/System.AppContext.dll",
- "ref/netstandard/_._",
- "ref/netstandard1.3/System.AppContext.dll",
- "ref/netstandard1.3/System.AppContext.xml",
- "ref/netstandard1.3/de/System.AppContext.xml",
- "ref/netstandard1.3/es/System.AppContext.xml",
- "ref/netstandard1.3/fr/System.AppContext.xml",
- "ref/netstandard1.3/it/System.AppContext.xml",
- "ref/netstandard1.3/ja/System.AppContext.xml",
- "ref/netstandard1.3/ko/System.AppContext.xml",
- "ref/netstandard1.3/ru/System.AppContext.xml",
- "ref/netstandard1.3/zh-hans/System.AppContext.xml",
- "ref/netstandard1.3/zh-hant/System.AppContext.xml",
- "ref/netstandard1.6/System.AppContext.dll",
- "ref/netstandard1.6/System.AppContext.xml",
- "ref/netstandard1.6/de/System.AppContext.xml",
- "ref/netstandard1.6/es/System.AppContext.xml",
- "ref/netstandard1.6/fr/System.AppContext.xml",
- "ref/netstandard1.6/it/System.AppContext.xml",
- "ref/netstandard1.6/ja/System.AppContext.xml",
- "ref/netstandard1.6/ko/System.AppContext.xml",
- "ref/netstandard1.6/ru/System.AppContext.xml",
- "ref/netstandard1.6/zh-hans/System.AppContext.xml",
- "ref/netstandard1.6/zh-hant/System.AppContext.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.AppContext.dll",
- "system.appcontext.4.3.0.nupkg.sha512",
- "system.appcontext.nuspec"
- ]
- },
- "System.Buffers/4.5.1": {
- "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
- "type": "package",
- "path": "system.buffers/4.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Buffers.dll",
- "lib/net461/System.Buffers.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Buffers.dll",
- "lib/netstandard1.1/System.Buffers.xml",
- "lib/netstandard2.0/System.Buffers.dll",
- "lib/netstandard2.0/System.Buffers.xml",
- "lib/uap10.0.16299/_._",
- "ref/net45/System.Buffers.dll",
- "ref/net45/System.Buffers.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.1/System.Buffers.dll",
- "ref/netstandard1.1/System.Buffers.xml",
- "ref/netstandard2.0/System.Buffers.dll",
- "ref/netstandard2.0/System.Buffers.xml",
- "ref/uap10.0.16299/_._",
- "system.buffers.4.5.1.nupkg.sha512",
- "system.buffers.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.CodeDom/4.4.0": {
- "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "type": "package",
- "path": "system.codedom/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.dll",
- "ref/net461/System.CodeDom.dll",
- "ref/net461/System.CodeDom.xml",
- "ref/netstandard2.0/System.CodeDom.dll",
- "ref/netstandard2.0/System.CodeDom.xml",
- "system.codedom.4.4.0.nupkg.sha512",
- "system.codedom.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Concurrent/4.3.0": {
- "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "type": "package",
- "path": "system.collections.concurrent/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Collections.Concurrent.dll",
- "lib/netstandard1.3/System.Collections.Concurrent.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.Concurrent.dll",
- "ref/netcore50/System.Collections.Concurrent.xml",
- "ref/netcore50/de/System.Collections.Concurrent.xml",
- "ref/netcore50/es/System.Collections.Concurrent.xml",
- "ref/netcore50/fr/System.Collections.Concurrent.xml",
- "ref/netcore50/it/System.Collections.Concurrent.xml",
- "ref/netcore50/ja/System.Collections.Concurrent.xml",
- "ref/netcore50/ko/System.Collections.Concurrent.xml",
- "ref/netcore50/ru/System.Collections.Concurrent.xml",
- "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
- "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/System.Collections.Concurrent.dll",
- "ref/netstandard1.1/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/System.Collections.Concurrent.dll",
- "ref/netstandard1.3/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.concurrent.4.3.0.nupkg.sha512",
- "system.collections.concurrent.nuspec"
- ]
- },
- "System.Collections.Immutable/6.0.0": {
- "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
- "type": "package",
- "path": "system.collections.immutable/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/net6.0/System.Collections.Immutable.dll",
- "lib/net6.0/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "system.collections.immutable.6.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition/6.0.0": {
- "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "type": "package",
- "path": "system.composition/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "system.composition.6.0.0.nupkg.sha512",
- "system.composition.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.AttributedModel/6.0.0": {
- "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "type": "package",
- "path": "system.composition.attributedmodel/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.AttributedModel.dll",
- "lib/net461/System.Composition.AttributedModel.xml",
- "lib/net6.0/System.Composition.AttributedModel.dll",
- "lib/net6.0/System.Composition.AttributedModel.xml",
- "lib/netstandard2.0/System.Composition.AttributedModel.dll",
- "lib/netstandard2.0/System.Composition.AttributedModel.xml",
- "system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "system.composition.attributedmodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Convention/6.0.0": {
- "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "type": "package",
- "path": "system.composition.convention/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Convention.dll",
- "lib/net461/System.Composition.Convention.xml",
- "lib/net6.0/System.Composition.Convention.dll",
- "lib/net6.0/System.Composition.Convention.xml",
- "lib/netstandard2.0/System.Composition.Convention.dll",
- "lib/netstandard2.0/System.Composition.Convention.xml",
- "system.composition.convention.6.0.0.nupkg.sha512",
- "system.composition.convention.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Hosting/6.0.0": {
- "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "type": "package",
- "path": "system.composition.hosting/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Hosting.dll",
- "lib/net461/System.Composition.Hosting.xml",
- "lib/net6.0/System.Composition.Hosting.dll",
- "lib/net6.0/System.Composition.Hosting.xml",
- "lib/netstandard2.0/System.Composition.Hosting.dll",
- "lib/netstandard2.0/System.Composition.Hosting.xml",
- "system.composition.hosting.6.0.0.nupkg.sha512",
- "system.composition.hosting.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Runtime/6.0.0": {
- "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "type": "package",
- "path": "system.composition.runtime/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Runtime.dll",
- "lib/net461/System.Composition.Runtime.xml",
- "lib/net6.0/System.Composition.Runtime.dll",
- "lib/net6.0/System.Composition.Runtime.xml",
- "lib/netstandard2.0/System.Composition.Runtime.dll",
- "lib/netstandard2.0/System.Composition.Runtime.xml",
- "system.composition.runtime.6.0.0.nupkg.sha512",
- "system.composition.runtime.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.TypedParts/6.0.0": {
- "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "type": "package",
- "path": "system.composition.typedparts/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.TypedParts.dll",
- "lib/net461/System.Composition.TypedParts.xml",
- "lib/net6.0/System.Composition.TypedParts.dll",
- "lib/net6.0/System.Composition.TypedParts.xml",
- "lib/netstandard2.0/System.Composition.TypedParts.dll",
- "lib/netstandard2.0/System.Composition.TypedParts.xml",
- "system.composition.typedparts.6.0.0.nupkg.sha512",
- "system.composition.typedparts.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Configuration.ConfigurationManager/6.0.0": {
- "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
- "type": "package",
- "path": "system.configuration.configurationmanager/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Configuration.ConfigurationManager.dll",
- "lib/net461/System.Configuration.ConfigurationManager.xml",
- "lib/net6.0/System.Configuration.ConfigurationManager.dll",
- "lib/net6.0/System.Configuration.ConfigurationManager.xml",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
- "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Console/4.3.0": {
- "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "type": "package",
- "path": "system.console/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Console.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Console.dll",
- "ref/netstandard1.3/System.Console.dll",
- "ref/netstandard1.3/System.Console.xml",
- "ref/netstandard1.3/de/System.Console.xml",
- "ref/netstandard1.3/es/System.Console.xml",
- "ref/netstandard1.3/fr/System.Console.xml",
- "ref/netstandard1.3/it/System.Console.xml",
- "ref/netstandard1.3/ja/System.Console.xml",
- "ref/netstandard1.3/ko/System.Console.xml",
- "ref/netstandard1.3/ru/System.Console.xml",
- "ref/netstandard1.3/zh-hans/System.Console.xml",
- "ref/netstandard1.3/zh-hant/System.Console.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.console.4.3.0.nupkg.sha512",
- "system.console.nuspec"
- ]
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
- "type": "package",
- "path": "system.data.datasetextensions/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/_._",
- "lib/netstandard2.0/System.Data.DataSetExtensions.dll",
- "ref/net45/_._",
- "ref/netstandard2.0/System.Data.DataSetExtensions.dll",
- "system.data.datasetextensions.4.5.0.nupkg.sha512",
- "system.data.datasetextensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Diagnostics.DiagnosticSource/5.0.0": {
- "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/System.Diagnostics.DiagnosticSource.dll",
- "lib/net45/System.Diagnostics.DiagnosticSource.xml",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Tools/4.3.0": {
- "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "type": "package",
- "path": "system.diagnostics.tools/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Tools.dll",
- "ref/netcore50/System.Diagnostics.Tools.xml",
- "ref/netcore50/de/System.Diagnostics.Tools.xml",
- "ref/netcore50/es/System.Diagnostics.Tools.xml",
- "ref/netcore50/fr/System.Diagnostics.Tools.xml",
- "ref/netcore50/it/System.Diagnostics.Tools.xml",
- "ref/netcore50/ja/System.Diagnostics.Tools.xml",
- "ref/netcore50/ko/System.Diagnostics.Tools.xml",
- "ref/netcore50/ru/System.Diagnostics.Tools.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/System.Diagnostics.Tools.dll",
- "ref/netstandard1.0/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tools.4.3.0.nupkg.sha512",
- "system.diagnostics.tools.nuspec"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "system.diagnostics.tracing/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Diagnostics.Tracing.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.xml",
- "ref/netcore50/de/System.Diagnostics.Tracing.xml",
- "ref/netcore50/es/System.Diagnostics.Tracing.xml",
- "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
- "ref/netcore50/it/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "system.diagnostics.tracing.nuspec"
- ]
- },
- "System.DirectoryServices.Protocols/7.0.1": {
- "sha512": "t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==",
- "type": "package",
- "path": "system.directoryservices.protocols/7.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets",
- "lib/net462/_._",
- "lib/net6.0/System.DirectoryServices.Protocols.dll",
- "lib/net6.0/System.DirectoryServices.Protocols.xml",
- "lib/net7.0/System.DirectoryServices.Protocols.dll",
- "lib/net7.0/System.DirectoryServices.Protocols.xml",
- "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
- "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
- "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll",
- "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml",
- "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll",
- "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.xml",
- "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll",
- "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml",
- "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll",
- "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.xml",
- "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll",
- "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml",
- "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll",
- "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.xml",
- "system.directoryservices.protocols.7.0.1.nupkg.sha512",
- "system.directoryservices.protocols.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Drawing.Common/6.0.0": {
- "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
- "type": "package",
- "path": "system.drawing.common/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Drawing.Common.dll",
- "lib/net461/System.Drawing.Common.xml",
- "lib/net6.0/System.Drawing.Common.dll",
- "lib/net6.0/System.Drawing.Common.xml",
- "lib/netcoreapp3.1/System.Drawing.Common.dll",
- "lib/netcoreapp3.1/System.Drawing.Common.xml",
- "lib/netstandard2.0/System.Drawing.Common.dll",
- "lib/netstandard2.0/System.Drawing.Common.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
- "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
- "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
- "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
- "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
- "system.drawing.common.6.0.0.nupkg.sha512",
- "system.drawing.common.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Formats.Asn1/5.0.0": {
- "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
- "type": "package",
- "path": "system.formats.asn1/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Formats.Asn1.dll",
- "lib/net461/System.Formats.Asn1.xml",
- "lib/netstandard2.0/System.Formats.Asn1.dll",
- "lib/netstandard2.0/System.Formats.Asn1.xml",
- "system.formats.asn1.5.0.0.nupkg.sha512",
- "system.formats.asn1.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.Globalization.Calendars/4.3.0": {
- "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "type": "package",
- "path": "system.globalization.calendars/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Calendars.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Calendars.dll",
- "ref/netstandard1.3/System.Globalization.Calendars.dll",
- "ref/netstandard1.3/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.calendars.4.3.0.nupkg.sha512",
- "system.globalization.calendars.nuspec"
- ]
- },
- "System.Globalization.Extensions/4.3.0": {
- "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "type": "package",
- "path": "system.globalization.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Extensions.dll",
- "ref/netstandard1.3/System.Globalization.Extensions.dll",
- "ref/netstandard1.3/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
- "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
- "system.globalization.extensions.4.3.0.nupkg.sha512",
- "system.globalization.extensions.nuspec"
- ]
- },
- "System.IdentityModel.Tokens.Jwt/6.21.0": {
- "sha512": "JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==",
- "type": "package",
- "path": "system.identitymodel.tokens.jwt/6.21.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
- "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
- "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
- "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
- "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
- "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512",
- "system.identitymodel.tokens.jwt.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.Compression/4.3.0": {
- "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "type": "package",
- "path": "system.io.compression/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.IO.Compression.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.IO.Compression.dll",
- "ref/netcore50/System.IO.Compression.dll",
- "ref/netcore50/System.IO.Compression.xml",
- "ref/netcore50/de/System.IO.Compression.xml",
- "ref/netcore50/es/System.IO.Compression.xml",
- "ref/netcore50/fr/System.IO.Compression.xml",
- "ref/netcore50/it/System.IO.Compression.xml",
- "ref/netcore50/ja/System.IO.Compression.xml",
- "ref/netcore50/ko/System.IO.Compression.xml",
- "ref/netcore50/ru/System.IO.Compression.xml",
- "ref/netcore50/zh-hans/System.IO.Compression.xml",
- "ref/netcore50/zh-hant/System.IO.Compression.xml",
- "ref/netstandard1.1/System.IO.Compression.dll",
- "ref/netstandard1.1/System.IO.Compression.xml",
- "ref/netstandard1.1/de/System.IO.Compression.xml",
- "ref/netstandard1.1/es/System.IO.Compression.xml",
- "ref/netstandard1.1/fr/System.IO.Compression.xml",
- "ref/netstandard1.1/it/System.IO.Compression.xml",
- "ref/netstandard1.1/ja/System.IO.Compression.xml",
- "ref/netstandard1.1/ko/System.IO.Compression.xml",
- "ref/netstandard1.1/ru/System.IO.Compression.xml",
- "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
- "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
- "ref/netstandard1.3/System.IO.Compression.dll",
- "ref/netstandard1.3/System.IO.Compression.xml",
- "ref/netstandard1.3/de/System.IO.Compression.xml",
- "ref/netstandard1.3/es/System.IO.Compression.xml",
- "ref/netstandard1.3/fr/System.IO.Compression.xml",
- "ref/netstandard1.3/it/System.IO.Compression.xml",
- "ref/netstandard1.3/ja/System.IO.Compression.xml",
- "ref/netstandard1.3/ko/System.IO.Compression.xml",
- "ref/netstandard1.3/ru/System.IO.Compression.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
- "runtimes/win/lib/net46/System.IO.Compression.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
- "system.io.compression.4.3.0.nupkg.sha512",
- "system.io.compression.nuspec"
- ]
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "type": "package",
- "path": "system.io.compression.zipfile/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.Compression.ZipFile.dll",
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.Compression.ZipFile.dll",
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
- "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.compression.zipfile.4.3.0.nupkg.sha512",
- "system.io.compression.zipfile.nuspec"
- ]
- },
- "System.IO.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "system.io.filesystem/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.4.3.0.nupkg.sha512",
- "system.io.filesystem.nuspec"
- ]
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "type": "package",
- "path": "system.io.filesystem.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.Primitives.dll",
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.Primitives.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
- "system.io.filesystem.primitives.nuspec"
- ]
- },
- "System.IO.Pipelines/7.0.0": {
- "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
- "type": "package",
- "path": "system.io.pipelines/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.IO.Pipelines.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "lib/net462/System.IO.Pipelines.dll",
- "lib/net462/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/net7.0/System.IO.Pipelines.dll",
- "lib/net7.0/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.7.0.0.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Linq.Expressions/4.3.0": {
- "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "type": "package",
- "path": "system.linq.expressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.Expressions.dll",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/netstandard1.6/System.Linq.Expressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.xml",
- "ref/netcore50/de/System.Linq.Expressions.xml",
- "ref/netcore50/es/System.Linq.Expressions.xml",
- "ref/netcore50/fr/System.Linq.Expressions.xml",
- "ref/netcore50/it/System.Linq.Expressions.xml",
- "ref/netcore50/ja/System.Linq.Expressions.xml",
- "ref/netcore50/ko/System.Linq.Expressions.xml",
- "ref/netcore50/ru/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.0/System.Linq.Expressions.dll",
- "ref/netstandard1.0/System.Linq.Expressions.xml",
- "ref/netstandard1.0/de/System.Linq.Expressions.xml",
- "ref/netstandard1.0/es/System.Linq.Expressions.xml",
- "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.0/it/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.3/System.Linq.Expressions.dll",
- "ref/netstandard1.3/System.Linq.Expressions.xml",
- "ref/netstandard1.3/de/System.Linq.Expressions.xml",
- "ref/netstandard1.3/es/System.Linq.Expressions.xml",
- "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.3/it/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.6/System.Linq.Expressions.dll",
- "ref/netstandard1.6/System.Linq.Expressions.xml",
- "ref/netstandard1.6/de/System.Linq.Expressions.xml",
- "ref/netstandard1.6/es/System.Linq.Expressions.xml",
- "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.6/it/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
- "system.linq.expressions.4.3.0.nupkg.sha512",
- "system.linq.expressions.nuspec"
- ]
- },
- "System.Memory/4.5.5": {
- "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "type": "package",
- "path": "system.memory/4.5.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.5.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Memory.Data/1.0.2": {
- "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
- "type": "package",
- "path": "system.memory.data/1.0.2",
+ "path": "system.clientmodel/1.5.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"CHANGELOG.md",
"DotNetPackageIcon.png",
"README.md",
- "lib/net461/System.Memory.Data.dll",
- "lib/net461/System.Memory.Data.xml",
+ "analyzers/dotnet/cs/System.ClientModel.SourceGeneration.dll",
+ "lib/net8.0/System.ClientModel.dll",
+ "lib/net8.0/System.ClientModel.xml",
+ "lib/netstandard2.0/System.ClientModel.dll",
+ "lib/netstandard2.0/System.ClientModel.xml",
+ "system.clientmodel.1.5.1.nupkg.sha512",
+ "system.clientmodel.nuspec"
+ ]
+ },
+ "System.CodeDom/6.0.0": {
+ "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
+ "type": "package",
+ "path": "system.codedom/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.CodeDom.dll",
+ "lib/net461/System.CodeDom.xml",
+ "lib/net6.0/System.CodeDom.dll",
+ "lib/net6.0/System.CodeDom.xml",
+ "lib/netstandard2.0/System.CodeDom.dll",
+ "lib/netstandard2.0/System.CodeDom.xml",
+ "system.codedom.6.0.0.nupkg.sha512",
+ "system.codedom.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition/9.0.0": {
+ "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==",
+ "type": "package",
+ "path": "system.composition/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Composition.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Composition.targets",
+ "lib/net461/_._",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard2.0/_._",
+ "system.composition.9.0.0.nupkg.sha512",
+ "system.composition.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.AttributedModel/9.0.0": {
+ "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==",
+ "type": "package",
+ "path": "system.composition.attributedmodel/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Composition.AttributedModel.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
+ "lib/net462/System.Composition.AttributedModel.dll",
+ "lib/net462/System.Composition.AttributedModel.xml",
+ "lib/net8.0/System.Composition.AttributedModel.dll",
+ "lib/net8.0/System.Composition.AttributedModel.xml",
+ "lib/net9.0/System.Composition.AttributedModel.dll",
+ "lib/net9.0/System.Composition.AttributedModel.xml",
+ "lib/netstandard2.0/System.Composition.AttributedModel.dll",
+ "lib/netstandard2.0/System.Composition.AttributedModel.xml",
+ "system.composition.attributedmodel.9.0.0.nupkg.sha512",
+ "system.composition.attributedmodel.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.Convention/9.0.0": {
+ "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==",
+ "type": "package",
+ "path": "system.composition.convention/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Composition.Convention.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
+ "lib/net462/System.Composition.Convention.dll",
+ "lib/net462/System.Composition.Convention.xml",
+ "lib/net8.0/System.Composition.Convention.dll",
+ "lib/net8.0/System.Composition.Convention.xml",
+ "lib/net9.0/System.Composition.Convention.dll",
+ "lib/net9.0/System.Composition.Convention.xml",
+ "lib/netstandard2.0/System.Composition.Convention.dll",
+ "lib/netstandard2.0/System.Composition.Convention.xml",
+ "system.composition.convention.9.0.0.nupkg.sha512",
+ "system.composition.convention.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.Hosting/9.0.0": {
+ "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==",
+ "type": "package",
+ "path": "system.composition.hosting/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Composition.Hosting.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
+ "lib/net462/System.Composition.Hosting.dll",
+ "lib/net462/System.Composition.Hosting.xml",
+ "lib/net8.0/System.Composition.Hosting.dll",
+ "lib/net8.0/System.Composition.Hosting.xml",
+ "lib/net9.0/System.Composition.Hosting.dll",
+ "lib/net9.0/System.Composition.Hosting.xml",
+ "lib/netstandard2.0/System.Composition.Hosting.dll",
+ "lib/netstandard2.0/System.Composition.Hosting.xml",
+ "system.composition.hosting.9.0.0.nupkg.sha512",
+ "system.composition.hosting.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.Runtime/9.0.0": {
+ "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==",
+ "type": "package",
+ "path": "system.composition.runtime/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Composition.Runtime.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
+ "lib/net462/System.Composition.Runtime.dll",
+ "lib/net462/System.Composition.Runtime.xml",
+ "lib/net8.0/System.Composition.Runtime.dll",
+ "lib/net8.0/System.Composition.Runtime.xml",
+ "lib/net9.0/System.Composition.Runtime.dll",
+ "lib/net9.0/System.Composition.Runtime.xml",
+ "lib/netstandard2.0/System.Composition.Runtime.dll",
+ "lib/netstandard2.0/System.Composition.Runtime.xml",
+ "system.composition.runtime.9.0.0.nupkg.sha512",
+ "system.composition.runtime.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Composition.TypedParts/9.0.0": {
+ "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==",
+ "type": "package",
+ "path": "system.composition.typedparts/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Composition.TypedParts.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
+ "lib/net462/System.Composition.TypedParts.dll",
+ "lib/net462/System.Composition.TypedParts.xml",
+ "lib/net8.0/System.Composition.TypedParts.dll",
+ "lib/net8.0/System.Composition.TypedParts.xml",
+ "lib/net9.0/System.Composition.TypedParts.dll",
+ "lib/net9.0/System.Composition.TypedParts.xml",
+ "lib/netstandard2.0/System.Composition.TypedParts.dll",
+ "lib/netstandard2.0/System.Composition.TypedParts.xml",
+ "system.composition.typedparts.9.0.0.nupkg.sha512",
+ "system.composition.typedparts.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Configuration.ConfigurationManager/9.0.4": {
+ "sha512": "dvjqKp+2LpGid6phzrdrS/2mmEPxFl3jE1+L7614q4ZChKbLJCpHXg6sBILlCCED1t//EE+un/UdAetzIMpqnw==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/9.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
+ "lib/net462/System.Configuration.ConfigurationManager.dll",
+ "lib/net462/System.Configuration.ConfigurationManager.xml",
+ "lib/net8.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net8.0/System.Configuration.ConfigurationManager.xml",
+ "lib/net9.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net9.0/System.Configuration.ConfigurationManager.xml",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.9.0.4.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.DirectoryServices.Protocols/10.0.8": {
+ "sha512": "VmFO1CBCUvWu9cV2XQSeKXRW2Gn76oZmuhhOk7GPDIvzaPoy3lVWHFExFyKNNJlQbGySUbor1bqa1Fc8CJCF/A==",
+ "type": "package",
+ "path": "system.directoryservices.protocols/10.0.8",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets",
+ "lib/net10.0/System.DirectoryServices.Protocols.dll",
+ "lib/net10.0/System.DirectoryServices.Protocols.xml",
+ "lib/net462/_._",
+ "lib/net8.0/System.DirectoryServices.Protocols.dll",
+ "lib/net8.0/System.DirectoryServices.Protocols.xml",
+ "lib/net9.0/System.DirectoryServices.Protocols.dll",
+ "lib/net9.0/System.DirectoryServices.Protocols.xml",
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
+ "lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/linux/lib/net8.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/linux/lib/net8.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/linux/lib/net9.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/linux/lib/net9.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/osx/lib/net8.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/osx/lib/net8.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/osx/lib/net9.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/osx/lib/net9.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/win/lib/net8.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/win/lib/net8.0/System.DirectoryServices.Protocols.xml",
+ "runtimes/win/lib/net9.0/System.DirectoryServices.Protocols.dll",
+ "runtimes/win/lib/net9.0/System.DirectoryServices.Protocols.xml",
+ "system.directoryservices.protocols.10.0.8.nupkg.sha512",
+ "system.directoryservices.protocols.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.IdentityModel.Tokens.Jwt/7.7.1": {
+ "sha512": "rQkO1YbAjLwnDJSMpRhRtrc6XwIcEOcUvoEcge+evurpzSZM3UNK+MZfD3sKyTlYsvknZ6eJjSBfnmXqwOsT9Q==",
+ "type": "package",
+ "path": "system.identitymodel.tokens.jwt/7.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
+ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
+ "system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512",
+ "system.identitymodel.tokens.jwt.nuspec"
+ ]
+ },
+ "System.Memory.Data/8.0.1": {
+ "sha512": "BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==",
+ "type": "package",
+ "path": "system.memory.data/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Memory.Data.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Memory.Data.targets",
+ "lib/net462/System.Memory.Data.dll",
+ "lib/net462/System.Memory.Data.xml",
+ "lib/net6.0/System.Memory.Data.dll",
+ "lib/net6.0/System.Memory.Data.xml",
+ "lib/net7.0/System.Memory.Data.dll",
+ "lib/net7.0/System.Memory.Data.xml",
+ "lib/net8.0/System.Memory.Data.dll",
+ "lib/net8.0/System.Memory.Data.xml",
"lib/netstandard2.0/System.Memory.Data.dll",
"lib/netstandard2.0/System.Memory.Data.xml",
- "system.memory.data.1.0.2.nupkg.sha512",
- "system.memory.data.nuspec"
- ]
- },
- "System.Net.Http/4.3.0": {
- "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "type": "package",
- "path": "system.net.http/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/Xamarinmac20/_._",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Net.Http.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/Xamarinmac20/_._",
- "ref/monoandroid10/_._",
- "ref/monotouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Net.Http.dll",
- "ref/net46/System.Net.Http.xml",
- "ref/net46/de/System.Net.Http.xml",
- "ref/net46/es/System.Net.Http.xml",
- "ref/net46/fr/System.Net.Http.xml",
- "ref/net46/it/System.Net.Http.xml",
- "ref/net46/ja/System.Net.Http.xml",
- "ref/net46/ko/System.Net.Http.xml",
- "ref/net46/ru/System.Net.Http.xml",
- "ref/net46/zh-hans/System.Net.Http.xml",
- "ref/net46/zh-hant/System.Net.Http.xml",
- "ref/netcore50/System.Net.Http.dll",
- "ref/netcore50/System.Net.Http.xml",
- "ref/netcore50/de/System.Net.Http.xml",
- "ref/netcore50/es/System.Net.Http.xml",
- "ref/netcore50/fr/System.Net.Http.xml",
- "ref/netcore50/it/System.Net.Http.xml",
- "ref/netcore50/ja/System.Net.Http.xml",
- "ref/netcore50/ko/System.Net.Http.xml",
- "ref/netcore50/ru/System.Net.Http.xml",
- "ref/netcore50/zh-hans/System.Net.Http.xml",
- "ref/netcore50/zh-hant/System.Net.Http.xml",
- "ref/netstandard1.1/System.Net.Http.dll",
- "ref/netstandard1.1/System.Net.Http.xml",
- "ref/netstandard1.1/de/System.Net.Http.xml",
- "ref/netstandard1.1/es/System.Net.Http.xml",
- "ref/netstandard1.1/fr/System.Net.Http.xml",
- "ref/netstandard1.1/it/System.Net.Http.xml",
- "ref/netstandard1.1/ja/System.Net.Http.xml",
- "ref/netstandard1.1/ko/System.Net.Http.xml",
- "ref/netstandard1.1/ru/System.Net.Http.xml",
- "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
- "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
- "ref/netstandard1.3/System.Net.Http.dll",
- "ref/netstandard1.3/System.Net.Http.xml",
- "ref/netstandard1.3/de/System.Net.Http.xml",
- "ref/netstandard1.3/es/System.Net.Http.xml",
- "ref/netstandard1.3/fr/System.Net.Http.xml",
- "ref/netstandard1.3/it/System.Net.Http.xml",
- "ref/netstandard1.3/ja/System.Net.Http.xml",
- "ref/netstandard1.3/ko/System.Net.Http.xml",
- "ref/netstandard1.3/ru/System.Net.Http.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
- "runtimes/win/lib/net46/System.Net.Http.dll",
- "runtimes/win/lib/netcore50/System.Net.Http.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
- "system.net.http.4.3.0.nupkg.sha512",
- "system.net.http.nuspec"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "system.net.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Net.Primitives.dll",
- "ref/netcore50/System.Net.Primitives.xml",
- "ref/netcore50/de/System.Net.Primitives.xml",
- "ref/netcore50/es/System.Net.Primitives.xml",
- "ref/netcore50/fr/System.Net.Primitives.xml",
- "ref/netcore50/it/System.Net.Primitives.xml",
- "ref/netcore50/ja/System.Net.Primitives.xml",
- "ref/netcore50/ko/System.Net.Primitives.xml",
- "ref/netcore50/ru/System.Net.Primitives.xml",
- "ref/netcore50/zh-hans/System.Net.Primitives.xml",
- "ref/netcore50/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.0/System.Net.Primitives.dll",
- "ref/netstandard1.0/System.Net.Primitives.xml",
- "ref/netstandard1.0/de/System.Net.Primitives.xml",
- "ref/netstandard1.0/es/System.Net.Primitives.xml",
- "ref/netstandard1.0/fr/System.Net.Primitives.xml",
- "ref/netstandard1.0/it/System.Net.Primitives.xml",
- "ref/netstandard1.0/ja/System.Net.Primitives.xml",
- "ref/netstandard1.0/ko/System.Net.Primitives.xml",
- "ref/netstandard1.0/ru/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.1/System.Net.Primitives.dll",
- "ref/netstandard1.1/System.Net.Primitives.xml",
- "ref/netstandard1.1/de/System.Net.Primitives.xml",
- "ref/netstandard1.1/es/System.Net.Primitives.xml",
- "ref/netstandard1.1/fr/System.Net.Primitives.xml",
- "ref/netstandard1.1/it/System.Net.Primitives.xml",
- "ref/netstandard1.1/ja/System.Net.Primitives.xml",
- "ref/netstandard1.1/ko/System.Net.Primitives.xml",
- "ref/netstandard1.1/ru/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.3/System.Net.Primitives.dll",
- "ref/netstandard1.3/System.Net.Primitives.xml",
- "ref/netstandard1.3/de/System.Net.Primitives.xml",
- "ref/netstandard1.3/es/System.Net.Primitives.xml",
- "ref/netstandard1.3/fr/System.Net.Primitives.xml",
- "ref/netstandard1.3/it/System.Net.Primitives.xml",
- "ref/netstandard1.3/ja/System.Net.Primitives.xml",
- "ref/netstandard1.3/ko/System.Net.Primitives.xml",
- "ref/netstandard1.3/ru/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.net.primitives.4.3.0.nupkg.sha512",
- "system.net.primitives.nuspec"
- ]
- },
- "System.Net.Sockets/4.3.0": {
- "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "type": "package",
- "path": "system.net.sockets/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.Sockets.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.Sockets.dll",
- "ref/netstandard1.3/System.Net.Sockets.dll",
- "ref/netstandard1.3/System.Net.Sockets.xml",
- "ref/netstandard1.3/de/System.Net.Sockets.xml",
- "ref/netstandard1.3/es/System.Net.Sockets.xml",
- "ref/netstandard1.3/fr/System.Net.Sockets.xml",
- "ref/netstandard1.3/it/System.Net.Sockets.xml",
- "ref/netstandard1.3/ja/System.Net.Sockets.xml",
- "ref/netstandard1.3/ko/System.Net.Sockets.xml",
- "ref/netstandard1.3/ru/System.Net.Sockets.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.net.sockets.4.3.0.nupkg.sha512",
- "system.net.sockets.nuspec"
- ]
- },
- "System.Numerics.Vectors/4.5.0": {
- "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "type": "package",
- "path": "system.numerics.vectors/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Numerics.Vectors.dll",
- "lib/net46/System.Numerics.Vectors.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.0/System.Numerics.Vectors.dll",
- "lib/netstandard1.0/System.Numerics.Vectors.xml",
- "lib/netstandard2.0/System.Numerics.Vectors.dll",
- "lib/netstandard2.0/System.Numerics.Vectors.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
- "lib/uap10.0.16299/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.Numerics.Vectors.dll",
- "ref/net45/System.Numerics.Vectors.xml",
- "ref/net46/System.Numerics.Vectors.dll",
- "ref/net46/System.Numerics.Vectors.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/System.Numerics.Vectors.dll",
- "ref/netstandard1.0/System.Numerics.Vectors.xml",
- "ref/netstandard2.0/System.Numerics.Vectors.dll",
- "ref/netstandard2.0/System.Numerics.Vectors.xml",
- "ref/uap10.0.16299/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.numerics.vectors.4.5.0.nupkg.sha512",
- "system.numerics.vectors.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ObjectModel/4.3.0": {
- "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "type": "package",
- "path": "system.objectmodel/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ObjectModel.dll",
- "lib/netstandard1.3/System.ObjectModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.0/System.ObjectModel.dll",
- "ref/netstandard1.0/System.ObjectModel.xml",
- "ref/netstandard1.0/de/System.ObjectModel.xml",
- "ref/netstandard1.0/es/System.ObjectModel.xml",
- "ref/netstandard1.0/fr/System.ObjectModel.xml",
- "ref/netstandard1.0/it/System.ObjectModel.xml",
- "ref/netstandard1.0/ja/System.ObjectModel.xml",
- "ref/netstandard1.0/ko/System.ObjectModel.xml",
- "ref/netstandard1.0/ru/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.3/System.ObjectModel.dll",
- "ref/netstandard1.3/System.ObjectModel.xml",
- "ref/netstandard1.3/de/System.ObjectModel.xml",
- "ref/netstandard1.3/es/System.ObjectModel.xml",
- "ref/netstandard1.3/fr/System.ObjectModel.xml",
- "ref/netstandard1.3/it/System.ObjectModel.xml",
- "ref/netstandard1.3/ja/System.ObjectModel.xml",
- "ref/netstandard1.3/ko/System.ObjectModel.xml",
- "ref/netstandard1.3/ru/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.objectmodel.4.3.0.nupkg.sha512",
- "system.objectmodel.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Emit/4.3.0": {
- "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "type": "package",
- "path": "system.reflection.emit/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/netstandard1.1/System.Reflection.Emit.dll",
- "ref/netstandard1.1/System.Reflection.Emit.xml",
- "ref/netstandard1.1/de/System.Reflection.Emit.xml",
- "ref/netstandard1.1/es/System.Reflection.Emit.xml",
- "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
- "ref/netstandard1.1/it/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
- "ref/xamarinmac20/_._",
- "system.reflection.emit.4.3.0.nupkg.sha512",
- "system.reflection.emit.nuspec"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "system.reflection.emit.ilgeneration.nuspec"
- ]
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "system.reflection.emit.lightweight.nuspec"
- ]
- },
- "System.Reflection.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "system.reflection.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/netcore50/de/System.Reflection.Extensions.xml",
- "ref/netcore50/es/System.Reflection.Extensions.xml",
- "ref/netcore50/fr/System.Reflection.Extensions.xml",
- "ref/netcore50/it/System.Reflection.Extensions.xml",
- "ref/netcore50/ja/System.Reflection.Extensions.xml",
- "ref/netcore50/ko/System.Reflection.Extensions.xml",
- "ref/netcore50/ru/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/System.Reflection.Extensions.dll",
- "ref/netstandard1.0/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.extensions.4.3.0.nupkg.sha512",
- "system.reflection.extensions.nuspec"
- ]
- },
- "System.Reflection.Metadata/6.0.0": {
- "sha512": "sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==",
- "type": "package",
- "path": "system.reflection.metadata/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/net6.0/System.Reflection.Metadata.dll",
- "lib/net6.0/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "system.reflection.metadata.6.0.0.nupkg.sha512",
- "system.reflection.metadata.nuspec",
+ "system.memory.data.8.0.1.nupkg.sha512",
+ "system.memory.data.nuspec",
"useSharedDesignerContext.txt"
]
},
- "System.Reflection.MetadataLoadContext/6.0.0": {
- "sha512": "SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==",
+ "System.Security.Cryptography.Pkcs/9.0.4": {
+ "sha512": "cUFTcMlz/Qw9s90b2wnWSCvHdjv51Bau9FQqhsr4TlwSe1OX+7SoXUqphis5G74MLOvMOCghxPPlEqOdCrVVGA==",
"type": "package",
- "path": "system.reflection.metadataloadcontext/6.0.0",
+ "path": "system.security.cryptography.pkcs/9.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Reflection.MetadataLoadContext.dll",
- "lib/net461/System.Reflection.MetadataLoadContext.xml",
- "lib/net6.0/System.Reflection.MetadataLoadContext.dll",
- "lib/net6.0/System.Reflection.MetadataLoadContext.xml",
- "lib/netcoreapp3.1/System.Reflection.MetadataLoadContext.dll",
- "lib/netcoreapp3.1/System.Reflection.MetadataLoadContext.xml",
- "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll",
- "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml",
- "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512",
- "system.reflection.metadataloadcontext.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "system.reflection.typeextensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/net462/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/net462/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
- "system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "system.reflection.typeextensions.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.Caching/5.0.0": {
- "sha512": "30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==",
- "type": "package",
- "path": "system.runtime.caching/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netstandard2.0/System.Runtime.Caching.dll",
- "lib/netstandard2.0/System.Runtime.Caching.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard2.0/System.Runtime.Caching.dll",
- "ref/netstandard2.0/System.Runtime.Caching.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net45/_._",
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
- "system.runtime.caching.5.0.0.nupkg.sha512",
- "system.runtime.caching.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.Runtime.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "system.runtime.handles/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/netstandard1.3/System.Runtime.Handles.dll",
- "ref/netstandard1.3/System.Runtime.Handles.xml",
- "ref/netstandard1.3/de/System.Runtime.Handles.xml",
- "ref/netstandard1.3/es/System.Runtime.Handles.xml",
- "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
- "ref/netstandard1.3/it/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.handles.4.3.0.nupkg.sha512",
- "system.runtime.handles.nuspec"
- ]
- },
- "System.Runtime.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "system.runtime.interopservices/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.InteropServices.dll",
- "lib/net463/System.Runtime.InteropServices.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.InteropServices.dll",
- "ref/net463/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.xml",
- "ref/netcore50/de/System.Runtime.InteropServices.xml",
- "ref/netcore50/es/System.Runtime.InteropServices.xml",
- "ref/netcore50/fr/System.Runtime.InteropServices.xml",
- "ref/netcore50/it/System.Runtime.InteropServices.xml",
- "ref/netcore50/ja/System.Runtime.InteropServices.xml",
- "ref/netcore50/ko/System.Runtime.InteropServices.xml",
- "ref/netcore50/ru/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/System.Runtime.InteropServices.dll",
- "ref/netstandard1.2/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/System.Runtime.InteropServices.dll",
- "ref/netstandard1.3/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/System.Runtime.InteropServices.dll",
- "ref/netstandard1.5/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.interopservices.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.nuspec"
- ]
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "type": "package",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.runtimeinformation.nuspec"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "system.runtime.numerics/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Runtime.Numerics.dll",
- "lib/netstandard1.3/System.Runtime.Numerics.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Runtime.Numerics.dll",
- "ref/netcore50/System.Runtime.Numerics.xml",
- "ref/netcore50/de/System.Runtime.Numerics.xml",
- "ref/netcore50/es/System.Runtime.Numerics.xml",
- "ref/netcore50/fr/System.Runtime.Numerics.xml",
- "ref/netcore50/it/System.Runtime.Numerics.xml",
- "ref/netcore50/ja/System.Runtime.Numerics.xml",
- "ref/netcore50/ko/System.Runtime.Numerics.xml",
- "ref/netcore50/ru/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/System.Runtime.Numerics.dll",
- "ref/netstandard1.1/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.numerics.4.3.0.nupkg.sha512",
- "system.runtime.numerics.nuspec"
- ]
- },
- "System.Security.AccessControl/6.0.0": {
- "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
- "type": "package",
- "path": "system.security.accesscontrol/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Security.AccessControl.dll",
- "lib/net461/System.Security.AccessControl.xml",
- "lib/net6.0/System.Security.AccessControl.dll",
- "lib/net6.0/System.Security.AccessControl.xml",
- "lib/netstandard2.0/System.Security.AccessControl.dll",
- "lib/netstandard2.0/System.Security.AccessControl.xml",
- "runtimes/win/lib/net461/System.Security.AccessControl.dll",
- "runtimes/win/lib/net461/System.Security.AccessControl.xml",
- "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
- "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
- "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
- "system.security.accesscontrol.6.0.0.nupkg.sha512",
- "system.security.accesscontrol.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "system.security.cryptography.algorithms.nuspec"
- ]
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
- "type": "package",
- "path": "system.security.cryptography.cng/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.xml",
- "lib/net462/System.Security.Cryptography.Cng.dll",
- "lib/net462/System.Security.Cryptography.Cng.xml",
- "lib/net47/System.Security.Cryptography.Cng.dll",
- "lib/net47/System.Security.Cryptography.Cng.xml",
- "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
- "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
- "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
- "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
- "lib/uap10.0.16299/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.xml",
- "ref/net462/System.Security.Cryptography.Cng.dll",
- "ref/net462/System.Security.Cryptography.Cng.xml",
- "ref/net47/System.Security.Cryptography.Cng.dll",
- "ref/net47/System.Security.Cryptography.Cng.xml",
- "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
- "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
- "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
- "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
- "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
- "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
- "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
- "ref/uap10.0.16299/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/uap10.0.16299/_._",
- "system.security.cryptography.cng.5.0.0.nupkg.sha512",
- "system.security.cryptography.cng.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "type": "package",
- "path": "system.security.cryptography.csp/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Csp.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Csp.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
- "runtimes/win/lib/netcore50/_._",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "system.security.cryptography.csp.4.3.0.nupkg.sha512",
- "system.security.cryptography.csp.nuspec"
- ]
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "type": "package",
- "path": "system.security.cryptography.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Encoding.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Encoding.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
- "system.security.cryptography.encoding.nuspec"
- ]
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "type": "package",
- "path": "system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "system.security.cryptography.openssl.nuspec"
- ]
- },
- "System.Security.Cryptography.Pkcs/5.0.0": {
- "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
- "type": "package",
- "path": "system.security.cryptography.pkcs/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.Cryptography.Pkcs.dll",
- "lib/net461/System.Security.Cryptography.Pkcs.dll",
- "lib/net461/System.Security.Cryptography.Pkcs.xml",
- "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
- "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
+ "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
+ "lib/net462/System.Security.Cryptography.Pkcs.dll",
+ "lib/net462/System.Security.Cryptography.Pkcs.xml",
+ "lib/net8.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/net8.0/System.Security.Cryptography.Pkcs.xml",
+ "lib/net9.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/net9.0/System.Security.Cryptography.Pkcs.xml",
"lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
"lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
"lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
"lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
- "ref/net46/System.Security.Cryptography.Pkcs.dll",
- "ref/net461/System.Security.Cryptography.Pkcs.dll",
- "ref/net461/System.Security.Cryptography.Pkcs.xml",
- "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
- "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
- "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
- "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
- "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
- "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
- "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
- "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
- "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
- "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
+ "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.xml",
+ "system.security.cryptography.pkcs.9.0.4.nupkg.sha512",
"system.security.cryptography.pkcs.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
+ "useSharedDesignerContext.txt"
]
},
- "System.Security.Cryptography.Primitives/4.3.0": {
- "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "System.Security.Cryptography.ProtectedData/9.0.4": {
+ "sha512": "o94k2RKuAce3GeDMlUvIXlhVa1kWpJw95E6C9LwW0KlG0nj5+SgCiIxJ2Eroqb9sLtG1mEMbFttZIBZ13EJPvQ==",
"type": "package",
- "path": "system.security.cryptography.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Primitives.dll",
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Primitives.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
- "system.security.cryptography.primitives.nuspec"
- ]
- },
- "System.Security.Cryptography.ProtectedData/6.0.0": {
- "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/6.0.0",
+ "path": "system.security.cryptography.protecteddata/9.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
+ "PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
"buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
- "buildTransitive/netcoreapp3.1/_._",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
- "lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "lib/net461/System.Security.Cryptography.ProtectedData.xml",
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net462/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net462/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.xml",
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
- "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.9.0.4.nupkg.sha512",
"system.security.cryptography.protecteddata.nuspec",
"useSharedDesignerContext.txt"
]
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.X509Certificates.dll",
- "ref/net461/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "system.security.cryptography.x509certificates.nuspec"
- ]
- },
- "System.Security.Permissions/6.0.0": {
- "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
- "type": "package",
- "path": "system.security.permissions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Security.Permissions.dll",
- "lib/net461/System.Security.Permissions.xml",
- "lib/net5.0/System.Security.Permissions.dll",
- "lib/net5.0/System.Security.Permissions.xml",
- "lib/net6.0/System.Security.Permissions.dll",
- "lib/net6.0/System.Security.Permissions.xml",
- "lib/netcoreapp3.1/System.Security.Permissions.dll",
- "lib/netcoreapp3.1/System.Security.Permissions.xml",
- "lib/netstandard2.0/System.Security.Permissions.dll",
- "lib/netstandard2.0/System.Security.Permissions.xml",
- "runtimes/win/lib/net461/System.Security.Permissions.dll",
- "runtimes/win/lib/net461/System.Security.Permissions.xml",
- "system.security.permissions.6.0.0.nupkg.sha512",
- "system.security.permissions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Principal.Windows/5.0.0": {
- "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "type": "package",
- "path": "system.security.principal.windows/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.xml",
- "lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.xml",
- "lib/uap10.0.16299/_._",
- "ref/net46/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.xml",
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
- "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/System.Security.Principal.Windows.dll",
- "ref/netstandard1.3/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
- "ref/netstandard2.0/System.Security.Principal.Windows.dll",
- "ref/netstandard2.0/System.Security.Principal.Windows.xml",
- "ref/uap10.0.16299/_._",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/uap10.0.16299/_._",
- "system.security.principal.windows.5.0.0.nupkg.sha512",
- "system.security.principal.windows.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "type": "package",
- "path": "system.text.encoding.codepages/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.xml",
- "lib/net6.0/System.Text.Encoding.CodePages.dll",
- "lib/net6.0/System.Text.Encoding.CodePages.xml",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "type": "package",
- "path": "system.text.encoding.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.Extensions.dll",
- "ref/netcore50/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
- "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
- "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.extensions.4.3.0.nupkg.sha512",
- "system.text.encoding.extensions.nuspec"
- ]
- },
- "System.Text.Encodings.Web/7.0.0": {
- "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
- "type": "package",
- "path": "system.text.encodings.web/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Text.Encodings.Web.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
- "lib/net462/System.Text.Encodings.Web.dll",
- "lib/net462/System.Text.Encodings.Web.xml",
- "lib/net6.0/System.Text.Encodings.Web.dll",
- "lib/net6.0/System.Text.Encodings.Web.xml",
- "lib/net7.0/System.Text.Encodings.Web.dll",
- "lib/net7.0/System.Text.Encodings.Web.xml",
- "lib/netstandard2.0/System.Text.Encodings.Web.dll",
- "lib/netstandard2.0/System.Text.Encodings.Web.xml",
- "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
- "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
- "system.text.encodings.web.7.0.0.nupkg.sha512",
- "system.text.encodings.web.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.Json/7.0.0": {
- "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
- "type": "package",
- "path": "system.text.json/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "buildTransitive/net461/System.Text.Json.targets",
- "buildTransitive/net462/System.Text.Json.targets",
- "buildTransitive/net6.0/System.Text.Json.targets",
- "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
- "buildTransitive/netstandard2.0/System.Text.Json.targets",
- "lib/net462/System.Text.Json.dll",
- "lib/net462/System.Text.Json.xml",
- "lib/net6.0/System.Text.Json.dll",
- "lib/net6.0/System.Text.Json.xml",
- "lib/net7.0/System.Text.Json.dll",
- "lib/net7.0/System.Text.Json.xml",
- "lib/netstandard2.0/System.Text.Json.dll",
- "lib/netstandard2.0/System.Text.Json.xml",
- "system.text.json.7.0.0.nupkg.sha512",
- "system.text.json.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.RegularExpressions/4.3.0": {
- "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "type": "package",
- "path": "system.text.regularexpressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Text.RegularExpressions.dll",
- "lib/netcore50/System.Text.RegularExpressions.dll",
- "lib/netstandard1.6/System.Text.RegularExpressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Text.RegularExpressions.dll",
- "ref/netcore50/System.Text.RegularExpressions.dll",
- "ref/netcore50/System.Text.RegularExpressions.xml",
- "ref/netcore50/de/System.Text.RegularExpressions.xml",
- "ref/netcore50/es/System.Text.RegularExpressions.xml",
- "ref/netcore50/fr/System.Text.RegularExpressions.xml",
- "ref/netcore50/it/System.Text.RegularExpressions.xml",
- "ref/netcore50/ja/System.Text.RegularExpressions.xml",
- "ref/netcore50/ko/System.Text.RegularExpressions.xml",
- "ref/netcore50/ru/System.Text.RegularExpressions.xml",
- "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
- "ref/netstandard1.0/System.Text.RegularExpressions.dll",
- "ref/netstandard1.0/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/System.Text.RegularExpressions.dll",
- "ref/netstandard1.3/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/System.Text.RegularExpressions.dll",
- "ref/netstandard1.6/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.regularexpressions.4.3.0.nupkg.sha512",
- "system.text.regularexpressions.nuspec"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Dataflow/6.0.0": {
- "sha512": "+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==",
- "type": "package",
- "path": "system.threading.tasks.dataflow/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Threading.Tasks.Dataflow.dll",
- "lib/net461/System.Threading.Tasks.Dataflow.xml",
- "lib/net6.0/System.Threading.Tasks.Dataflow.dll",
- "lib/net6.0/System.Threading.Tasks.Dataflow.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
- "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll",
- "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml",
- "system.threading.tasks.dataflow.6.0.0.nupkg.sha512",
- "system.threading.tasks.dataflow.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Threading.Timer/4.3.0": {
- "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "type": "package",
- "path": "system.threading.timer/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net451/_._",
- "lib/portable-net451+win81+wpa81/_._",
- "lib/win81/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net451/_._",
- "ref/netcore50/System.Threading.Timer.dll",
- "ref/netcore50/System.Threading.Timer.xml",
- "ref/netcore50/de/System.Threading.Timer.xml",
- "ref/netcore50/es/System.Threading.Timer.xml",
- "ref/netcore50/fr/System.Threading.Timer.xml",
- "ref/netcore50/it/System.Threading.Timer.xml",
- "ref/netcore50/ja/System.Threading.Timer.xml",
- "ref/netcore50/ko/System.Threading.Timer.xml",
- "ref/netcore50/ru/System.Threading.Timer.xml",
- "ref/netcore50/zh-hans/System.Threading.Timer.xml",
- "ref/netcore50/zh-hant/System.Threading.Timer.xml",
- "ref/netstandard1.2/System.Threading.Timer.dll",
- "ref/netstandard1.2/System.Threading.Timer.xml",
- "ref/netstandard1.2/de/System.Threading.Timer.xml",
- "ref/netstandard1.2/es/System.Threading.Timer.xml",
- "ref/netstandard1.2/fr/System.Threading.Timer.xml",
- "ref/netstandard1.2/it/System.Threading.Timer.xml",
- "ref/netstandard1.2/ja/System.Threading.Timer.xml",
- "ref/netstandard1.2/ko/System.Threading.Timer.xml",
- "ref/netstandard1.2/ru/System.Threading.Timer.xml",
- "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
- "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
- "ref/portable-net451+win81+wpa81/_._",
- "ref/win81/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.timer.4.3.0.nupkg.sha512",
- "system.threading.timer.nuspec"
- ]
- },
- "System.Windows.Extensions/6.0.0": {
- "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
- "type": "package",
- "path": "system.windows.extensions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net6.0/System.Windows.Extensions.dll",
- "lib/net6.0/System.Windows.Extensions.xml",
- "lib/netcoreapp3.1/System.Windows.Extensions.dll",
- "lib/netcoreapp3.1/System.Windows.Extensions.xml",
- "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
- "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
- "system.windows.extensions.6.0.0.nupkg.sha512",
- "system.windows.extensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "type": "package",
- "path": "system.xml.readerwriter/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Xml.ReaderWriter.dll",
- "lib/netcore50/System.Xml.ReaderWriter.dll",
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.xml",
- "ref/netcore50/de/System.Xml.ReaderWriter.xml",
- "ref/netcore50/es/System.Xml.ReaderWriter.xml",
- "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
- "ref/netcore50/it/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.readerwriter.4.3.0.nupkg.sha512",
- "system.xml.readerwriter.nuspec"
- ]
- },
- "System.Xml.XDocument/4.3.0": {
- "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "type": "package",
- "path": "system.xml.xdocument/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Xml.XDocument.dll",
- "lib/netstandard1.3/System.Xml.XDocument.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Xml.XDocument.dll",
- "ref/netcore50/System.Xml.XDocument.xml",
- "ref/netcore50/de/System.Xml.XDocument.xml",
- "ref/netcore50/es/System.Xml.XDocument.xml",
- "ref/netcore50/fr/System.Xml.XDocument.xml",
- "ref/netcore50/it/System.Xml.XDocument.xml",
- "ref/netcore50/ja/System.Xml.XDocument.xml",
- "ref/netcore50/ko/System.Xml.XDocument.xml",
- "ref/netcore50/ru/System.Xml.XDocument.xml",
- "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
- "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
- "ref/netstandard1.0/System.Xml.XDocument.dll",
- "ref/netstandard1.0/System.Xml.XDocument.xml",
- "ref/netstandard1.0/de/System.Xml.XDocument.xml",
- "ref/netstandard1.0/es/System.Xml.XDocument.xml",
- "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
- "ref/netstandard1.0/it/System.Xml.XDocument.xml",
- "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
- "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
- "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
- "ref/netstandard1.3/System.Xml.XDocument.dll",
- "ref/netstandard1.3/System.Xml.XDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.xdocument.4.3.0.nupkg.sha512",
- "system.xml.xdocument.nuspec"
- ]
}
},
"projectFileDependencyGroups": {
- "net7.0": [
- "AutoMapper >= 12.0.1",
- "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.1",
- "Microsoft.AspNetCore.Authentication.Negotiate >= 7.0.9",
- "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 7.0.9",
- "Microsoft.AspNetCore.OpenApi >= 7.0.9",
- "Microsoft.EntityFrameworkCore >= 7.0.9",
- "Microsoft.EntityFrameworkCore.SqlServer >= 7.0.9",
- "Microsoft.EntityFrameworkCore.Tools >= 7.0.9",
- "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 7.0.8",
- "Swashbuckle.AspNetCore >= 6.5.0"
+ "net10.0": [
+ "AutoMapper >= 16.1.1",
+ "Microsoft.AspNetCore.Authentication.Negotiate >= 10.0.8",
+ "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 10.0.8",
+ "Microsoft.AspNetCore.OpenApi >= 10.0.8",
+ "Microsoft.EntityFrameworkCore >= 10.0.8",
+ "Microsoft.EntityFrameworkCore.Design >= 10.0.8",
+ "Microsoft.EntityFrameworkCore.SqlServer >= 10.0.8",
+ "Microsoft.EntityFrameworkCore.Tools >= 10.0.8",
+ "Swashbuckle.AspNetCore >= 10.1.7"
]
},
"packageFolders": {
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\": {}
+ "C:\\Users\\torst\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
+ "projectUniqueName": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
"projectName": "Microsoft.SelfService.Portal.Core.API",
- "projectPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
- "packagesPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\obj\\",
+ "projectPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
+ "packagesPath": "C:\\Users\\torst\\.nuget\\packages\\",
+ "outputPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ "C:\\Users\\torst\\AppData\\Roaming\\NuGet\\NuGet.Config"
],
"originalTargetFrameworks": [
- "net7.0"
+ "net10.0"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\sdk\\7.0.304\\Sdks\\Microsoft.NET.Sdk.Web\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "net7.0": {
- "targetAlias": "net7.0",
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
"projectReferences": {}
}
},
@@ -12173,53 +3873,58 @@
"warnAsError": [
"NU1605"
]
- }
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.300"
},
"frameworks": {
- "net7.0": {
- "targetAlias": "net7.0",
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
"dependencies": {
"AutoMapper": {
"target": "Package",
- "version": "[12.0.1, )"
- },
- "AutoMapper.Extensions.Microsoft.DependencyInjection": {
- "target": "Package",
- "version": "[12.0.1, )"
+ "version": "[16.1.1, )"
},
"Microsoft.AspNetCore.Authentication.Negotiate": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.AspNetCore.OpenApi": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[10.0.8, )"
},
"Microsoft.EntityFrameworkCore.SqlServer": {
"target": "Package",
- "version": "[7.0.9, )"
+ "version": "[10.0.8, )"
},
"Microsoft.EntityFrameworkCore.Tools": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
- "version": "[7.0.9, )"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
- "target": "Package",
- "version": "[7.0.8, )"
+ "version": "[10.0.8, )"
},
"Swashbuckle.AspNetCore": {
"target": "Package",
- "version": "[6.5.0, )"
+ "version": "[10.1.7, )"
}
},
"imports": [
@@ -12241,7 +3946,421 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.300/PortableRuntimeIdentifierGraph.json",
+ "packagesToPrune": {
+ "Microsoft.AspNetCore": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
+ "Microsoft.AspNetCore.App": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Cors": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
+ "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
+ "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Identity": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Localization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
+ "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
+ "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Razor": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
+ "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
+ "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Routing": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
+ "Microsoft.AspNetCore.Session": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
+ "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
+ "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
+ "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
+ "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
+ "Microsoft.CSharp": "(,4.7.32767]",
+ "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Features": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
+ "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Http": "(,10.0.32767]",
+ "Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
+ "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
+ "Microsoft.Extensions.Localization": "(,10.0.32767]",
+ "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
+ "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
+ "Microsoft.Extensions.Options": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
+ "Microsoft.Extensions.Primitives": "(,10.0.32767]",
+ "Microsoft.Extensions.Validation": "(,10.0.32767]",
+ "Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
+ "Microsoft.JSInterop": "(,10.0.32767]",
+ "Microsoft.Net.Http.Headers": "(,10.0.32767]",
+ "Microsoft.VisualBasic": "(,10.4.32767]",
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
+ "runtime.any.System.Collections": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.any.System.Globalization": "(,4.3.32767]",
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.any.System.IO": "(,4.3.32767]",
+ "runtime.any.System.Reflection": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.any.System.Runtime": "(,4.3.32767]",
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.aot.System.Collections": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
+ "runtime.aot.System.IO": "(,4.3.32767]",
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Console": "(,4.3.32767]",
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Console": "(,4.3.32767]",
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
+ "System.AppContext": "(,4.3.32767]",
+ "System.Buffers": "(,5.0.32767]",
+ "System.Collections": "(,4.3.32767]",
+ "System.Collections.Concurrent": "(,4.3.32767]",
+ "System.Collections.Immutable": "(,10.0.32767]",
+ "System.Collections.NonGeneric": "(,4.3.32767]",
+ "System.Collections.Specialized": "(,4.3.32767]",
+ "System.ComponentModel": "(,4.3.32767]",
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
+ "System.Console": "(,4.3.32767]",
+ "System.Data.Common": "(,4.3.32767]",
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
+ "System.Diagnostics.Debug": "(,4.3.32767]",
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
+ "System.Diagnostics.EventLog": "(,10.0.32767]",
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
+ "System.Diagnostics.Process": "(,4.3.32767]",
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
+ "System.Diagnostics.Tools": "(,4.3.32767]",
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
+ "System.Drawing.Primitives": "(,4.3.32767]",
+ "System.Dynamic.Runtime": "(,4.3.32767]",
+ "System.Formats.Asn1": "(,10.0.32767]",
+ "System.Formats.Cbor": "(,10.0.32767]",
+ "System.Formats.Tar": "(,10.0.32767]",
+ "System.Globalization": "(,4.3.32767]",
+ "System.Globalization.Calendars": "(,4.3.32767]",
+ "System.Globalization.Extensions": "(,4.3.32767]",
+ "System.IO": "(,4.3.32767]",
+ "System.IO.Compression": "(,4.3.32767]",
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
+ "System.IO.FileSystem": "(,4.3.32767]",
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
+ "System.IO.Pipelines": "(,10.0.32767]",
+ "System.IO.Pipes": "(,4.3.32767]",
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
+ "System.Linq": "(,4.3.32767]",
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
+ "System.Linq.Expressions": "(,4.3.32767]",
+ "System.Linq.Parallel": "(,4.3.32767]",
+ "System.Linq.Queryable": "(,4.3.32767]",
+ "System.Memory": "(,5.0.32767]",
+ "System.Net.Http": "(,4.3.32767]",
+ "System.Net.Http.Json": "(,10.0.32767]",
+ "System.Net.NameResolution": "(,4.3.32767]",
+ "System.Net.NetworkInformation": "(,4.3.32767]",
+ "System.Net.Ping": "(,4.3.32767]",
+ "System.Net.Primitives": "(,4.3.32767]",
+ "System.Net.Requests": "(,4.3.32767]",
+ "System.Net.Security": "(,4.3.32767]",
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
+ "System.Net.Sockets": "(,4.3.32767]",
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
+ "System.Net.WebSockets": "(,4.3.32767]",
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
+ "System.Numerics.Vectors": "(,5.0.32767]",
+ "System.ObjectModel": "(,4.3.32767]",
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
+ "System.Private.Uri": "(,4.3.32767]",
+ "System.Reflection": "(,4.3.32767]",
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
+ "System.Reflection.Emit": "(,4.7.32767]",
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
+ "System.Reflection.Extensions": "(,4.3.32767]",
+ "System.Reflection.Metadata": "(,10.0.32767]",
+ "System.Reflection.Primitives": "(,4.3.32767]",
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
+ "System.Resources.Reader": "(,4.3.32767]",
+ "System.Resources.ResourceManager": "(,4.3.32767]",
+ "System.Resources.Writer": "(,4.3.32767]",
+ "System.Runtime": "(,4.3.32767]",
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
+ "System.Runtime.Extensions": "(,4.3.32767]",
+ "System.Runtime.Handles": "(,4.3.32767]",
+ "System.Runtime.InteropServices": "(,4.3.32767]",
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
+ "System.Runtime.Loader": "(,4.3.32767]",
+ "System.Runtime.Numerics": "(,4.3.32767]",
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
+ "System.Security.AccessControl": "(,6.0.32767]",
+ "System.Security.Claims": "(,4.3.32767]",
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
+ "System.Security.Cryptography.Xml": "(,10.0.32767]",
+ "System.Security.Principal": "(,4.3.32767]",
+ "System.Security.Principal.Windows": "(,5.0.32767]",
+ "System.Security.SecureString": "(,4.3.32767]",
+ "System.Text.Encoding": "(,4.3.32767]",
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "System.Text.Encodings.Web": "(,10.0.32767]",
+ "System.Text.Json": "(,10.0.32767]",
+ "System.Text.RegularExpressions": "(,4.3.32767]",
+ "System.Threading": "(,4.3.32767]",
+ "System.Threading.AccessControl": "(,10.0.32767]",
+ "System.Threading.Channels": "(,10.0.32767]",
+ "System.Threading.Overlapped": "(,4.3.32767]",
+ "System.Threading.RateLimiting": "(,10.0.32767]",
+ "System.Threading.Tasks": "(,4.3.32767]",
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
+ "System.Threading.Thread": "(,4.3.32767]",
+ "System.Threading.ThreadPool": "(,4.3.32767]",
+ "System.Threading.Timer": "(,4.3.32767]",
+ "System.ValueTuple": "(,4.5.32767]",
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
+ "System.Xml.XDocument": "(,4.3.32767]",
+ "System.Xml.XmlDocument": "(,4.3.32767]",
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
+ "System.Xml.XPath": "(,4.3.32767]",
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
+ }
}
}
}
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index 445b1eb..86baad0 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,248 +1,69 @@
{
"version": 2,
- "dgSpecHash": "X6G3qY+TUpaG+SNCWWz41iVYfdH843+TbZcA6xJl4LHbLg4V1xURDp7SnuhTOpu5wJ+2h8G6V/nu3uWRWJGewQ==",
+ "dgSpecHash": "xEwEatw9DI8=",
"success": true,
- "projectFilePath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
+ "projectFilePath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj",
"expectedPackageFiles": [
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\automapper\\12.0.1\\automapper.12.0.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\12.0.1\\automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\azure.core\\1.24.0\\azure.core.1.24.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\azure.identity\\1.6.0\\azure.identity.1.6.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.authentication.negotiate\\7.0.9\\microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\7.0.9\\microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\7.0.9\\microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\7.0.9\\microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.openapi\\7.0.9\\microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.11\\microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.build\\17.3.2\\microsoft.build.17.3.2.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.build.framework\\17.3.2\\microsoft.build.framework.17.3.2.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.analyzerutilities\\3.3.0\\microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.common\\4.4.0\\microsoft.codeanalysis.common.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.4.0\\microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.csharp.features\\4.4.0\\microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.4.0\\microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.elfie\\1.0.0\\microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.features\\4.4.0\\microsoft.codeanalysis.features.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.11\\microsoft.codeanalysis.razor.6.0.11.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.scripting.common\\4.4.0\\microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.4.0\\microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.data.sqlclient\\5.0.2\\microsoft.data.sqlclient.5.0.2.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.0.1\\microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.diasymreader\\1.4.0\\microsoft.diasymreader.1.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.dotnet.scaffolding.shared\\7.0.8\\microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore\\7.0.9\\microsoft.entityframeworkcore.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\7.0.9\\microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\7.0.9\\microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.design\\7.0.9\\microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\7.0.9\\microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\7.0.9\\microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\7.0.9\\microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\7.0.0\\microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.caching.memory\\7.0.0\\microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.dependencymodel\\7.0.0\\microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.features\\7.0.9\\microsoft.extensions.features.7.0.9.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identity.client\\4.45.0\\microsoft.identity.client.4.45.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\2.19.3\\microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.21.0\\microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.21.0\\microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.logging\\6.21.0\\microsoft.identitymodel.logging.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.21.0\\microsoft.identitymodel.protocols.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.21.0\\microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.21.0\\microsoft.identitymodel.tokens.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.net.stringtools\\17.3.2\\microsoft.net.stringtools.17.3.2.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\7.0.8\\microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\7.0.8\\microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\7.0.8\\microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\7.0.8\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\7.0.8\\microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\7.0.8\\microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\7.0.8\\microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.common\\6.3.1\\nuget.common.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.configuration\\6.3.1\\nuget.configuration.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.dependencyresolver.core\\6.3.1\\nuget.dependencyresolver.core.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.frameworks\\6.3.1\\nuget.frameworks.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.librarymodel\\6.3.1\\nuget.librarymodel.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.packaging\\6.3.1\\nuget.packaging.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.projectmodel\\6.3.1\\nuget.projectmodel.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.protocol\\6.3.1\\nuget.protocol.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.versioning\\6.3.1\\nuget.versioning.6.3.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.directoryservices.protocols\\7.0.1\\system.directoryservices.protocols.7.0.1.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.21.0\\system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.metadata\\6.0.0\\system.reflection.metadata.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.metadataloadcontext\\6.0.0\\system.reflection.metadataloadcontext.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.caching\\5.0.0\\system.runtime.caching.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.0\\system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.json\\7.0.0\\system.text.json.7.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.tasks.dataflow\\6.0.0\\system.threading.tasks.dataflow.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
- "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512"
+ "C:\\Users\\torst\\.nuget\\packages\\automapper\\16.1.1\\automapper.16.1.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\azure.core\\1.47.1\\azure.core.1.47.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\azure.identity\\1.14.2\\azure.identity.1.14.2.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.aspnetcore.authentication.negotiate\\10.0.8\\microsoft.aspnetcore.authentication.negotiate.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\10.0.8\\microsoft.aspnetcore.jsonpatch.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\10.0.8\\microsoft.aspnetcore.mvc.newtonsoftjson.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.aspnetcore.openapi\\10.0.8\\microsoft.aspnetcore.openapi.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.bcl.cryptography\\9.0.4\\microsoft.bcl.cryptography.9.0.4.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.build.framework\\18.0.2\\microsoft.build.framework.18.0.2.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.11.0\\microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.codeanalysis.common\\5.0.0\\microsoft.codeanalysis.common.5.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.codeanalysis.csharp\\5.0.0\\microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\5.0.0\\microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\5.0.0\\microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\5.0.0\\microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.data.sqlclient\\6.1.1\\microsoft.data.sqlclient.6.1.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\6.0.2\\microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.8\\microsoft.entityframeworkcore.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.8\\microsoft.entityframeworkcore.abstractions.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.8\\microsoft.entityframeworkcore.analyzers.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore.design\\10.0.8\\microsoft.entityframeworkcore.design.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.8\\microsoft.entityframeworkcore.relational.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\10.0.8\\microsoft.entityframeworkcore.sqlserver.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\10.0.8\\microsoft.entityframeworkcore.tools.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.extensions.apidescription.server\\10.0.0\\microsoft.extensions.apidescription.server.10.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.extensions.dependencymodel\\10.0.8\\microsoft.extensions.dependencymodel.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identity.client\\4.73.1\\microsoft.identity.client.4.73.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.73.1\\microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identitymodel.protocols\\7.7.1\\microsoft.identitymodel.protocols.7.7.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\7.7.1\\microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.openapi\\2.4.1\\microsoft.openapi.2.4.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\microsoft.visualstudio.solutionpersistence\\1.0.52\\microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\swashbuckle.aspnetcore\\10.1.7\\swashbuckle.aspnetcore.10.1.7.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\10.1.7\\swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\10.1.7\\swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\10.1.7\\swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.clientmodel\\1.5.1\\system.clientmodel.1.5.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.composition\\9.0.0\\system.composition.9.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.composition.attributedmodel\\9.0.0\\system.composition.attributedmodel.9.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.composition.convention\\9.0.0\\system.composition.convention.9.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.composition.hosting\\9.0.0\\system.composition.hosting.9.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.composition.runtime\\9.0.0\\system.composition.runtime.9.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.composition.typedparts\\9.0.0\\system.composition.typedparts.9.0.0.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.configuration.configurationmanager\\9.0.4\\system.configuration.configurationmanager.9.0.4.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.directoryservices.protocols\\10.0.8\\system.directoryservices.protocols.10.0.8.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.7.1\\system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.memory.data\\8.0.1\\system.memory.data.8.0.1.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.security.cryptography.pkcs\\9.0.4\\system.security.cryptography.pkcs.9.0.4.nupkg.sha512",
+ "C:\\Users\\torst\\.nuget\\packages\\system.security.cryptography.protecteddata\\9.0.4\\system.security.cryptography.protecteddata.9.0.4.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file