From 19e76152ffd68cf2c55e3d234619816a9a7cfae5 Mon Sep 17 00:00:00 2001 From: Iamneo Date: Thu, 21 Sep 2023 14:17:13 +0000 Subject: [PATCH] Backup Commit --- .../obj/Debug/net6.0/TestProject.assets.cache | Bin 0 -> 48 bytes .../Controllers/CustomerController.cs | 27 + .../dotnetmsAddCustomer/Models/Customer.cs | 23 + .../Models/CustomerDbContext.cs | 31 + dotnetproject/dotnetmsAddCustomer/Program.cs | 7 +- .../dotnetmsAddCustomer/appsettings.json | 5 +- ...CoreApp,Version=v6.0.AssemblyAttributes.cs | 4 + .../dotnetmsAddCustomer.AssemblyInfo.cs | 22 + ...tnetmsAddCustomer.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 16 + .../dotnetmsAddCustomer.GlobalUsings.g.cs | 17 + ...omer.MvcApplicationPartsAssemblyInfo.cache | 0 ...ustomer.MvcApplicationPartsAssemblyInfo.cs | 16 + .../net6.0/dotnetmsAddCustomer.assets.cache | Bin 0 -> 25466 bytes ...AddCustomer.csproj.AssemblyReference.cache | Bin 0 -> 143249 bytes ...AddCustomer.csproj.CoreCompileInputs.cache | 1 + ...tmsAddCustomer.csproj.FileListAbsolute.txt | 7 + ...tnetmsAddCustomer.csproj.nuget.dgspec.json | 28 +- .../dotnetmsAddCustomer.csproj.nuget.g.props | 6 +- .../obj/project.assets.json | 2142 ++++++++++++++++- .../obj/project.nuget.cache | 54 +- .../net6.0/dotnetmsViewCustomer.assets.cache | Bin 0 -> 56 bytes .../net6.0/dotnetwebapiMain.assets.cache | Bin 0 -> 56 bytes 23 files changed, 2344 insertions(+), 63 deletions(-) create mode 100644 dotnetproject/TestProject/obj/Debug/net6.0/TestProject.assets.cache create mode 100644 dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/Models/Customer.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/Models/CustomerDbContext.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfo.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfoInputs.cache create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GlobalUsings.g.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cache create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cs create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.assets.cache create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.AssemblyReference.cache create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache create mode 100644 dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt create mode 100644 dotnetproject/dotnetmsViewCustomer/obj/Debug/net6.0/dotnetmsViewCustomer.assets.cache create mode 100644 dotnetproject/dotnetwebapiMain/obj/Debug/net6.0/dotnetwebapiMain.assets.cache diff --git a/dotnetproject/TestProject/obj/Debug/net6.0/TestProject.assets.cache b/dotnetproject/TestProject/obj/Debug/net6.0/TestProject.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..3b55b4e6d804fcf322f779667dd4c13903288b90 GIT binary patch literal 48 zcmZQzU})fCU|`r1wYb`IFT*XD=5!yPSIqCO_Dl9>O`MlxaN2|=F(~x{P)P#_0|17w B5E=jg literal 0 HcmV?d00001 diff --git a/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs b/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs new file mode 100644 index 0000000..9acdc08 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/Controllers/CustomerController.cs @@ -0,0 +1,27 @@ +using Microsoft.AspNetCore.Mvc; +using dotnetwebapiAddCustomer.Models; + +namespace dotnetwebapiAddCustomer.Controllers; + +[ApiController] +[Route("[controller]")] +public class CustomerController : ControllerBase +{ + private readonly CustomerDbContext customerDbContext; + public CustomerController(CustomerDbContext _customerDbContext) + { + customerDbContext = _customerDbContext; + } + + [HttpPost] + public async Task AddCustomer(Customer customer) + { + if (!ModelState.IsValid) + { + return BadRequest(ModelState); // Return detailed validation errors + } + await customerDbContext.Customers.AddAsync(customer); + await customerDbContext.SaveChangesAsync(); + return Ok(); + } +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/Models/Customer.cs b/dotnetproject/dotnetmsAddCustomer/Models/Customer.cs new file mode 100644 index 0000000..de6d862 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/Models/Customer.cs @@ -0,0 +1,23 @@ +using System; +using Microsoft.EntityFrameworkCore; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +namespace dotnetmsAddCustomer.Models +{ + [Table("customer", Schema ="dbo")] + + public class Customer + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + [Column("customer_id")] +public int CustomerId {get;set;} +[Column("customer_name")] +public string CustomerName {get;set;} +[Column("customer_mobilenumber")] +public string MobileNumber {get;set;} +[Column("customer_email")] +public string Email {get;set;} + } + +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/Models/CustomerDbContext.cs b/dotnetproject/dotnetmsAddCustomer/Models/CustomerDbContext.cs new file mode 100644 index 0000000..3b04327 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/Models/CustomerDbContext.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; + +using Microsoft.EntityFrameworkCore.Infrastructure; + +namespace dotnetmsAddCustomer.Models; + +public class CustomerDbContext : DbContext +{ + + public CustomerDbContext(DbContextOptions options) : base(options) + { + // try + // { + // var dbCreator= Database.GetService() as RelationalDatabaseCreator; + // if(dbCreator != null) + // { + // if(!dbCreator.CanConnect())dbCreator.Create(); + // if(!dbCreator.HasTables())dbCreator.CreateTables(); + // } + + // } + // catch(Exception ex) + // { + // Console.WriteLine(ex.Message); + // } + } +public DbSet Customers {get; set;} +} \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/Program.cs b/dotnetproject/dotnetmsAddCustomer/Program.cs index 15eacee..002e502 100644 --- a/dotnetproject/dotnetmsAddCustomer/Program.cs +++ b/dotnetproject/dotnetmsAddCustomer/Program.cs @@ -1,3 +1,6 @@ +using dotnetmsAddCustomer.Models; +using Microsoft.EntityFrameworkCore; + var builder = WebApplication.CreateBuilder(args); // Add services to the container. @@ -6,7 +9,9 @@ // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); - +builder.Services.AddDbContext(options =>{ + options.UseSqlServer(builder.Configuration.GetConnectionString("MyConnString")); +}); var app = builder.Build(); // Configure the HTTP request pipeline. diff --git a/dotnetproject/dotnetmsAddCustomer/appsettings.json b/dotnetproject/dotnetmsAddCustomer/appsettings.json index 4d56694..686be58 100644 --- a/dotnetproject/dotnetmsAddCustomer/appsettings.json +++ b/dotnetproject/dotnetmsAddCustomer/appsettings.json @@ -5,5 +5,8 @@ "Microsoft.AspNetCore": "Warning" } }, - "AllowedHosts": "*" + "AllowedHosts": "*", + "ConnectionStrings": { + "MyConnString":"User ID=sa;password=examlyMssql@123;server=dffafdafebcfacbdcbaeadbebabcdebdca-0;Database=CheckDB;trusted_connection=false;Persist Security Info=False;Encrypt=False;" + } } diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..f795be5 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfo.cs b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfo.cs new file mode 100644 index 0000000..8c307b7 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// 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: System.Reflection.AssemblyCompanyAttribute("dotnetmsAddCustomer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("dotnetmsAddCustomer")] +[assembly: System.Reflection.AssemblyTitleAttribute("dotnetmsAddCustomer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfoInputs.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a27bfa7 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c2c29f5b19fcb0450a12d9add17e5c8646559c45 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GeneratedMSBuildEditorConfig.editorconfig b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..703adb0 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = dotnetmsAddCustomer +build_property.RootNamespace = dotnetmsAddCustomer +build_property.ProjectDir = /home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer +build_property._RazorSourceGeneratorDebug = diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GlobalUsings.g.cs b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GlobalUsings.g.cs @@ -0,0 +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; diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cs b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..5c337f8 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// 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("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.assets.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..290be5fe6515d71bbec7512453aef6ac900bea7f GIT binary patch literal 25466 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 literal 0 HcmV?d00001 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.AssemblyReference.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..c47ad11ba6f83ebbfea5772ac27348a484159d33 GIT binary patch literal 143249 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 literal 0 HcmV?d00001 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..20c6544 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e63075c3c4154acafa89362d54ef9ddb3976fe87 diff --git a/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0129133 --- /dev/null +++ b/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.AssemblyReference.cache +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.GeneratedMSBuildEditorConfig.editorconfig +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfoInputs.cache +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.AssemblyInfo.cs +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.csproj.CoreCompileInputs.cache +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cs +/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/obj/Debug/net6.0/dotnetmsAddCustomer.MvcApplicationPartsAssemblyInfo.cache diff --git a/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.dgspec.json b/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.dgspec.json index 8382084..b6a5129 100644 --- a/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.dgspec.json +++ b/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.dgspec.json @@ -38,9 +38,33 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.InMemory": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[6.0.0, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", - "version": "[6.2.3, )" + "version": "[6.0.0, )" } }, "imports": [ @@ -62,7 +86,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.408/RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.414/RuntimeIdentifierGraph.json" } } } diff --git a/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.g.props b/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.g.props index 56787f9..2b128d5 100644 --- a/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.g.props +++ b/dotnetproject/dotnetmsAddCustomer/obj/dotnetmsAddCustomer.csproj.nuget.g.props @@ -7,16 +7,18 @@ /home/coder/.nuget/packages/ /home/coder/.nuget/packages/ PackageReference - 6.3.2 + 6.3.3 - + + /home/coder/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0 + /home/coder/.nuget/packages/microsoft.entityframeworkcore.tools/6.0.0 \ No newline at end of file diff --git a/dotnetproject/dotnetmsAddCustomer/obj/project.assets.json b/dotnetproject/dotnetmsAddCustomer/obj/project.assets.json index d2fc51f..78e62d0 100644 --- a/dotnetproject/dotnetmsAddCustomer/obj/project.assets.json +++ b/dotnetproject/dotnetmsAddCustomer/obj/project.assets.json @@ -2,6 +2,210 @@ "version": 3, "targets": { "net6.0": { + "Humanizer.Core/2.8.26": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/2.1.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1", + "Microsoft.Identity.Client": "4.21.1", + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0", + "Microsoft.Win32.Registry": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0", + "System.Runtime.Caching": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "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" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.EntityFrameworkCore/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "6.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "6.0.0", + "Microsoft.Extensions.Caching.Memory": "6.0.0", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "System.Collections.Immutable": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/6.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.8.26", + "Microsoft.EntityFrameworkCore.Relational": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.InMemory/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "2.1.4", + "Microsoft.EntityFrameworkCore.Relational": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "type": "package", "build": { @@ -13,6 +217,269 @@ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} } }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Identity.Client/4.21.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.8.0", + "System.IdentityModel.Tokens.Jwt": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "compile": { @@ -26,30 +493,79 @@ } } }, - "Swashbuckle.AspNetCore/6.2.3": { + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Swashbuckle.AspNetCore/6.0.0": { "type": "package", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "3.0.0", - "Swashbuckle.AspNetCore.Swagger": "6.2.3", - "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", - "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" + "Swashbuckle.AspNetCore.Swagger": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.0.0" }, "build": { "build/Swashbuckle.AspNetCore.props": {} } }, - "Swashbuckle.AspNetCore.Swagger/6.2.3": { + "Swashbuckle.AspNetCore.Swagger/6.0.0": { "type": "package", "dependencies": { "Microsoft.OpenApi": "1.2.3" }, "compile": { - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { "related": ".pdb;.xml" } }, @@ -57,41 +573,616 @@ "Microsoft.AspNetCore.App" ] }, - "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { "type": "package", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.2.3" + "Swashbuckle.AspNetCore.Swagger": "6.0.0" }, "compile": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { "related": ".pdb;.xml" } - } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] }, - "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { "type": "package", "compile": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { "related": ".pdb;.xml" } }, "frameworkReferences": [ "Microsoft.AspNetCore.App" ] + }, + "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": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.8.0", + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/4.7.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.7.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.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "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.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } } } }, "libraries": { + "Humanizer.Core/2.8.26": { + "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==", + "type": "package", + "path": "humanizer.core/2.8.26", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.8.26.nupkg.sha512", + "humanizer.core.nuspec", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.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/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.5.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" + ] + }, + "Microsoft.Data.SqlClient/2.1.4": { + "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==", + "type": "package", + "path": "microsoft.data.sqlclient/2.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.Data.SqlClient.dll", + "lib/net46/Microsoft.Data.SqlClient.pdb", + "lib/net46/Microsoft.Data.SqlClient.xml", + "lib/net46/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", + "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.2.1.4.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net46/Microsoft.Data.SqlClient.dll", + "ref/net46/Microsoft.Data.SqlClient.pdb", + "ref/net46/Microsoft.Data.SqlClient.xml", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "ref/netcoreapp2.1/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/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/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb", + "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/win/lib/net46/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/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" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": { + "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.2.1.1.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.EntityFrameworkCore/6.0.0": { + "sha512": "BdHAtHzfQt3rltgSoYamSlHg2qawPtEDT677/bcSJlO8lQ/lj6XWlusM0TOt59O8Sbqm3hAC1a+4cEBxmv56pw==", + "type": "package", + "path": "microsoft.entityframeworkcore/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/6.0.0": { + "sha512": "MrMLWEw4JsZdkVci0MkkGj+fSjZrXnm3m6UNuIEwytiAAIZPvJs3iPpnzfK4qM7np82W374voYm96q7QCdL0ow==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/6.0.0": { + "sha512": "BqWBL05PUDKwPwLeQCJdc2R4cIUycXV9UmuSjYfux2fcgyet8I2eYnOWlA7NgsDwRVcxW26vxvNQ0wuc8UAcLA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/6.0.0": { + "sha512": "RFdomymyuPNffl+VPk7osdxCJQ0xlGuxr28ifdfFFNUaMK0OYiJOjr6w9z3kscOM2p2gdPWNI1IFUXllEyphow==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/6.0.0", + "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.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.InMemory/6.0.0": { + "sha512": "WJmphvCn0wue9AX+Wvqj3XZ3ehNi9oyYBFNLtHVNvKqZrcimXBOqLo5RNf1fJWYSLWhOia/vzG4JtkAeZxZ8FQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.inmemory/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.InMemory.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.InMemory.xml", + "microsoft.entityframeworkcore.inmemory.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.inmemory.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/6.0.0": { + "sha512": "rTRzrSbkUXoCGijlT9O7oq7JfuaU1/+VFyfSBjADQuOsfa0FCrWeB8ybue5CDvO/D6uW0kvPvlKfY2kwxXOOdg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.SqlServer/6.0.0": { + "sha512": "1rYYHrvOIN1bXyN9qAVd0WhmTjbZNosyrMoAL4wRiw5pu65QazwjuVV6K1IWKD4AXPxQD7+k4CxAMVTPY//UrA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlserver/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml", + "microsoft.entityframeworkcore.sqlserver.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/6.0.0": { + "sha512": "m9e6nFnkyRdKcrTFO8rl3ZihCIKrYdECw+fHZVbKz6TBMwKhih/N0sjPnNt0k7sZPvI8izKPkh1d+z4OR2qgXQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/6.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/_._", + "microsoft.entityframeworkcore.tools.6.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.tools.nuspec", + "tools/EntityFrameworkCore.PS2.psd1", + "tools/EntityFrameworkCore.PS2.psm1", + "tools/EntityFrameworkCore.psd1", + "tools/EntityFrameworkCore.psm1", + "tools/about_EntityFrameworkCore.help.txt", + "tools/init.ps1", + "tools/net461/any/ef.exe", + "tools/net461/win-x86/ef.exe", + "tools/netcoreapp2.0/any/ef.dll", + "tools/netcoreapp2.0/any/ef.runtimeconfig.json" + ] + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", "type": "package", @@ -119,6 +1210,382 @@ "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" ] }, + "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/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.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/6.0.0": { + "sha512": "Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/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.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/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.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.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.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.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.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/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.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.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", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.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.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/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.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.21.1": { + "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==", + "type": "package", + "path": "microsoft.identity.client/4.21.1", + "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/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard1.3/Microsoft.Identity.Client.dll", + "lib/netstandard1.3/Microsoft.Identity.Client.xml", + "lib/uap10.0/Microsoft.Identity.Client.dll", + "lib/uap10.0/Microsoft.Identity.Client.pri", + "lib/uap10.0/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.21.1.nupkg.sha512", + "microsoft.identity.client.nuspec", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll", + "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll", + "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml", + "ref/net45/Microsoft.Identity.Client.dll", + "ref/net45/Microsoft.Identity.Client.xml", + "ref/net461/Microsoft.Identity.Client.dll", + "ref/net461/Microsoft.Identity.Client.xml", + "ref/netcoreapp2.1/Microsoft.Identity.Client.dll", + "ref/netcoreapp2.1/Microsoft.Identity.Client.xml", + "ref/netstandard1.3/Microsoft.Identity.Client.dll", + "ref/netstandard1.3/Microsoft.Identity.Client.xml", + "ref/uap10.0/Microsoft.Identity.Client.dll", + "ref/uap10.0/Microsoft.Identity.Client.xml", + "ref/xamarinmac20/Microsoft.Identity.Client.dll", + "ref/xamarinmac20/Microsoft.Identity.Client.xml" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.8.0": { + "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.8.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", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.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", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.8.0": { + "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.8.0", + "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/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": { + "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0", + "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/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.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", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Microsoft.OpenApi/1.2.3": { "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", "type": "package", @@ -136,91 +1603,638 @@ "microsoft.openapi.nuspec" ] }, - "Swashbuckle.AspNetCore/6.2.3": { - "sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.7.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/net472/Microsoft.Win32.Registry.dll", + "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/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/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Swashbuckle.AspNetCore/6.0.0": { + "sha512": "VxukQYrUrxNUWQocOxmxua/4fZOPBdGCLSaoZYRNthZae0UXB+fzjTBTlj24fZEQrP+QTnsRwSygN9jNBqm/hg==", "type": "package", - "path": "swashbuckle.aspnetcore/6.2.3", + "path": "swashbuckle.aspnetcore/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "build/Swashbuckle.AspNetCore.props", - "swashbuckle.aspnetcore.6.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.6.0.0.nupkg.sha512", "swashbuckle.aspnetcore.nuspec" ] }, - "Swashbuckle.AspNetCore.Swagger/6.2.3": { - "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "sha512": "onkGK5eDFmyNy605E5ZaT5oXEGsQJz2UEKsUOqYCZRBC2Fi6MbByUl+qznyl3pZ9/4nTvukUjt9+v28qvJPk/Q==", "type": "package", - "path": "swashbuckle.aspnetcore.swagger/6.2.3", + "path": "swashbuckle.aspnetcore.swagger/6.0.0", "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/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.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.6.0.0.nupkg.sha512", "swashbuckle.aspnetcore.swagger.nuspec" ] }, - "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { - "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "sha512": "RXY21STD/yo4Uzy1L5GoRrEQQWoOosw0QBYo572VwcjePmpV1yFFHsTeThlMNBWKoTt6xadIdSjZj0FmDFYL2A==", "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", + "path": "swashbuckle.aspnetcore.swaggergen/6.0.0", "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/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.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.6.0.0.nupkg.sha512", "swashbuckle.aspnetcore.swaggergen.nuspec" ] }, - "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { - "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "sha512": "VusRaCFt2As3SXBJmUOGA40IGr6ao+vsvDi7jbCS4AFx69kUUm8zxIHeJVqGov3w4lQowVxv8gmonRXDRh1FvQ==", "type": "package", - "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", + "path": "swashbuckle.aspnetcore.swaggerui/6.0.0", "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/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.2.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.6.0.0.nupkg.sha512", "swashbuckle.aspnetcore.swaggerui.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.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.8.0": { + "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.8.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/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.Runtime.Caching/4.7.0": { + "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==", + "type": "package", + "path": "system.runtime.caching/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.7.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.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "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/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/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/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/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "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.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] } }, "projectFileDependencyGroups": { "net6.0": [ - "Swashbuckle.AspNetCore >= 6.2.3" + "Microsoft.EntityFrameworkCore >= 6.0.0", + "Microsoft.EntityFrameworkCore.Design >= 6.0.0", + "Microsoft.EntityFrameworkCore.InMemory >= 6.0.0", + "Microsoft.EntityFrameworkCore.SqlServer >= 6.0.0", + "Microsoft.EntityFrameworkCore.Tools >= 6.0.0", + "Swashbuckle.AspNetCore >= 6.0.0" ] }, "packageFolders": { @@ -260,9 +2274,33 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.InMemory": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[6.0.0, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", - "version": "[6.2.3, )" + "version": "[6.0.0, )" } }, "imports": [ @@ -284,7 +2322,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.408/RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.414/RuntimeIdentifierGraph.json" } } } diff --git a/dotnetproject/dotnetmsAddCustomer/obj/project.nuget.cache b/dotnetproject/dotnetmsAddCustomer/obj/project.nuget.cache index 5cad493..62e1ee4 100644 --- a/dotnetproject/dotnetmsAddCustomer/obj/project.nuget.cache +++ b/dotnetproject/dotnetmsAddCustomer/obj/project.nuget.cache @@ -1,15 +1,59 @@ { "version": 2, - "dgSpecHash": "vwkTY6vKv1jbV62zsIDdvnCSOWOANokAlff3UjhzDEEJp2pZBB+eOOcFsxTEaQUQTufQwhdHbq90Ts7/ggtTtQ==", + "dgSpecHash": "qDxSBbso0h9kkF9hj3M9Tc7V0X7LHZoDTgSobfT23Th5NExwLKEOBs/B7d0Kn6TTmx0NUDnKt+GtSKrs4r8MZg==", "success": true, "projectFilePath": "/home/coder/project/workspace/dotnetproject/dotnetmsAddCustomer/dotnetmsAddCustomer.csproj", "expectedPackageFiles": [ + "/home/coder/.nuget/packages/humanizer.core/2.8.26/humanizer.core.2.8.26.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.csharp/4.5.0/microsoft.csharp.4.5.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.data.sqlclient/2.1.4/microsoft.data.sqlclient.2.1.4.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.data.sqlclient.sni.runtime/2.1.1/microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore/6.0.0/microsoft.entityframeworkcore.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.abstractions/6.0.0/microsoft.entityframeworkcore.abstractions.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.analyzers/6.0.0/microsoft.entityframeworkcore.analyzers.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.design/6.0.0/microsoft.entityframeworkcore.design.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.inmemory/6.0.0/microsoft.entityframeworkcore.inmemory.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.relational/6.0.0/microsoft.entityframeworkcore.relational.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.sqlserver/6.0.0/microsoft.entityframeworkcore.sqlserver.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.entityframeworkcore.tools/6.0.0/microsoft.entityframeworkcore.tools.6.0.0.nupkg.sha512", "/home/coder/.nuget/packages/microsoft.extensions.apidescription.server/3.0.0/microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.identity.client/4.21.1/microsoft.identity.client.4.21.1.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.8.0/microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.identitymodel.logging/6.8.0/microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.identitymodel.protocols/6.8.0/microsoft.identitymodel.protocols.6.8.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.8.0/microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.identitymodel.tokens/6.8.0/microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.netcore.platforms/3.1.0/microsoft.netcore.platforms.3.1.0.nupkg.sha512", "/home/coder/.nuget/packages/microsoft.openapi/1.2.3/microsoft.openapi.1.2.3.nupkg.sha512", - "/home/coder/.nuget/packages/swashbuckle.aspnetcore/6.2.3/swashbuckle.aspnetcore.6.2.3.nupkg.sha512", - "/home/coder/.nuget/packages/swashbuckle.aspnetcore.swagger/6.2.3/swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", - "/home/coder/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.2.3/swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", - "/home/coder/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.2.3/swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" + "/home/coder/.nuget/packages/microsoft.win32.registry/4.7.0/microsoft.win32.registry.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/microsoft.win32.systemevents/4.7.0/microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/swashbuckle.aspnetcore/6.0.0/swashbuckle.aspnetcore.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/swashbuckle.aspnetcore.swagger/6.0.0/swashbuckle.aspnetcore.swagger.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.0.0/swashbuckle.aspnetcore.swaggergen.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.0.0/swashbuckle.aspnetcore.swaggerui.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.configuration.configurationmanager/4.7.0/system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.drawing.common/4.7.0/system.drawing.common.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.identitymodel.tokens.jwt/6.8.0/system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.runtime.caching/4.7.0/system.runtime.caching.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.security.accesscontrol/4.7.0/system.security.accesscontrol.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.security.cryptography.cng/4.5.0/system.security.cryptography.cng.4.5.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.security.cryptography.protecteddata/4.7.0/system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.security.permissions/4.7.0/system.security.permissions.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.text.encoding.codepages/4.7.0/system.text.encoding.codepages.4.7.0.nupkg.sha512", + "/home/coder/.nuget/packages/system.windows.extensions/4.7.0/system.windows.extensions.4.7.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/dotnetproject/dotnetmsViewCustomer/obj/Debug/net6.0/dotnetmsViewCustomer.assets.cache b/dotnetproject/dotnetmsViewCustomer/obj/Debug/net6.0/dotnetmsViewCustomer.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..53195944c1248d46136c7bdc5e850214e3b95261 GIT binary patch literal 56 zcmZQzU})fCU|`Ui=lrHW`P%9J&v(l%FOQk~%m3qnS$7O?p2|?4{4U!q9H^uLh+&`s E0Gm7%xc~qF literal 0 HcmV?d00001 diff --git a/dotnetproject/dotnetwebapiMain/obj/Debug/net6.0/dotnetwebapiMain.assets.cache b/dotnetproject/dotnetwebapiMain/obj/Debug/net6.0/dotnetwebapiMain.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..42788cefded62bbea41941850d9c4ad9c7b090de GIT binary patch literal 56 zcmZQzU})fCU|_g*+W)a{<7bENYv!6A|KBnvM_Y4egdbld?{I(SpFO;jfl3;H7zP>u DLw6DK literal 0 HcmV?d00001