diff --git a/.vs/AlfaPrentice/v16/.suo b/.vs/AlfaPrentice/v16/.suo
index c8244b0..833a4fe 100644
Binary files a/.vs/AlfaPrentice/v16/.suo and b/.vs/AlfaPrentice/v16/.suo differ
diff --git a/AlfaPrentice/AlfaPrentice.csproj b/AlfaPrentice/AlfaPrentice.csproj
index 259a5d6..8b319b6 100644
--- a/AlfaPrentice/AlfaPrentice.csproj
+++ b/AlfaPrentice/AlfaPrentice.csproj
@@ -14,7 +14,6 @@
-
diff --git a/AlfaPrentice/Startup.cs b/AlfaPrentice/Startup.cs
index be1a369..f4e1c74 100644
--- a/AlfaPrentice/Startup.cs
+++ b/AlfaPrentice/Startup.cs
@@ -26,7 +26,8 @@ namespace AlfaPrentice
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
-
+ services.Configure(Configuration);
+ services.AddDbContext(options => options.UseMySql(Configuration.GetConnectionString("AlfaPrentice")));
services.AddControllers();
services.AddSwaggerGen(c =>
{
diff --git a/AlfaPrentice/appsettings.json b/AlfaPrentice/appsettings.json
index d9d9a9b..442a2d1 100644
--- a/AlfaPrentice/appsettings.json
+++ b/AlfaPrentice/appsettings.json
@@ -6,5 +6,12 @@
"Microsoft.Hosting.Lifetime": "Information"
}
},
+ "ConnectionStrings": {
+ "AlfaPrentice": "Server=localhost;User Id=root; Database=AlfaPrentice"
+ },
+
+ "emailsmtp": "mail.incapabel.com",
+ "emailusername": "info@incapabel.com",
+ "emailpassword": "@Alfa2019",
"AllowedHosts": "*"
}
diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json
index e3ab6a3..81ea8a1 100644
--- a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json
+++ b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json
@@ -25,7 +25,8 @@
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "net50": {
+ "net5.0": {
+ "targetAlias": "net5.0",
"projectReferences": {}
}
},
@@ -36,7 +37,8 @@
}
},
"frameworks": {
- "net50": {
+ "net5.0": {
+ "targetAlias": "net5.0",
"dependencies": {
"Microsoft.AspNetCore.Authentication.JwtBearer": {
"target": "Package",
@@ -52,47 +54,34 @@
"NU1605"
]
},
- "Microsoft.EntityFrameworkCore": {
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Microsoft.Extensions.DependencyInjection": {
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
"target": "Package",
"version": "[1.10.9, )"
},
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[12.0.3, )"
- },
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[5.6.3, )"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.402\\RuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "win7-x86": {
- "#import": []
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.101\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props
index 2c3be0c..502d1b2 100644
--- a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props
+++ b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props
@@ -5,7 +5,7 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ C:\Users\mathieu\.nuget\packages\
PackageReference
5.8.0
@@ -19,11 +19,9 @@
-
- C:\Users\Xandra Mentink\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0
- C:\Users\Xandra Mentink\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0
- C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9
+ C:\Users\mathieu\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0
+ C:\Users\mathieu\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9
\ No newline at end of file
diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt
index 146d8f6..93b11b0 100644
--- a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt
+++ b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt
@@ -35,3 +35,13 @@ C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\
C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\ref\AlfaPrentice.dll
C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.pdb
C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.genruntimeconfig.cache
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.pdb
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csprojAssemblyReference.cache
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.AssemblyInfoInputs.cache
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.AssemblyInfo.cs
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csproj.CoreCompileInputs.cache
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.MvcApplicationPartsAssemblyInfo.cs
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.dll
+C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\ref\AlfaPrentice.dll
diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll
deleted file mode 100644
index c0b4467..0000000
Binary files a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll and /dev/null differ
diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb
deleted file mode 100644
index 19a31ae..0000000
Binary files a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb and /dev/null differ
diff --git a/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll b/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll
deleted file mode 100644
index 7cf8a9b..0000000
Binary files a/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll and /dev/null differ
diff --git a/AlfaPrentice/obj/project.assets.json b/AlfaPrentice/obj/project.assets.json
index facbb10..dededa4 100644
--- a/AlfaPrentice/obj/project.assets.json
+++ b/AlfaPrentice/obj/project.assets.json
@@ -2,15 +2,6 @@
"version": 3,
"targets": {
"net5.0": {
- "Humanizer.Core/2.8.26": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/Humanizer.dll": {}
- }
- },
"Microsoft.AspNetCore.Authentication.JwtBearer/5.0.1": {
"type": "package",
"dependencies": {
@@ -41,305 +32,7 @@
"Microsoft.AspNetCore.App"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
- "type": "package",
- "dependencies": {
- "System.Text.Encodings.Web": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
- }
- },
- "Microsoft.AspNetCore.Razor/2.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
- }
- },
- "Microsoft.AspNetCore.Razor.Language/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
- }
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Razor": "2.2.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "type": "package",
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
- "System.Collections.Immutable": "5.0.0",
- "System.Memory": "4.5.4",
- "System.Reflection.Metadata": "5.0.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.5.1",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.2.0",
- "Microsoft.CodeAnalysis.CSharp": "[3.8.0]",
- "Microsoft.CodeAnalysis.Common": "[3.8.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "5.0.0",
- "Microsoft.CodeAnalysis.CSharp": "3.7.0",
- "Microsoft.CodeAnalysis.Common": "3.7.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.CodeAnalysis.Common": "[3.8.0]",
- "System.Composition": "1.0.31"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {}
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.7.0": {
+ "Microsoft.CSharp/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
@@ -348,73 +41,6 @@
"lib/netcoreapp2.0/_._": {}
}
},
- "Microsoft.EntityFrameworkCore/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "5.0.1",
- "Microsoft.EntityFrameworkCore.Analyzers": "5.0.1",
- "Microsoft.Extensions.Caching.Memory": "5.0.0",
- "Microsoft.Extensions.DependencyInjection": "5.0.1",
- "Microsoft.Extensions.Logging": "5.0.0",
- "System.Collections.Immutable": "5.0.0",
- "System.ComponentModel.Annotations": "5.0.0",
- "System.Diagnostics.DiagnosticSource": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/5.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/5.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Design/5.0.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.8.26",
- "Microsoft.CSharp": "4.7.0",
- "Microsoft.EntityFrameworkCore.Relational": "5.0.1"
- },
- "compile": {
- "lib/netstandard2.1/_._": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {}
- },
- "build": {
- "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "5.0.1",
- "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.1/_._": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
- }
- },
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"type": "package",
"build": {
@@ -426,127 +52,6 @@
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
- "Microsoft.Extensions.Options": "5.0.0",
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
- "Microsoft.Extensions.Options": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Debug/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
- }
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
- }
- },
"Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
"type": "package",
"dependencies": {
@@ -608,24 +113,6 @@
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
}
},
- "Microsoft.NETCore.Platforms/2.1.2": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
"Microsoft.OpenApi/1.2.3": {
"type": "package",
"compile": {
@@ -642,131 +129,6 @@
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
}
},
- "Microsoft.VisualStudio.Web.CodeGeneration/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "5.0.1"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.1": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "11.0.2",
- "System.Collections.Immutable": "1.7.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "5.0.1",
- "Newtonsoft.Json": "11.0.2"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "5.0.1"
- },
- "compile": {
- "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {}
- },
- "runtime": {
- "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": {
- "assetType": "runtime",
- "rid": "win-arm"
- },
- "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": {
- "assetType": "runtime",
- "rid": "win-arm64"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.VisualStudio.Web.CodeGeneration.Core": "5.0.1"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "5.0.0",
- "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
- "Microsoft.CodeAnalysis.CSharp": "3.8.0",
- "Microsoft.CodeAnalysis.Razor": "5.0.0",
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "5.0.1"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.8.0",
- "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "5.0.1",
- "Newtonsoft.Json": "11.0.2"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.VisualStudio.Web.CodeGeneration": "5.0.1"
- },
- "compile": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
- }
- },
- "Newtonsoft.Json/12.0.3": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- }
- },
"Swashbuckle.AspNetCore/5.6.3": {
"type": "package",
"dependencies": {
@@ -821,191 +183,6 @@
"Microsoft.AspNetCore.App"
]
},
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {}
- }
- },
- "System.Collections.Immutable/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {}
- }
- },
- "System.ComponentModel.Annotations/5.0.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.Composition/1.0.31": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "1.0.31",
- "System.Composition.Convention": "1.0.31",
- "System.Composition.Hosting": "1.0.31",
- "System.Composition.Runtime": "1.0.31",
- "System.Composition.TypedParts": "1.0.31"
- }
- },
- "System.Composition.AttributedModel/1.0.31": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
- }
- },
- "System.Composition.Convention/1.0.31": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Composition.AttributedModel": "1.0.31",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/System.Composition.Convention.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Composition.Convention.dll": {}
- }
- },
- "System.Composition.Hosting/1.0.31": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Composition.Runtime": "1.0.31",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/System.Composition.Hosting.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Composition.Hosting.dll": {}
- }
- },
- "System.Composition.Runtime/1.0.31": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/System.Composition.Runtime.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Composition.Runtime.dll": {}
- }
- },
- "System.Composition.TypedParts/1.0.31": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Composition.AttributedModel": "1.0.31",
- "System.Composition.Hosting": "1.0.31",
- "System.Composition.Runtime": "1.0.31",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/5.0.0": {
- "type": "package",
- "compile": {
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {}
- },
- "runtime": {
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {}
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
- }
- },
"System.IdentityModel.Tokens.Jwt/6.7.1": {
"type": "package",
"dependencies": {
@@ -1019,234 +196,6 @@
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
}
},
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {}
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {}
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
- }
- },
- "System.Reflection.Metadata/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {}
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
- }
- },
"System.Security.Cryptography.Cng/4.5.0": {
"type": "package",
"compile": {
@@ -1261,98 +210,10 @@
"rid": "win"
}
}
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {}
- }
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "System.Runtime.CompilerServices.Unsafe": "4.5.2"
- },
- "compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encodings.Web/4.5.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {}
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
}
}
},
"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.AspNetCore.Authentication.JwtBearer/5.0.1": {
"sha512": "BGCA7V2+x6gjzZcOLfn1UYTicTBbK1kMVsoV56qiVc2+zpdEc62YPbLCC7jBUpjCeS9w/5FkGMkjvtwCarH7hg==",
"type": "package",
@@ -1383,383 +244,10 @@
"microsoft.aspnetcore.authentication.openidconnect.nuspec"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
- "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
+ "Microsoft.CSharp/4.5.0": {
+ "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
"type": "package",
- "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
- "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
- "microsoft.aspnetcore.html.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor/2.2.0": {
- "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor/2.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
- "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
- "microsoft.aspnetcore.razor.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor.Language/5.0.0": {
- "sha512": "6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor.language/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
- "microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512",
- "microsoft.aspnetcore.razor.language.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
- "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
- "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
- "microsoft.aspnetcore.razor.runtime.nuspec"
- ]
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "microsoft.bcl.asyncinterfaces.nuspec",
- "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.0.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EULA.rtf",
- "ThirdPartyNotices.rtf",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
- "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
- "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "build/Microsoft.CodeAnalysis.Analyzers.props",
- "build/Microsoft.CodeAnalysis.Analyzers.targets",
- "documentation/Analyzer Configuration.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
- "editorconfig/AllRulesDefault/.editorconfig",
- "editorconfig/AllRulesDisabled/.editorconfig",
- "editorconfig/AllRulesEnabled/.editorconfig",
- "editorconfig/CorrectnessRulesDefault/.editorconfig",
- "editorconfig/CorrectnessRulesEnabled/.editorconfig",
- "editorconfig/DataflowRulesDefault/.editorconfig",
- "editorconfig/DataflowRulesEnabled/.editorconfig",
- "editorconfig/LibraryRulesDefault/.editorconfig",
- "editorconfig/LibraryRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
- "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
- "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
- "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
- "microsoft.codeanalysis.analyzers.nuspec",
- "rulesets/AllRulesDefault.ruleset",
- "rulesets/AllRulesDisabled.ruleset",
- "rulesets/AllRulesEnabled.ruleset",
- "rulesets/CorrectnessRulesDefault.ruleset",
- "rulesets/CorrectnessRulesEnabled.ruleset",
- "rulesets/DataflowRulesDefault.ruleset",
- "rulesets/DataflowRulesEnabled.ruleset",
- "rulesets/LibraryRulesDefault.ruleset",
- "rulesets/LibraryRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
- "rulesets/PortedFromFxCopRulesDefault.ruleset",
- "rulesets/PortedFromFxCopRulesEnabled.ruleset",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "sha512": "8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "sha512": "hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": {
- "sha512": "rdEBvPWqe/IIscsnp7OkZ4tQin8khxBcSLyV9tU+sHdw9uW9U0GKL+Dv2rD4voC1bZBaO18Hp+m4Vkyfmaz0OA==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.workspaces.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Razor/5.0.0": {
- "sha512": "s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==",
- "type": "package",
- "path": "microsoft.codeanalysis.razor/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
- "microsoft.codeanalysis.razor.5.0.0.nupkg.sha512",
- "microsoft.codeanalysis.razor.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": {
- "sha512": "GPYVydsmOmScOWDJA1LFky7/MkoXpx1JI3lZJShxC+bvVUvL9zVKE8WDZMLsYJ5MAbry2xkZftdfeMpZ+kvLDQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.workspaces.common.nuspec"
- ]
- },
- "Microsoft.CSharp/4.7.0": {
- "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
- "type": "package",
- "path": "microsoft.csharp/4.7.0",
+ "path": "microsoft.csharp/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
@@ -1772,7 +260,6 @@
"lib/netcoreapp2.0/_._",
"lib/netstandard1.3/Microsoft.CSharp.dll",
"lib/netstandard2.0/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.xml",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/uap10.0.16299/_._",
"lib/win8/_._",
@@ -1782,7 +269,7 @@
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.7.0.nupkg.sha512",
+ "microsoft.csharp.4.5.0.nupkg.sha512",
"microsoft.csharp.nuspec",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
@@ -1825,77 +312,6 @@
"version.txt"
]
},
- "Microsoft.EntityFrameworkCore/5.0.1": {
- "sha512": "bz4WSbLqNw9gGeHw8VAzCcX6TVDLAD/SZRii9G7XSsqAdLL2J8pVINemXfRUt5IHlC1yWC5To4PzAUWJJZCbYw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.5.0.1.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/5.0.1": {
- "sha512": "BUc5mbxnraD5mfpOUHaluHYV1Umqpv7VzsXwnVEvmDBtoLZ2jo+y1ldv5Xq6nab0STJQEX8YaZdbJmTIZUHwtQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/5.0.1": {
- "sha512": "3WjoY8JlB7m/VApD5A4JlntFLGV2C1qOV9fiPZQNBwlNnNAVZemDVZAksN1yBVMoPqw87VaogbP5sxgptCwTFA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.5.0.1.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Design/5.0.1": {
- "sha512": "+/dbnLFwIkjZMPl4cGUCBVL6pS9ZAJYrW6Bm/n0TlKWKiwZmd0f1b7XCeji4BPMHbvZl/CryTVQ2Ox4au7AKEw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.design/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.5.0.1.nupkg.sha512",
- "microsoft.entityframeworkcore.design.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/5.0.1": {
- "sha512": "ItzAKJH2KGeYVo9csLQz0D7TjJGEG9N5wd/HVF2E+RXxOZuTKZUBO7Ft+SntVvx7DOX7tKLQOleXutf0Vnds1Q==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.5.0.1.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
"type": "package",
@@ -1923,216 +339,6 @@
"tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
]
},
- "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
- "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
- "type": "package",
- "path": "microsoft.extensions.caching.abstractions/5.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.5.0.0.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/5.0.0": {
- "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/5.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.5.0.0.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
- "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/5.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.5.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/5.0.1": {
- "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net5.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.5.0.1.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
- "type": "package",
- "path": "microsoft.extensions.logging/5.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.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net461/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.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Debug/5.0.0": {
- "sha512": "9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==",
- "type": "package",
- "path": "microsoft.extensions.logging.debug/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Logging.Debug.dll",
- "lib/net461/Microsoft.Extensions.Logging.Debug.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
- "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.debug.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
- "type": "package",
- "path": "microsoft.extensions.options/5.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/net5.0/Microsoft.Extensions.Options.dll",
- "lib/net5.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.5.0.0.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
- "type": "package",
- "path": "microsoft.extensions.primitives/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Primitives.dll",
- "lib/net461/Microsoft.Extensions.Primitives.xml",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
"Microsoft.IdentityModel.JsonWebTokens/6.7.1": {
"sha512": "q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==",
"type": "package",
@@ -2218,37 +424,6 @@
"microsoft.identitymodel.tokens.nuspec"
]
},
- "Microsoft.NETCore.Platforms/2.1.2": {
- "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
- "type": "package",
- "path": "microsoft.netcore.platforms/2.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
"Microsoft.OpenApi/1.2.3": {
"sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
"type": "package",
@@ -2330,445 +505,6 @@
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
]
},
- "Microsoft.VisualStudio.Web.CodeGeneration/5.0.1": {
- "sha512": "+UbVWKosEMf9AW/6H7GrlU20wXwZ+/8o4yHk4QiZzODzgVzrkLaPkV7ioj58/06KvhetyPJ2wNR4eXQNZ53tgw==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
- "microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.1": {
- "sha512": "so0+F5gW7kVQd0aCH86zc+KduHax1GGt7u8gdiypJsCL0NFIX96rejOefpJN+qhpWFUisjWTPGUMcSYuUvIIJg==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.contracts/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml",
- "microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.contracts.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.1": {
- "sha512": "MOuDz7SX4ODoQqd9+TGhIO6qdBTBCjZ/7M98Y0nrj5fLrk4M6P7CWffI89m686acfmWSb0+7KC6TIKX9fODV0w==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.core/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
- "microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.core.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.1": {
- "sha512": "vOyq0iocfEVA2lR5RkKzZLJbszmBgwk4Qz0TDghzLdAaL1+lPkFWnFlJ1wbR4mVVmurMSmnXFlYbbjcKmzOGWA==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.design/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net5.0/dotnet-aspnet-codegenerator-design.dll",
- "lib/net5.0/dotnet-aspnet-codegenerator-design.xml",
- "microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.design.nuspec",
- "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe",
- "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.xml",
- "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe",
- "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.xml"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.1": {
- "sha512": "v8i6qz0N5p7Tankyi1MHwjZl5/pmKeKkXcao+8hkCrcaX5yv4P7vGkgcl8arQNfmtGGenmqVGFHZOWIkwNElYA==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "Templates/DbContext/NewLocalDbContext.cshtml",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
- "microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.1": {
- "sha512": "+lKKgzWYUtKjlEkIfPkO+4uYl74idZKx1y2T29bpUv14X4hASYB+P0a55zC8anlIbwDCD5ShPX6txd5+5BES2A==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.templating/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
- "microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.templating.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.1": {
- "sha512": "fXQY9chx9mIErQGpshoYhjgCv10UeG14Gzeh1oyvwUDW7Mtxx3Xtmz8IBmT8x9hw62uLTRbFFQ2ry2sZpGLRCg==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.utils/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
- "microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.utils.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.1": {
- "sha512": "u5piiR8X8WAmcQ1vbthd9jqxKeESCEC7AH+zZKFwrMI870J4++FvYaOf/zIJaesVIm1q7L7yH85AMkP3i1S6fg==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegenerators.mvc/5.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Generators/ParameterDefinitions/area.json",
- "Generators/ParameterDefinitions/controller.json",
- "Generators/ParameterDefinitions/identity.json",
- "Generators/ParameterDefinitions/razorpage.json",
- "Generators/ParameterDefinitions/view.json",
- "Icon.png",
- "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
- "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
- "Templates/ControllerGenerator/ApiEmptyController.cshtml",
- "Templates/ControllerGenerator/ControllerWithActions.cshtml",
- "Templates/ControllerGenerator/EmptyController.cshtml",
- "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
- "Templates/Identity/Data/ApplicationDbContext.cshtml",
- "Templates/Identity/Data/ApplicationUser.cshtml",
- "Templates/Identity/IdentityHostingStartup.cshtml",
- "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Login.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Register.cshtml",
- "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity/Pages/Error.cs.cshtml",
- "Templates/Identity/Pages/Error.cshtml",
- "Templates/Identity/Pages/_Layout.cshtml",
- "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity/Pages/_ViewImports.cshtml",
- "Templates/Identity/Pages/_ViewStart.cshtml",
- "Templates/Identity/ScaffoldingReadme.cshtml",
- "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity/SupportPages._ViewImports.cshtml",
- "Templates/Identity/SupportPages._ViewStart.cshtml",
- "Templates/Identity/_LoginPartial.cshtml",
- "Templates/Identity/wwwroot/css/site.css",
- "Templates/Identity/wwwroot/favicon.ico",
- "Templates/Identity/wwwroot/js/site.js",
- "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/MvcLayout/Error.cshtml",
- "Templates/MvcLayout/_Layout.cshtml",
- "Templates/RazorPageGenerator/Create.cshtml",
- "Templates/RazorPageGenerator/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator/Delete.cshtml",
- "Templates/RazorPageGenerator/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator/Details.cshtml",
- "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator/Edit.cshtml",
- "Templates/RazorPageGenerator/EditPageModel.cshtml",
- "Templates/RazorPageGenerator/Empty.cshtml",
- "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
- "Templates/RazorPageGenerator/List.cshtml",
- "Templates/RazorPageGenerator/ListPageModel.cshtml",
- "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
- "Templates/Startup/ReadMe.cshtml",
- "Templates/Startup/Startup.cshtml",
- "Templates/ViewGenerator/Create.cshtml",
- "Templates/ViewGenerator/Delete.cshtml",
- "Templates/ViewGenerator/Details.cshtml",
- "Templates/ViewGenerator/Edit.cshtml",
- "Templates/ViewGenerator/Empty.cshtml",
- "Templates/ViewGenerator/List.cshtml",
- "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
- "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
- "lib/net5.0/bootstrap3_identitygeneratorfilesconfig.json",
- "lib/net5.0/bootstrap4_identitygeneratorfilesconfig.json",
- "microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512",
- "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
- ]
- },
- "Newtonsoft.Json/12.0.3": {
- "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
- "type": "package",
- "path": "newtonsoft.json/12.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
- "newtonsoft.json.12.0.3.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
"Swashbuckle.AspNetCore/5.6.3": {
"sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
"type": "package",
@@ -2832,495 +568,6 @@
"swashbuckle.aspnetcore.swaggerui.nuspec"
]
},
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Immutable/5.0.0": {
- "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
- "type": "package",
- "path": "system.collections.immutable/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/netstandard1.0/System.Collections.Immutable.dll",
- "lib/netstandard1.0/System.Collections.Immutable.xml",
- "lib/netstandard1.3/System.Collections.Immutable.dll",
- "lib/netstandard1.3/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
- "system.collections.immutable.5.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ComponentModel.Annotations/5.0.0": {
- "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
- "type": "package",
- "path": "system.componentmodel.annotations/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net461/System.ComponentModel.Annotations.dll",
- "lib/netcore50/System.ComponentModel.Annotations.dll",
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
- "lib/portable-net45+win8/_._",
- "lib/win8/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net461/System.ComponentModel.Annotations.dll",
- "ref/net461/System.ComponentModel.Annotations.xml",
- "ref/netcore50/System.ComponentModel.Annotations.dll",
- "ref/netcore50/System.ComponentModel.Annotations.xml",
- "ref/netcore50/de/System.ComponentModel.Annotations.xml",
- "ref/netcore50/es/System.ComponentModel.Annotations.xml",
- "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
- "ref/netcore50/it/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
- "ref/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.annotations.5.0.0.nupkg.sha512",
- "system.componentmodel.annotations.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Composition/1.0.31": {
- "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
- "type": "package",
- "path": "system.composition/1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "system.composition.1.0.31.nupkg.sha512",
- "system.composition.nuspec"
- ]
- },
- "System.Composition.AttributedModel/1.0.31": {
- "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
- "type": "package",
- "path": "system.composition.attributedmodel/1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Composition.AttributedModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
- "system.composition.attributedmodel.1.0.31.nupkg.sha512",
- "system.composition.attributedmodel.nuspec"
- ]
- },
- "System.Composition.Convention/1.0.31": {
- "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
- "type": "package",
- "path": "system.composition.convention/1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Composition.Convention.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
- "system.composition.convention.1.0.31.nupkg.sha512",
- "system.composition.convention.nuspec"
- ]
- },
- "System.Composition.Hosting/1.0.31": {
- "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
- "type": "package",
- "path": "system.composition.hosting/1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Composition.Hosting.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
- "system.composition.hosting.1.0.31.nupkg.sha512",
- "system.composition.hosting.nuspec"
- ]
- },
- "System.Composition.Runtime/1.0.31": {
- "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
- "type": "package",
- "path": "system.composition.runtime/1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Composition.Runtime.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
- "system.composition.runtime.1.0.31.nupkg.sha512",
- "system.composition.runtime.nuspec"
- ]
- },
- "System.Composition.TypedParts/1.0.31": {
- "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
- "type": "package",
- "path": "system.composition.typedparts/1.0.31",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Composition.TypedParts.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
- "system.composition.typedparts.1.0.31.nupkg.sha512",
- "system.composition.typedparts.nuspec"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Diagnostics.DiagnosticSource/5.0.0": {
- "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/System.Diagnostics.DiagnosticSource.dll",
- "lib/net45/System.Diagnostics.DiagnosticSource.xml",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Tools/4.3.0": {
- "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "type": "package",
- "path": "system.diagnostics.tools/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Tools.dll",
- "ref/netcore50/System.Diagnostics.Tools.xml",
- "ref/netcore50/de/System.Diagnostics.Tools.xml",
- "ref/netcore50/es/System.Diagnostics.Tools.xml",
- "ref/netcore50/fr/System.Diagnostics.Tools.xml",
- "ref/netcore50/it/System.Diagnostics.Tools.xml",
- "ref/netcore50/ja/System.Diagnostics.Tools.xml",
- "ref/netcore50/ko/System.Diagnostics.Tools.xml",
- "ref/netcore50/ru/System.Diagnostics.Tools.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/System.Diagnostics.Tools.dll",
- "ref/netstandard1.0/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tools.4.3.0.nupkg.sha512",
- "system.diagnostics.tools.nuspec"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
"System.IdentityModel.Tokens.Jwt/6.7.1": {
"sha512": "sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==",
"type": "package",
@@ -3338,984 +585,6 @@
"system.identitymodel.tokens.jwt.nuspec"
]
},
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Linq.Expressions/4.3.0": {
- "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "type": "package",
- "path": "system.linq.expressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.Expressions.dll",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/netstandard1.6/System.Linq.Expressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.xml",
- "ref/netcore50/de/System.Linq.Expressions.xml",
- "ref/netcore50/es/System.Linq.Expressions.xml",
- "ref/netcore50/fr/System.Linq.Expressions.xml",
- "ref/netcore50/it/System.Linq.Expressions.xml",
- "ref/netcore50/ja/System.Linq.Expressions.xml",
- "ref/netcore50/ko/System.Linq.Expressions.xml",
- "ref/netcore50/ru/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.0/System.Linq.Expressions.dll",
- "ref/netstandard1.0/System.Linq.Expressions.xml",
- "ref/netstandard1.0/de/System.Linq.Expressions.xml",
- "ref/netstandard1.0/es/System.Linq.Expressions.xml",
- "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.0/it/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.3/System.Linq.Expressions.dll",
- "ref/netstandard1.3/System.Linq.Expressions.xml",
- "ref/netstandard1.3/de/System.Linq.Expressions.xml",
- "ref/netstandard1.3/es/System.Linq.Expressions.xml",
- "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.3/it/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.6/System.Linq.Expressions.dll",
- "ref/netstandard1.6/System.Linq.Expressions.xml",
- "ref/netstandard1.6/de/System.Linq.Expressions.xml",
- "ref/netstandard1.6/es/System.Linq.Expressions.xml",
- "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.6/it/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
- "system.linq.expressions.4.3.0.nupkg.sha512",
- "system.linq.expressions.nuspec"
- ]
- },
- "System.Memory/4.5.4": {
- "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
- "type": "package",
- "path": "system.memory/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.4.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ObjectModel/4.3.0": {
- "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "type": "package",
- "path": "system.objectmodel/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ObjectModel.dll",
- "lib/netstandard1.3/System.ObjectModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.0/System.ObjectModel.dll",
- "ref/netstandard1.0/System.ObjectModel.xml",
- "ref/netstandard1.0/de/System.ObjectModel.xml",
- "ref/netstandard1.0/es/System.ObjectModel.xml",
- "ref/netstandard1.0/fr/System.ObjectModel.xml",
- "ref/netstandard1.0/it/System.ObjectModel.xml",
- "ref/netstandard1.0/ja/System.ObjectModel.xml",
- "ref/netstandard1.0/ko/System.ObjectModel.xml",
- "ref/netstandard1.0/ru/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.3/System.ObjectModel.dll",
- "ref/netstandard1.3/System.ObjectModel.xml",
- "ref/netstandard1.3/de/System.ObjectModel.xml",
- "ref/netstandard1.3/es/System.ObjectModel.xml",
- "ref/netstandard1.3/fr/System.ObjectModel.xml",
- "ref/netstandard1.3/it/System.ObjectModel.xml",
- "ref/netstandard1.3/ja/System.ObjectModel.xml",
- "ref/netstandard1.3/ko/System.ObjectModel.xml",
- "ref/netstandard1.3/ru/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.objectmodel.4.3.0.nupkg.sha512",
- "system.objectmodel.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Emit/4.3.0": {
- "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "type": "package",
- "path": "system.reflection.emit/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/netstandard1.1/System.Reflection.Emit.dll",
- "ref/netstandard1.1/System.Reflection.Emit.xml",
- "ref/netstandard1.1/de/System.Reflection.Emit.xml",
- "ref/netstandard1.1/es/System.Reflection.Emit.xml",
- "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
- "ref/netstandard1.1/it/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
- "ref/xamarinmac20/_._",
- "system.reflection.emit.4.3.0.nupkg.sha512",
- "system.reflection.emit.nuspec"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "system.reflection.emit.ilgeneration.nuspec"
- ]
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "system.reflection.emit.lightweight.nuspec"
- ]
- },
- "System.Reflection.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "system.reflection.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/netcore50/de/System.Reflection.Extensions.xml",
- "ref/netcore50/es/System.Reflection.Extensions.xml",
- "ref/netcore50/fr/System.Reflection.Extensions.xml",
- "ref/netcore50/it/System.Reflection.Extensions.xml",
- "ref/netcore50/ja/System.Reflection.Extensions.xml",
- "ref/netcore50/ko/System.Reflection.Extensions.xml",
- "ref/netcore50/ru/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/System.Reflection.Extensions.dll",
- "ref/netstandard1.0/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.extensions.4.3.0.nupkg.sha512",
- "system.reflection.extensions.nuspec"
- ]
- },
- "System.Reflection.Metadata/5.0.0": {
- "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
- "type": "package",
- "path": "system.reflection.metadata/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/netstandard1.1/System.Reflection.Metadata.dll",
- "lib/netstandard1.1/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "lib/portable-net45+win8/System.Reflection.Metadata.dll",
- "lib/portable-net45+win8/System.Reflection.Metadata.xml",
- "system.reflection.metadata.5.0.0.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "system.reflection.typeextensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/net462/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/net462/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
- "system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "system.reflection.typeextensions.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
"System.Security.Cryptography.Cng/4.5.0": {
"sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
"type": "package",
@@ -4378,335 +647,30 @@
"useSharedDesignerContext.txt",
"version.txt"
]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
- "type": "package",
- "path": "system.text.encoding.codepages/4.5.1",
- "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/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "system.text.encoding.codepages.4.5.1.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.Encodings.Web/4.5.0": {
- "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
- "type": "package",
- "path": "system.text.encodings.web/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/System.Text.Encodings.Web.dll",
- "lib/netstandard1.0/System.Text.Encodings.Web.xml",
- "lib/netstandard2.0/System.Text.Encodings.Web.dll",
- "lib/netstandard2.0/System.Text.Encodings.Web.xml",
- "system.text.encodings.web.4.5.0.nupkg.sha512",
- "system.text.encodings.web.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
}
},
"projectFileDependencyGroups": {
"net5.0": [
"Microsoft.AspNetCore.Authentication.JwtBearer >= 5.0.1",
"Microsoft.AspNetCore.Authentication.OpenIdConnect >= 5.0.1",
- "Microsoft.EntityFrameworkCore >= 5.0.1",
- "Microsoft.EntityFrameworkCore.Design >= 5.0.1",
- "Microsoft.Extensions.DependencyInjection >= 5.0.1",
- "Microsoft.Extensions.Logging.Debug >= 5.0.0",
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9",
- "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 5.0.1",
- "Newtonsoft.Json >= 12.0.3",
"Swashbuckle.AspNetCore >= 5.6.3"
]
},
"packageFolders": {
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\": {},
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ "C:\\Users\\mathieu\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
+ "projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"projectName": "AlfaPrentice",
- "projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
- "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\",
+ "projectPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
+ "packagesPath": "C:\\Users\\mathieu\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\obj\\",
"projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
- ],
"configFilePaths": [
- "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\mathieu\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
@@ -4746,36 +710,10 @@
"NU1605"
]
},
- "Microsoft.EntityFrameworkCore": {
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Microsoft.Extensions.DependencyInjection": {
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Microsoft.Extensions.Logging.Debug": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
"target": "Package",
"version": "[1.10.9, )"
},
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
- "target": "Package",
- "version": "[5.0.1, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[12.0.3, )"
- },
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[5.6.3, )"
diff --git a/AlfaPrentice/obj/project.nuget.cache b/AlfaPrentice/obj/project.nuget.cache
index f848572..49e32fa 100644
--- a/AlfaPrentice/obj/project.nuget.cache
+++ b/AlfaPrentice/obj/project.nuget.cache
@@ -1,100 +1,26 @@
{
"version": 2,
- "dgSpecHash": "FN1B+f29pV0nfmDBH5owE1g8ngBqsBLLlFtkDpZ259n9HLA5i4RvV073RhTokLghJw2lLcNda8i7myHbt2ZgpA==",
+ "dgSpecHash": "7VLI161Ro9aT/bd+pG9pYhNT8cm0bC97KMehe4Fx/mVnsR5IjNYpDtlacM9SMtTQ201kE4xyaOu1tLfLLa1JuQ==",
"success": true,
- "projectFilePath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
+ "projectFilePath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"expectedPackageFiles": [
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.1\\microsoft.aspnetcore.authentication.jwtbearer.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.0\\microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.8.0\\microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.0\\microsoft.codeanalysis.razor.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.8.0\\microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.1\\microsoft.entityframeworkcore.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.1\\microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.1\\microsoft.entityframeworkcore.analyzers.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.design\\5.0.1\\microsoft.entityframeworkcore.design.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.1\\microsoft.entityframeworkcore.relational.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.debug\\5.0.0\\microsoft.extensions.logging.debug.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\5.0.1\\microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.1\\microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.1\\microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.1\\microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.1\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.1\\microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.1\\microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.1\\microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
- "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
- "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512"
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.1\\microsoft.aspnetcore.authentication.jwtbearer.5.0.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512",
+ "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file