();
+ });
+ }
+}
diff --git a/api-challenge/Properties/launchSettings.json b/api-challenge/Properties/launchSettings.json
new file mode 100644
index 00000000..f0cacda1
--- /dev/null
+++ b/api-challenge/Properties/launchSettings.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:65317",
+ "sslPort": 44332
+ }
+ },
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "weatherforecast",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "api_challenge": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "launchUrl": "weatherforecast",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "applicationUrl": "https://localhost:5001;http://localhost:5000"
+ }
+ }
+}
\ No newline at end of file
diff --git a/api-challenge/Startup.cs b/api-challenge/Startup.cs
new file mode 100644
index 00000000..3dc4c362
--- /dev/null
+++ b/api-challenge/Startup.cs
@@ -0,0 +1,64 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.HttpsPolicy;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Logging;
+
+namespace api_challenge
+{
+ public class Startup
+ {
+ public Startup(IConfiguration configuration)
+ {
+ Configuration = configuration;
+ }
+
+ public IConfiguration Configuration { get; }
+
+ // This method gets called by the runtime. Use this method to add services to the container.
+ public void ConfigureServices(IServiceCollection services)
+ {
+ services.AddControllers();
+
+ services.AddSwaggerGen(setupAction =>
+ {
+ setupAction.SwaggerDoc(
+ "LibraryOpenAPISpecification",
+ new Microsoft.OpenApi.Models.OpenApiInfo()
+ {
+ Title = "Library API",
+ Version = "1"
+ });
+ });
+ }
+
+ // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
+ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
+ {
+ if (env.IsDevelopment())
+ {
+ app.UseDeveloperExceptionPage();
+ }
+
+ app.UseHttpsRedirection();
+
+ app.UseSwagger();
+
+ app.UseRouting();
+
+ app.UseAuthorization();
+
+ app.UseEndpoints(endpoints =>
+ {
+ endpoints.MapControllers();
+ });
+ }
+ }
+}
diff --git a/api-challenge/WeatherForecast.cs b/api-challenge/WeatherForecast.cs
new file mode 100644
index 00000000..d9d593eb
--- /dev/null
+++ b/api-challenge/WeatherForecast.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace api_challenge
+{
+ public class WeatherForecast
+ {
+ public DateTime Date { get; set; }
+
+ public int TemperatureC { get; set; }
+
+ public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
+
+ public string Summary { get; set; }
+ }
+}
diff --git a/api-challenge/api-challenge.csproj b/api-challenge/api-challenge.csproj
new file mode 100644
index 00000000..f1a4402e
--- /dev/null
+++ b/api-challenge/api-challenge.csproj
@@ -0,0 +1,14 @@
+
+
+
+ netcoreapp3.1
+ api_challenge
+
+
+
+
+
+
+
+
+
diff --git a/api-challenge/api-challenge.sln b/api-challenge/api-challenge.sln
new file mode 100644
index 00000000..ad9493f8
--- /dev/null
+++ b/api-challenge/api-challenge.sln
@@ -0,0 +1,17 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "api-challenge", "api-challenge.csproj", "{771AD530-0452-48B0-80CC-074622609BFA}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {771AD530-0452-48B0-80CC-074622609BFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {771AD530-0452-48B0-80CC-074622609BFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {771AD530-0452-48B0-80CC-074622609BFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {771AD530-0452-48B0-80CC-074622609BFA}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal
diff --git a/api-challenge/appsettings.Development.json b/api-challenge/appsettings.Development.json
new file mode 100644
index 00000000..dba68eb1
--- /dev/null
+++ b/api-challenge/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ }
+}
diff --git a/api-challenge/appsettings.json b/api-challenge/appsettings.json
new file mode 100644
index 00000000..81ff8777
--- /dev/null
+++ b/api-challenge/appsettings.json
@@ -0,0 +1,10 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll b/api-challenge/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
new file mode 100755
index 00000000..addb0849
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/api-challenge/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
new file mode 100644
index 00000000..f0cacda1
--- /dev/null
+++ b/api-challenge/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:65317",
+ "sslPort": 44332
+ }
+ },
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "weatherforecast",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "api_challenge": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "launchUrl": "weatherforecast",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "applicationUrl": "https://localhost:5001;http://localhost:5000"
+ }
+ }
+}
\ No newline at end of file
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll b/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
new file mode 100755
index 00000000..3f5fef7a
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll b/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
new file mode 100755
index 00000000..7b8fa9c3
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll b/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
new file mode 100755
index 00000000..c56125b8
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/api-challenge b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge
new file mode 100755
index 00000000..3543004c
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.deps.json b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.deps.json
new file mode 100644
index 00000000..45388a35
--- /dev/null
+++ b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.deps.json
@@ -0,0 +1,3509 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {
+ "defines": [
+ "TRACE",
+ "DEBUG",
+ "NETCOREAPP",
+ "NETCOREAPP3_1"
+ ],
+ "languageVersion": "",
+ "platform": "",
+ "allowUnsafe": false,
+ "warningsAsErrors": false,
+ "optimize": false,
+ "keyFile": "",
+ "emitEntryPoint": true,
+ "xmlDoc": false,
+ "debugType": "portable"
+ },
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "api-challenge/1.0.0": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "5.0.0",
+ "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0",
+ "Swashbuckle.AspNetCore.SwaggerUI": "5.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
+ "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
+ "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0",
+ "Microsoft.AspNetCore.Authentication": "3.1.0.0",
+ "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
+ "Microsoft.AspNetCore.Authorization": "3.1.0.0",
+ "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0",
+ "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
+ "Microsoft.AspNetCore.Components": "3.1.0.0",
+ "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
+ "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
+ "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
+ "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
+ "Microsoft.AspNetCore.Cors": "3.1.0.0",
+ "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
+ "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
+ "Microsoft.AspNetCore": "3.1.0.0",
+ "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Hosting": "3.1.0.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
+ "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
+ "Microsoft.AspNetCore.Http": "3.1.0.0",
+ "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0",
+ "Microsoft.AspNetCore.Http.Features": "3.1.0.0",
+ "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
+ "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
+ "Microsoft.AspNetCore.Identity": "3.1.0.0",
+ "Microsoft.AspNetCore.Localization": "3.1.0.0",
+ "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
+ "Microsoft.AspNetCore.Metadata": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
+ "Microsoft.AspNetCore.Razor": "3.1.0.0",
+ "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
+ "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
+ "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0",
+ "Microsoft.AspNetCore.Routing": "3.1.0.0",
+ "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
+ "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
+ "Microsoft.AspNetCore.Session": "3.1.0.0",
+ "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
+ "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
+ "Microsoft.AspNetCore.SignalR": "3.1.0.0",
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
+ "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
+ "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
+ "Microsoft.AspNetCore.WebUtilities": "3.1.0.0",
+ "Microsoft.CSharp": "4.0.0.0",
+ "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
+ "Microsoft.Extensions.Configuration": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
+ "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.DependencyInjection": "3.1.0.0",
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
+ "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.Hosting": "3.1.0.0",
+ "Microsoft.Extensions.Http": "3.1.0.0",
+ "Microsoft.Extensions.Identity.Core": "3.1.0.0",
+ "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.Localization": "3.1.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.1.0.0",
+ "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
+ "Microsoft.Extensions.Logging": "3.1.0.0",
+ "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
+ "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
+ "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
+ "Microsoft.Extensions.ObjectPool": "3.1.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
+ "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
+ "Microsoft.Extensions.Options": "3.1.0.0",
+ "Microsoft.Extensions.Primitives": "3.1.0.0",
+ "Microsoft.Extensions.WebEncoders": "3.1.0.0",
+ "Microsoft.JSInterop": "3.1.0.0",
+ "Microsoft.Net.Http.Headers": "3.1.0.0",
+ "Microsoft.VisualBasic.Core": "10.0.5.0",
+ "Microsoft.VisualBasic": "10.0.0.0",
+ "Microsoft.Win32.Primitives": "4.1.2.0",
+ "Microsoft.Win32.Registry": "4.1.3.0",
+ "mscorlib": "4.0.0.0",
+ "netstandard": "2.1.0.0",
+ "System.AppContext": "4.2.2.0",
+ "System.Buffers": "4.0.2.0",
+ "System.Collections.Concurrent": "4.0.15.0",
+ "System.Collections": "4.1.2.0",
+ "System.Collections.Immutable": "1.2.5.0",
+ "System.Collections.NonGeneric": "4.1.2.0",
+ "System.Collections.Specialized": "4.1.2.0",
+ "System.ComponentModel.Annotations": "4.3.1.0",
+ "System.ComponentModel.DataAnnotations": "4.0.0.0",
+ "System.ComponentModel": "4.0.4.0",
+ "System.ComponentModel.EventBasedAsync": "4.1.2.0",
+ "System.ComponentModel.Primitives": "4.2.2.0",
+ "System.ComponentModel.TypeConverter": "4.2.2.0",
+ "System.Configuration": "4.0.0.0",
+ "System.Console": "4.1.2.0",
+ "System.Core": "4.0.0.0",
+ "System.Data.Common": "4.2.2.0",
+ "System.Data.DataSetExtensions": "4.0.1.0",
+ "System.Data": "4.0.0.0",
+ "System.Diagnostics.Contracts": "4.0.4.0",
+ "System.Diagnostics.Debug": "4.1.2.0",
+ "System.Diagnostics.DiagnosticSource": "4.0.5.0",
+ "System.Diagnostics.EventLog": "4.0.2.0",
+ "System.Diagnostics.FileVersionInfo": "4.0.4.0",
+ "System.Diagnostics.Process": "4.2.2.0",
+ "System.Diagnostics.StackTrace": "4.1.2.0",
+ "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
+ "System.Diagnostics.Tools": "4.1.2.0",
+ "System.Diagnostics.TraceSource": "4.1.2.0",
+ "System.Diagnostics.Tracing": "4.2.2.0",
+ "System": "4.0.0.0",
+ "System.Drawing": "4.0.0.0",
+ "System.Drawing.Primitives": "4.2.1.0",
+ "System.Dynamic.Runtime": "4.1.2.0",
+ "System.Globalization.Calendars": "4.1.2.0",
+ "System.Globalization": "4.1.2.0",
+ "System.Globalization.Extensions": "4.1.2.0",
+ "System.IO.Compression.Brotli": "4.2.2.0",
+ "System.IO.Compression": "4.2.2.0",
+ "System.IO.Compression.FileSystem": "4.0.0.0",
+ "System.IO.Compression.ZipFile": "4.0.5.0",
+ "System.IO": "4.2.2.0",
+ "System.IO.FileSystem": "4.1.2.0",
+ "System.IO.FileSystem.DriveInfo": "4.1.2.0",
+ "System.IO.FileSystem.Primitives": "4.1.2.0",
+ "System.IO.FileSystem.Watcher": "4.1.2.0",
+ "System.IO.IsolatedStorage": "4.1.2.0",
+ "System.IO.MemoryMappedFiles": "4.1.2.0",
+ "System.IO.Pipelines": "4.0.2.0",
+ "System.IO.Pipes": "4.1.2.0",
+ "System.IO.UnmanagedMemoryStream": "4.1.2.0",
+ "System.Linq": "4.2.2.0",
+ "System.Linq.Expressions": "4.2.2.0",
+ "System.Linq.Parallel": "4.0.4.0",
+ "System.Linq.Queryable": "4.0.4.0",
+ "System.Memory": "4.2.1.0",
+ "System.Net": "4.0.0.0",
+ "System.Net.Http": "4.2.2.0",
+ "System.Net.HttpListener": "4.0.2.0",
+ "System.Net.Mail": "4.0.2.0",
+ "System.Net.NameResolution": "4.1.2.0",
+ "System.Net.NetworkInformation": "4.2.2.0",
+ "System.Net.Ping": "4.1.2.0",
+ "System.Net.Primitives": "4.1.2.0",
+ "System.Net.Requests": "4.1.2.0",
+ "System.Net.Security": "4.1.2.0",
+ "System.Net.ServicePoint": "4.0.2.0",
+ "System.Net.Sockets": "4.2.2.0",
+ "System.Net.WebClient": "4.0.2.0",
+ "System.Net.WebHeaderCollection": "4.1.2.0",
+ "System.Net.WebProxy": "4.0.2.0",
+ "System.Net.WebSockets.Client": "4.1.2.0",
+ "System.Net.WebSockets": "4.1.2.0",
+ "System.Numerics": "4.0.0.0",
+ "System.Numerics.Vectors": "4.1.6.0",
+ "System.ObjectModel": "4.1.2.0",
+ "System.Reflection.DispatchProxy": "4.0.6.0",
+ "System.Reflection": "4.2.2.0",
+ "System.Reflection.Emit": "4.1.2.0",
+ "System.Reflection.Emit.ILGeneration": "4.1.1.0",
+ "System.Reflection.Emit.Lightweight": "4.1.1.0",
+ "System.Reflection.Extensions": "4.1.2.0",
+ "System.Reflection.Metadata": "1.4.5.0",
+ "System.Reflection.Primitives": "4.1.2.0",
+ "System.Reflection.TypeExtensions": "4.1.2.0",
+ "System.Resources.Reader": "4.1.2.0",
+ "System.Resources.ResourceManager": "4.1.2.0",
+ "System.Resources.Writer": "4.1.2.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.0.6.0",
+ "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
+ "System.Runtime": "4.2.2.0",
+ "System.Runtime.Extensions": "4.2.2.0",
+ "System.Runtime.Handles": "4.1.2.0",
+ "System.Runtime.InteropServices": "4.2.2.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
+ "System.Runtime.Intrinsics": "4.0.1.0",
+ "System.Runtime.Loader": "4.1.1.0",
+ "System.Runtime.Numerics": "4.1.2.0",
+ "System.Runtime.Serialization": "4.0.0.0",
+ "System.Runtime.Serialization.Formatters": "4.0.4.0",
+ "System.Runtime.Serialization.Json": "4.0.5.0",
+ "System.Runtime.Serialization.Primitives": "4.2.2.0",
+ "System.Runtime.Serialization.Xml": "4.1.5.0",
+ "System.Security.AccessControl": "4.1.1.0",
+ "System.Security.Claims": "4.1.2.0",
+ "System.Security.Cryptography.Algorithms": "4.3.2.0",
+ "System.Security.Cryptography.Cng": "4.3.3.0",
+ "System.Security.Cryptography.Csp": "4.1.2.0",
+ "System.Security.Cryptography.Encoding": "4.1.2.0",
+ "System.Security.Cryptography.Primitives": "4.1.2.0",
+ "System.Security.Cryptography.X509Certificates": "4.2.2.0",
+ "System.Security.Cryptography.Xml": "4.0.3.0",
+ "System.Security": "4.0.0.0",
+ "System.Security.Permissions": "4.0.3.0",
+ "System.Security.Principal": "4.1.2.0",
+ "System.Security.Principal.Windows": "4.1.1.0",
+ "System.Security.SecureString": "4.1.2.0",
+ "System.ServiceModel.Web": "4.0.0.0",
+ "System.ServiceProcess": "4.0.0.0",
+ "System.Text.Encoding.CodePages": "4.1.3.0",
+ "System.Text.Encoding": "4.1.2.0",
+ "System.Text.Encoding.Extensions": "4.1.2.0",
+ "System.Text.Encodings.Web": "4.0.5.0",
+ "System.Text.Json": "4.0.1.0",
+ "System.Text.RegularExpressions": "4.2.2.0",
+ "System.Threading.Channels": "4.0.2.0",
+ "System.Threading": "4.1.2.0",
+ "System.Threading.Overlapped": "4.1.2.0",
+ "System.Threading.Tasks.Dataflow": "4.6.5.0",
+ "System.Threading.Tasks": "4.1.2.0",
+ "System.Threading.Tasks.Extensions": "4.3.1.0",
+ "System.Threading.Tasks.Parallel": "4.0.4.0",
+ "System.Threading.Thread": "4.1.2.0",
+ "System.Threading.ThreadPool": "4.1.2.0",
+ "System.Threading.Timer": "4.1.2.0",
+ "System.Transactions": "4.0.0.0",
+ "System.Transactions.Local": "4.0.2.0",
+ "System.ValueTuple": "4.0.3.0",
+ "System.Web": "4.0.0.0",
+ "System.Web.HttpUtility": "4.0.2.0",
+ "System.Windows": "4.0.0.0",
+ "System.Windows.Extensions": "4.0.1.0",
+ "System.Xml": "4.0.0.0",
+ "System.Xml.Linq": "4.0.0.0",
+ "System.Xml.ReaderWriter": "4.2.2.0",
+ "System.Xml.Serialization": "4.0.0.0",
+ "System.Xml.XDocument": "4.1.2.0",
+ "System.Xml.XmlDocument": "4.1.2.0",
+ "System.Xml.XmlSerializer": "4.1.2.0",
+ "System.Xml.XPath": "4.1.2.0",
+ "System.Xml.XPath.XDocument": "4.1.2.0",
+ "WindowsBase": "4.0.0.0"
+ },
+ "runtime": {
+ "api-challenge.dll": {}
+ },
+ "compile": {
+ "api-challenge.dll": {}
+ }
+ },
+ "Microsoft.OpenApi/1.1.4": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "1.1.4.0",
+ "fileVersion": "1.1.4.0"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/5.0.0": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.1.4"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/5.0.0": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "5.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/5.0.0": {
+ "runtime": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Antiforgery.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authorization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authorization.Policy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Authorization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Forms.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Server.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.CookiePolicy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cors/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HostFiltering.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Html.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Connections.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Features.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HttpOverrides.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HttpsPolicy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Identity/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Identity.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Localization/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Localization.Routing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Metadata.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Cors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Razor.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Razor/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Razor.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Razor.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCaching.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCompression.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Rewrite.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Routing/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Routing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.HttpSys.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.IIS.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Session/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Session.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.StaticFiles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.WebSockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.WebUtilities.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.CSharp/4.0.0.0": {
+ "compile": {
+ "Microsoft.CSharp.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Caching.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Caching.Memory.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Ini.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Embedded.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Hosting/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Hosting.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Http/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Identity.Core/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Identity.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Identity.Stores.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Localization/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Console.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Debug.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.EventLog.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.EventSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.TraceSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.ObjectPool/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.ObjectPool.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Primitives/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.WebEncoders/3.1.0.0": {
+ "compile": {
+ "Microsoft.Extensions.WebEncoders.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.JSInterop/3.1.0.0": {
+ "compile": {
+ "Microsoft.JSInterop.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Net.Http.Headers/3.1.0.0": {
+ "compile": {
+ "Microsoft.Net.Http.Headers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.VisualBasic.Core/10.0.5.0": {
+ "compile": {
+ "Microsoft.VisualBasic.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.VisualBasic/10.0.0.0": {
+ "compile": {
+ "Microsoft.VisualBasic.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Win32.Primitives/4.1.2.0": {
+ "compile": {
+ "Microsoft.Win32.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Win32.Registry/4.1.3.0": {
+ "compile": {
+ "Microsoft.Win32.Registry.dll": {}
+ },
+ "compileOnly": true
+ },
+ "mscorlib/4.0.0.0": {
+ "compile": {
+ "mscorlib.dll": {}
+ },
+ "compileOnly": true
+ },
+ "netstandard/2.1.0.0": {
+ "compile": {
+ "netstandard.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.AppContext/4.2.2.0": {
+ "compile": {
+ "System.AppContext.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Buffers/4.0.2.0": {
+ "compile": {
+ "System.Buffers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Concurrent/4.0.15.0": {
+ "compile": {
+ "System.Collections.Concurrent.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections/4.1.2.0": {
+ "compile": {
+ "System.Collections.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Immutable/1.2.5.0": {
+ "compile": {
+ "System.Collections.Immutable.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.NonGeneric/4.1.2.0": {
+ "compile": {
+ "System.Collections.NonGeneric.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Specialized/4.1.2.0": {
+ "compile": {
+ "System.Collections.Specialized.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Annotations/4.3.1.0": {
+ "compile": {
+ "System.ComponentModel.Annotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.DataAnnotations/4.0.0.0": {
+ "compile": {
+ "System.ComponentModel.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel/4.0.4.0": {
+ "compile": {
+ "System.ComponentModel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.EventBasedAsync/4.1.2.0": {
+ "compile": {
+ "System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Primitives/4.2.2.0": {
+ "compile": {
+ "System.ComponentModel.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.TypeConverter/4.2.2.0": {
+ "compile": {
+ "System.ComponentModel.TypeConverter.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Configuration/4.0.0.0": {
+ "compile": {
+ "System.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Console/4.1.2.0": {
+ "compile": {
+ "System.Console.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Core/4.0.0.0": {
+ "compile": {
+ "System.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data.Common/4.2.2.0": {
+ "compile": {
+ "System.Data.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data.DataSetExtensions/4.0.1.0": {
+ "compile": {
+ "System.Data.DataSetExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data/4.0.0.0": {
+ "compile": {
+ "System.Data.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Contracts/4.0.4.0": {
+ "compile": {
+ "System.Diagnostics.Contracts.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Debug/4.1.2.0": {
+ "compile": {
+ "System.Diagnostics.Debug.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.DiagnosticSource/4.0.5.0": {
+ "compile": {
+ "System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.EventLog/4.0.2.0": {
+ "compile": {
+ "System.Diagnostics.EventLog.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.FileVersionInfo/4.0.4.0": {
+ "compile": {
+ "System.Diagnostics.FileVersionInfo.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Process/4.2.2.0": {
+ "compile": {
+ "System.Diagnostics.Process.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.StackTrace/4.1.2.0": {
+ "compile": {
+ "System.Diagnostics.StackTrace.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
+ "compile": {
+ "System.Diagnostics.TextWriterTraceListener.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Tools/4.1.2.0": {
+ "compile": {
+ "System.Diagnostics.Tools.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.TraceSource/4.1.2.0": {
+ "compile": {
+ "System.Diagnostics.TraceSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Tracing/4.2.2.0": {
+ "compile": {
+ "System.Diagnostics.Tracing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System/4.0.0.0": {
+ "compile": {
+ "System.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Drawing/4.0.0.0": {
+ "compile": {
+ "System.Drawing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Drawing.Primitives/4.2.1.0": {
+ "compile": {
+ "System.Drawing.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Dynamic.Runtime/4.1.2.0": {
+ "compile": {
+ "System.Dynamic.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Calendars/4.1.2.0": {
+ "compile": {
+ "System.Globalization.Calendars.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization/4.1.2.0": {
+ "compile": {
+ "System.Globalization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Extensions/4.1.2.0": {
+ "compile": {
+ "System.Globalization.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression.Brotli/4.2.2.0": {
+ "compile": {
+ "System.IO.Compression.Brotli.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression/4.2.2.0": {
+ "compile": {
+ "System.IO.Compression.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression.FileSystem/4.0.0.0": {
+ "compile": {
+ "System.IO.Compression.FileSystem.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression.ZipFile/4.0.5.0": {
+ "compile": {
+ "System.IO.Compression.ZipFile.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO/4.2.2.0": {
+ "compile": {
+ "System.IO.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem/4.1.2.0": {
+ "compile": {
+ "System.IO.FileSystem.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.DriveInfo/4.1.2.0": {
+ "compile": {
+ "System.IO.FileSystem.DriveInfo.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Primitives/4.1.2.0": {
+ "compile": {
+ "System.IO.FileSystem.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Watcher/4.1.2.0": {
+ "compile": {
+ "System.IO.FileSystem.Watcher.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.IsolatedStorage/4.1.2.0": {
+ "compile": {
+ "System.IO.IsolatedStorage.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.MemoryMappedFiles/4.1.2.0": {
+ "compile": {
+ "System.IO.MemoryMappedFiles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Pipelines/4.0.2.0": {
+ "compile": {
+ "System.IO.Pipelines.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Pipes/4.1.2.0": {
+ "compile": {
+ "System.IO.Pipes.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.UnmanagedMemoryStream/4.1.2.0": {
+ "compile": {
+ "System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq/4.2.2.0": {
+ "compile": {
+ "System.Linq.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Expressions/4.2.2.0": {
+ "compile": {
+ "System.Linq.Expressions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Parallel/4.0.4.0": {
+ "compile": {
+ "System.Linq.Parallel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Queryable/4.0.4.0": {
+ "compile": {
+ "System.Linq.Queryable.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Memory/4.2.1.0": {
+ "compile": {
+ "System.Memory.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net/4.0.0.0": {
+ "compile": {
+ "System.Net.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Http/4.2.2.0": {
+ "compile": {
+ "System.Net.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.HttpListener/4.0.2.0": {
+ "compile": {
+ "System.Net.HttpListener.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Mail/4.0.2.0": {
+ "compile": {
+ "System.Net.Mail.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.NameResolution/4.1.2.0": {
+ "compile": {
+ "System.Net.NameResolution.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.NetworkInformation/4.2.2.0": {
+ "compile": {
+ "System.Net.NetworkInformation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Ping/4.1.2.0": {
+ "compile": {
+ "System.Net.Ping.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Primitives/4.1.2.0": {
+ "compile": {
+ "System.Net.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Requests/4.1.2.0": {
+ "compile": {
+ "System.Net.Requests.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Security/4.1.2.0": {
+ "compile": {
+ "System.Net.Security.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.ServicePoint/4.0.2.0": {
+ "compile": {
+ "System.Net.ServicePoint.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Sockets/4.2.2.0": {
+ "compile": {
+ "System.Net.Sockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebClient/4.0.2.0": {
+ "compile": {
+ "System.Net.WebClient.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebHeaderCollection/4.1.2.0": {
+ "compile": {
+ "System.Net.WebHeaderCollection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebProxy/4.0.2.0": {
+ "compile": {
+ "System.Net.WebProxy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebSockets.Client/4.1.2.0": {
+ "compile": {
+ "System.Net.WebSockets.Client.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebSockets/4.1.2.0": {
+ "compile": {
+ "System.Net.WebSockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Numerics/4.0.0.0": {
+ "compile": {
+ "System.Numerics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Numerics.Vectors/4.1.6.0": {
+ "compile": {
+ "System.Numerics.Vectors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ObjectModel/4.1.2.0": {
+ "compile": {
+ "System.ObjectModel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.DispatchProxy/4.0.6.0": {
+ "compile": {
+ "System.Reflection.DispatchProxy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection/4.2.2.0": {
+ "compile": {
+ "System.Reflection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit/4.1.2.0": {
+ "compile": {
+ "System.Reflection.Emit.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.ILGeneration/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.Lightweight/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Extensions/4.1.2.0": {
+ "compile": {
+ "System.Reflection.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Metadata/1.4.5.0": {
+ "compile": {
+ "System.Reflection.Metadata.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Primitives/4.1.2.0": {
+ "compile": {
+ "System.Reflection.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.TypeExtensions/4.1.2.0": {
+ "compile": {
+ "System.Reflection.TypeExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.Reader/4.1.2.0": {
+ "compile": {
+ "System.Resources.Reader.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.ResourceManager/4.1.2.0": {
+ "compile": {
+ "System.Resources.ResourceManager.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.Writer/4.1.2.0": {
+ "compile": {
+ "System.Resources.Writer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
+ "compile": {
+ "System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
+ "compile": {
+ "System.Runtime.CompilerServices.VisualC.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime/4.2.2.0": {
+ "compile": {
+ "System.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Extensions/4.2.2.0": {
+ "compile": {
+ "System.Runtime.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Handles/4.1.2.0": {
+ "compile": {
+ "System.Runtime.Handles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices/4.2.2.0": {
+ "compile": {
+ "System.Runtime.InteropServices.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
+ "compile": {
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
+ "compile": {
+ "System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Intrinsics/4.0.1.0": {
+ "compile": {
+ "System.Runtime.Intrinsics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Loader/4.1.1.0": {
+ "compile": {
+ "System.Runtime.Loader.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Numerics/4.1.2.0": {
+ "compile": {
+ "System.Runtime.Numerics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization/4.0.0.0": {
+ "compile": {
+ "System.Runtime.Serialization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Formatters/4.0.4.0": {
+ "compile": {
+ "System.Runtime.Serialization.Formatters.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Json/4.0.5.0": {
+ "compile": {
+ "System.Runtime.Serialization.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Primitives/4.2.2.0": {
+ "compile": {
+ "System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Xml/4.1.5.0": {
+ "compile": {
+ "System.Runtime.Serialization.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.AccessControl/4.1.1.0": {
+ "compile": {
+ "System.Security.AccessControl.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Claims/4.1.2.0": {
+ "compile": {
+ "System.Security.Claims.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Algorithms/4.3.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Algorithms.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Cng/4.3.3.0": {
+ "compile": {
+ "System.Security.Cryptography.Cng.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Csp/4.1.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Csp.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Encoding/4.1.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Encoding.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Primitives/4.1.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.X509Certificates/4.2.2.0": {
+ "compile": {
+ "System.Security.Cryptography.X509Certificates.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Xml/4.0.3.0": {
+ "compile": {
+ "System.Security.Cryptography.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security/4.0.0.0": {
+ "compile": {
+ "System.Security.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Permissions/4.0.3.0": {
+ "compile": {
+ "System.Security.Permissions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Principal/4.1.2.0": {
+ "compile": {
+ "System.Security.Principal.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Principal.Windows/4.1.1.0": {
+ "compile": {
+ "System.Security.Principal.Windows.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.SecureString/4.1.2.0": {
+ "compile": {
+ "System.Security.SecureString.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ServiceModel.Web/4.0.0.0": {
+ "compile": {
+ "System.ServiceModel.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ServiceProcess/4.0.0.0": {
+ "compile": {
+ "System.ServiceProcess.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.CodePages/4.1.3.0": {
+ "compile": {
+ "System.Text.Encoding.CodePages.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding/4.1.2.0": {
+ "compile": {
+ "System.Text.Encoding.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.Extensions/4.1.2.0": {
+ "compile": {
+ "System.Text.Encoding.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encodings.Web/4.0.5.0": {
+ "compile": {
+ "System.Text.Encodings.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Json/4.0.1.0": {
+ "compile": {
+ "System.Text.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.RegularExpressions/4.2.2.0": {
+ "compile": {
+ "System.Text.RegularExpressions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Channels/4.0.2.0": {
+ "compile": {
+ "System.Threading.Channels.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading/4.1.2.0": {
+ "compile": {
+ "System.Threading.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Overlapped/4.1.2.0": {
+ "compile": {
+ "System.Threading.Overlapped.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Dataflow/4.6.5.0": {
+ "compile": {
+ "System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks/4.1.2.0": {
+ "compile": {
+ "System.Threading.Tasks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Extensions/4.3.1.0": {
+ "compile": {
+ "System.Threading.Tasks.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Parallel/4.0.4.0": {
+ "compile": {
+ "System.Threading.Tasks.Parallel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Thread/4.1.2.0": {
+ "compile": {
+ "System.Threading.Thread.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.ThreadPool/4.1.2.0": {
+ "compile": {
+ "System.Threading.ThreadPool.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Timer/4.1.2.0": {
+ "compile": {
+ "System.Threading.Timer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Transactions/4.0.0.0": {
+ "compile": {
+ "System.Transactions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Transactions.Local/4.0.2.0": {
+ "compile": {
+ "System.Transactions.Local.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ValueTuple/4.0.3.0": {
+ "compile": {
+ "System.ValueTuple.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Web/4.0.0.0": {
+ "compile": {
+ "System.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Web.HttpUtility/4.0.2.0": {
+ "compile": {
+ "System.Web.HttpUtility.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Windows/4.0.0.0": {
+ "compile": {
+ "System.Windows.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Windows.Extensions/4.0.1.0": {
+ "compile": {
+ "System.Windows.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml/4.0.0.0": {
+ "compile": {
+ "System.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.Linq/4.0.0.0": {
+ "compile": {
+ "System.Xml.Linq.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.ReaderWriter/4.2.2.0": {
+ "compile": {
+ "System.Xml.ReaderWriter.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.Serialization/4.0.0.0": {
+ "compile": {
+ "System.Xml.Serialization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XDocument/4.1.2.0": {
+ "compile": {
+ "System.Xml.XDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XmlDocument/4.1.2.0": {
+ "compile": {
+ "System.Xml.XmlDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XmlSerializer/4.1.2.0": {
+ "compile": {
+ "System.Xml.XmlSerializer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XPath/4.1.2.0": {
+ "compile": {
+ "System.Xml.XPath.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XPath.XDocument/4.1.2.0": {
+ "compile": {
+ "System.Xml.XPath.XDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "WindowsBase/4.0.0.0": {
+ "compile": {
+ "WindowsBase.dll": {}
+ },
+ "compileOnly": true
+ }
+ }
+ },
+ "libraries": {
+ "api-challenge/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.OpenApi/1.1.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6SW0tpbJslc8LAY1XniRfLVcJa7bJUbbwvo2/ZRqfkMbJrsqIj9045vg3STtZhDhYRKhpYgjqGU11eeW4Pzyrg==",
+ "path": "microsoft.openapi/1.1.4",
+ "hashPath": "microsoft.openapi.1.1.4.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.Swagger/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4MhbjCErPsLnkyYrNc7OFUWVYoyhJRGAoFwbuDONslIOhIn5CmM52a4hO8s/jaM5i55uDms/veh24d/fR1UvZw==",
+ "path": "swashbuckle.aspnetcore.swagger/5.0.0",
+ "hashPath": "swashbuckle.aspnetcore.swagger.5.0.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-liZs2B35w1bHNacpNoDofNCJKmEhUaHVgvtUsjt/AToKQdZQpk9dvLWrEfRHiuwZVUiKLL30lsiV4dEF/Drzlw==",
+ "path": "swashbuckle.aspnetcore.swaggergen/5.0.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggergen.5.0.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MKDE976W6VUKc+3N/os/xgfj/WpxoHLGBlnURNyC8cb81XjKfTduoJ4JcsBgFsevSM2Yp4lxNaBeJ6vRYN3V0Q==",
+ "path": "swashbuckle.aspnetcore.swaggerui/5.0.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggerui.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cors/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Identity/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Localization/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Razor/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Routing/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Session/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.CSharp/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Hosting/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Http/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Identity.Core/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Localization/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Console/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.ObjectPool/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Primitives/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.WebEncoders/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.JSInterop/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Net.Http.Headers/3.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.VisualBasic.Core/10.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.VisualBasic/10.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Win32.Primitives/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Win32.Registry/4.1.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "mscorlib/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "netstandard/2.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.AppContext/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Buffers/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Concurrent/4.0.15.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Immutable/1.2.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.NonGeneric/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Specialized/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Annotations/4.3.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.DataAnnotations/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.EventBasedAsync/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Primitives/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.TypeConverter/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Configuration/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Console/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Core/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data.Common/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data.DataSetExtensions/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Contracts/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Debug/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.DiagnosticSource/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.EventLog/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.FileVersionInfo/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Process/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.StackTrace/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Tools/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.TraceSource/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Tracing/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Drawing/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Drawing.Primitives/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Dynamic.Runtime/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Calendars/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Extensions/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression.Brotli/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression.FileSystem/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression.ZipFile/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.DriveInfo/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Primitives/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Watcher/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.IsolatedStorage/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.MemoryMappedFiles/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Pipelines/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Pipes/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.UnmanagedMemoryStream/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Expressions/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Parallel/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Queryable/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Memory/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Http/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.HttpListener/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Mail/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.NameResolution/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.NetworkInformation/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Ping/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Primitives/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Requests/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Security/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.ServicePoint/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Sockets/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebClient/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebHeaderCollection/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebProxy/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebSockets.Client/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebSockets/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Numerics/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Numerics.Vectors/4.1.6.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ObjectModel/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.DispatchProxy/4.0.6.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.ILGeneration/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.Lightweight/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Extensions/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Metadata/1.4.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Primitives/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.TypeExtensions/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.Reader/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.ResourceManager/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.Writer/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Extensions/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Handles/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Intrinsics/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Loader/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Numerics/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Formatters/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Json/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Primitives/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Xml/4.1.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.AccessControl/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Claims/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Algorithms/4.3.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Cng/4.3.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Csp/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Encoding/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Primitives/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.X509Certificates/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Xml/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Permissions/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Principal/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Principal.Windows/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.SecureString/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ServiceModel.Web/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ServiceProcess/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.CodePages/4.1.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.Extensions/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encodings.Web/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Json/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.RegularExpressions/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Channels/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Overlapped/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Dataflow/4.6.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Extensions/4.3.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Parallel/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Thread/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.ThreadPool/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Timer/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Transactions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Transactions.Local/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ValueTuple/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Web/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Web.HttpUtility/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Windows/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Windows.Extensions/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.Linq/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.ReaderWriter/4.2.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.Serialization/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XDocument/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XmlDocument/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XmlSerializer/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XPath/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XPath.XDocument/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "WindowsBase/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.dll b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.dll
new file mode 100644
index 00000000..ba530554
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.dll differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.pdb b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.pdb
new file mode 100644
index 00000000..66e4f031
Binary files /dev/null and b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.pdb differ
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.dev.json b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.dev.json
new file mode 100644
index 00000000..2c79c3d7
--- /dev/null
+++ b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.dev.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "/Users/carltonstith/.dotnet/store/|arch|/|tfm|",
+ "/Users/carltonstith/.nuget/packages",
+ "/usr/local/share/dotnet/sdk/NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.json b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.json
new file mode 100644
index 00000000..6be1e949
--- /dev/null
+++ b/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "3.1.0"
+ },
+ "configProperties": {
+ "System.GC.Server": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/appsettings.Development.json b/api-challenge/bin/Debug/netcoreapp3.1/appsettings.Development.json
new file mode 100644
index 00000000..dba68eb1
--- /dev/null
+++ b/api-challenge/bin/Debug/netcoreapp3.1/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ }
+}
diff --git a/api-challenge/bin/Debug/netcoreapp3.1/appsettings.json b/api-challenge/bin/Debug/netcoreapp3.1/appsettings.json
new file mode 100644
index 00000000..81ff8777
--- /dev/null
+++ b/api-challenge/bin/Debug/netcoreapp3.1/appsettings.json
@@ -0,0 +1,10 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge
new file mode 100755
index 00000000..3543004c
Binary files /dev/null and b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge differ
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfo.cs b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfo.cs
new file mode 100644
index 00000000..f4fbc39e
--- /dev/null
+++ b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("api-challenge")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("api-challenge")]
+[assembly: System.Reflection.AssemblyTitleAttribute("api-challenge")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfoInputs.cache b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfoInputs.cache
new file mode 100644
index 00000000..344ca684
--- /dev/null
+++ b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+76b71510530c12a3da5a6c41e285d01ea0037e95
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cache b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 00000000..e69de29b
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cs b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 00000000..43d96a6e
--- /dev/null
+++ b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.RazorTargetAssemblyInfo.cache b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.RazorTargetAssemblyInfo.cache
new file mode 100644
index 00000000..ce79a8c7
--- /dev/null
+++ b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.RazorTargetAssemblyInfo.cache
@@ -0,0 +1 @@
+d1db6db2a86d065aa2fb5546f7d6b4342de78d11
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.assets.cache b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.assets.cache
new file mode 100644
index 00000000..f20c19cd
Binary files /dev/null and b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.assets.cache differ
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csproj.CopyComplete b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csproj.CopyComplete
new file mode 100644
index 00000000..e69de29b
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csproj.FileListAbsolute.txt b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..3ad5501f
--- /dev/null
+++ b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csproj.FileListAbsolute.txt
@@ -0,0 +1,24 @@
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/appsettings.Development.json
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/appsettings.json
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/Properties/launchSettings.json
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/api-challenge
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.deps.json
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.json
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.runtimeconfig.dev.json
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.dll
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/api-challenge.pdb
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll
+/Users/carltonstith/Documents/code/interviews/api-challenge/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csprojAssemblyReference.cache
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.Manifest.cache
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.xml
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cs
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.MvcApplicationPartsAssemblyInfo.cache
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfoInputs.cache
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.AssemblyInfo.cs
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.RazorTargetAssemblyInfo.cache
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csproj.CopyComplete
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.dll
+/Users/carltonstith/Documents/code/interviews/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.pdb
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csprojAssemblyReference.cache b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csprojAssemblyReference.cache
new file mode 100644
index 00000000..5fe879b3
Binary files /dev/null and b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.csprojAssemblyReference.cache differ
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.dll b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.dll
new file mode 100644
index 00000000..ba530554
Binary files /dev/null and b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.dll differ
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.pdb b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.pdb
new file mode 100644
index 00000000..66e4f031
Binary files /dev/null and b/api-challenge/obj/Debug/netcoreapp3.1/api-challenge.pdb differ
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.Manifest.cache b/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.Manifest.cache
new file mode 100644
index 00000000..e69de29b
diff --git a/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.xml b/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.xml
new file mode 100644
index 00000000..7b21d22f
--- /dev/null
+++ b/api-challenge/obj/Debug/netcoreapp3.1/staticwebassets/api-challenge.StaticWebAssets.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/api-challenge/obj/api-challenge.csproj.nuget.cache b/api-challenge/obj/api-challenge.csproj.nuget.cache
new file mode 100644
index 00000000..571ef0fd
--- /dev/null
+++ b/api-challenge/obj/api-challenge.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "a2/um2nx5kkDtVrnJwO5pxF3Cu16SHEvnS0BAaqNrY5KYckRii/DZE3mX/k4c3PYHhafC54YIkIYGoqjNMBYFA==",
+ "success": true
+}
\ No newline at end of file
diff --git a/api-challenge/obj/api-challenge.csproj.nuget.dgspec.json b/api-challenge/obj/api-challenge.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..a3cb64ed
--- /dev/null
+++ b/api-challenge/obj/api-challenge.csproj.nuget.dgspec.json
@@ -0,0 +1,78 @@
+{
+ "format": 1,
+ "restore": {
+ "/Users/carltonstith/Documents/code/interviews/api-challenge/api-challenge.csproj": {}
+ },
+ "projects": {
+ "/Users/carltonstith/Documents/code/interviews/api-challenge/api-challenge.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/carltonstith/Documents/code/interviews/api-challenge/api-challenge.csproj",
+ "projectName": "api-challenge",
+ "projectPath": "/Users/carltonstith/Documents/code/interviews/api-challenge/api-challenge.csproj",
+ "packagesPath": "/Users/carltonstith/.nuget/packages/",
+ "outputPath": "/Users/carltonstith/Documents/code/interviews/api-challenge/obj/",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "/usr/local/share/dotnet/sdk/NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "/Users/carltonstith/.config/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": {
+ "target": "Package",
+ "version": "[5.0.0, )"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen": {
+ "target": "Package",
+ "version": "[5.0.0, )"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI": {
+ "target": "Package",
+ "version": "[5.0.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/3.1.101/RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/api-challenge/obj/api-challenge.csproj.nuget.g.props b/api-challenge/obj/api-challenge.csproj.nuget.g.props
new file mode 100644
index 00000000..a6bc6895
--- /dev/null
+++ b/api-challenge/obj/api-challenge.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /Users/carltonstith/.nuget/packages/
+ /Users/carltonstith/.nuget/packages/;/usr/local/share/dotnet/sdk/NuGetFallbackFolder
+ PackageReference
+ 5.3.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/api-challenge/obj/api-challenge.csproj.nuget.g.targets b/api-challenge/obj/api-challenge.csproj.nuget.g.targets
new file mode 100644
index 00000000..53cfaa19
--- /dev/null
+++ b/api-challenge/obj/api-challenge.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/api-challenge/obj/project.assets.json b/api-challenge/obj/project.assets.json
new file mode 100644
index 00000000..451d3eb2
--- /dev/null
+++ b/api-challenge/obj/project.assets.json
@@ -0,0 +1,203 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "Microsoft.OpenApi/1.1.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.1.4"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "5.0.0"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.OpenApi/1.1.4": {
+ "sha512": "6SW0tpbJslc8LAY1XniRfLVcJa7bJUbbwvo2/ZRqfkMbJrsqIj9045vg3STtZhDhYRKhpYgjqGU11eeW4Pzyrg==",
+ "type": "package",
+ "path": "microsoft.openapi/1.1.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/Microsoft.OpenApi.dll",
+ "lib/net46/Microsoft.OpenApi.pdb",
+ "lib/net46/Microsoft.OpenApi.xml",
+ "lib/netstandard2.0/Microsoft.OpenApi.dll",
+ "lib/netstandard2.0/Microsoft.OpenApi.pdb",
+ "lib/netstandard2.0/Microsoft.OpenApi.xml",
+ "microsoft.openapi.1.1.4.nupkg.sha512",
+ "microsoft.openapi.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.Swagger/5.0.0": {
+ "sha512": "4MhbjCErPsLnkyYrNc7OFUWVYoyhJRGAoFwbuDONslIOhIn5CmM52a4hO8s/jaM5i55uDms/veh24d/fR1UvZw==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swagger/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "swashbuckle.aspnetcore.swagger.5.0.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swagger.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/5.0.0": {
+ "sha512": "liZs2B35w1bHNacpNoDofNCJKmEhUaHVgvtUsjt/AToKQdZQpk9dvLWrEfRHiuwZVUiKLL30lsiV4dEF/Drzlw==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swaggergen/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "swashbuckle.aspnetcore.swaggergen.5.0.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swaggergen.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/5.0.0": {
+ "sha512": "MKDE976W6VUKc+3N/os/xgfj/WpxoHLGBlnURNyC8cb81XjKfTduoJ4JcsBgFsevSM2Yp4lxNaBeJ6vRYN3V0Q==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swaggerui/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "swashbuckle.aspnetcore.swaggerui.5.0.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swaggerui.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v3.1": [
+ "Swashbuckle.AspNetCore.Swagger >= 5.0.0",
+ "Swashbuckle.AspNetCore.SwaggerGen >= 5.0.0",
+ "Swashbuckle.AspNetCore.SwaggerUI >= 5.0.0"
+ ]
+ },
+ "packageFolders": {
+ "/Users/carltonstith/.nuget/packages/": {},
+ "/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/Users/carltonstith/Documents/code/interviews/api-challenge/api-challenge.csproj",
+ "projectName": "api-challenge",
+ "projectPath": "/Users/carltonstith/Documents/code/interviews/api-challenge/api-challenge.csproj",
+ "packagesPath": "/Users/carltonstith/.nuget/packages/",
+ "outputPath": "/Users/carltonstith/Documents/code/interviews/api-challenge/obj/",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "/usr/local/share/dotnet/sdk/NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "/Users/carltonstith/.config/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": {
+ "target": "Package",
+ "version": "[5.0.0, )"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen": {
+ "target": "Package",
+ "version": "[5.0.0, )"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI": {
+ "target": "Package",
+ "version": "[5.0.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/3.1.101/RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/dot-net/UnitTesting/WriteUnitTest/obj/Debug/WriteUnitTest.csprojAssemblyReference.cache b/dot-net/UnitTesting/WriteUnitTest/obj/Debug/WriteUnitTest.csprojAssemblyReference.cache
new file mode 100644
index 00000000..dacafe2b
Binary files /dev/null and b/dot-net/UnitTesting/WriteUnitTest/obj/Debug/WriteUnitTest.csprojAssemblyReference.cache differ
diff --git a/dot-net/WhatWouldYouChange/INSTRUCTIONS.txt b/dot-net/WhatWouldYouChange/INSTRUCTIONS.txt
index be2263d6..ab3655c8 100644
--- a/dot-net/WhatWouldYouChange/INSTRUCTIONS.txt
+++ b/dot-net/WhatWouldYouChange/INSTRUCTIONS.txt
@@ -5,4 +5,5 @@
Suggested Changes:
+I am not sure but I am researching and will have an answer soon as I am still learning.
\ No newline at end of file
diff --git a/dot-net/WhatWouldYouChange/obj/Debug/ExampleProgram.csproj.FileListAbsolute.txt b/dot-net/WhatWouldYouChange/obj/Debug/ExampleProgram.csproj.FileListAbsolute.txt
new file mode 100644
index 00000000..e69de29b
diff --git a/html-css/WhatWouldYouChange/test.html b/html-css/WhatWouldYouChange/test.html
index 62e45f11..ae91b096 100644
--- a/html-css/WhatWouldYouChange/test.html
+++ b/html-css/WhatWouldYouChange/test.html
@@ -19,6 +19,15 @@
* The content itself
Bonus point for the correct use of the word "semantic" in an answer.
+
+Carlton Stith
+Some things that I would change are:
+1. I would begin replacing the redSection div with symantic markup such as Article.
+2. The 'ID' should be lowercase.
+3. The id 'redSection' needs to be surrounded by quotation marks.
+4. The recruitment question indicates there is a select but a select is not used. Either (a) implement a select element or (b) use radio buttons if only one favorite is allowed.
+5. The br tag should be removed and instead use CSS for line break as this does not make sense to screen readers.
+6. The p tag should begin and end at the same character position using tabs or spacing.
-->
diff --git a/javascript/WhatWouldYouChange/test.html b/javascript/WhatWouldYouChange/test.html
index 9464e8a5..1de32bd7 100644
--- a/javascript/WhatWouldYouChange/test.html
+++ b/javascript/WhatWouldYouChange/test.html
@@ -12,6 +12,12 @@
This code appears to work. Nonetheless note up to 10 things that look bad to you, including a brief note as to why.
Please consider both minor syntactical issues with the code as it stands, and how the code is structured overall.
+
+ 1. I would place the javascript in a separate file (main.js) as this cached page approach is best for pageload speed, maintenance and separation of concerns.
+ 2. I would not use the keyword var to declare the variables but instead use const or let due to scope.
+ 3. I wouldn't make write the if statement on separate lines as this makes it difficult to read.
+ 4. The JS is place in the head meaning it will load first. I would place it at the end, before the closing body tag.
+ 5. I would load the JS using async.
*/
var submitButtonActive = false