├── RequestService ├── .vscode │ ├── launch.json │ └── tasks.json ├── Controllers │ └── RequestController.cs ├── Policies │ └── ClientPolicy.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── RequestService.csproj ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── Microsoft.Extensions.Http.Polly.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Polly.Extensions.Http.dll │ │ ├── Polly.dll │ │ ├── RequestService.deps.json │ │ ├── RequestService.dll │ │ ├── RequestService.exe │ │ ├── RequestService.pdb │ │ ├── RequestService.runtimeconfig.dev.json │ │ ├── RequestService.runtimeconfig.json │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── ref │ │ └── RequestService.dll └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── RequestService.AssemblyInfo.cs │ │ ├── RequestService.AssemblyInfoInputs.cache │ │ ├── RequestService.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── RequestService.MvcApplicationPartsAssemblyInfo.cache │ │ ├── RequestService.MvcApplicationPartsAssemblyInfo.cs │ │ ├── RequestService.RazorTargetAssemblyInfo.cache │ │ ├── RequestService.assets.cache │ │ ├── RequestService.csproj.AssemblyReference.cache │ │ ├── RequestService.csproj.CoreCompileInputs.cache │ │ ├── RequestService.csproj.FileListAbsolute.txt │ │ ├── RequestService.dll │ │ ├── RequestService.genruntimeconfig.cache │ │ ├── RequestService.pdb │ │ ├── apphost.exe │ │ ├── project.razor.json │ │ ├── ref │ │ └── RequestService.dll │ │ └── staticwebassets │ │ ├── RequestService.StaticWebAssets.Manifest.cache │ │ └── RequestService.StaticWebAssets.xml │ ├── RequestService.csproj.nuget.dgspec.json │ ├── RequestService.csproj.nuget.g.props │ ├── RequestService.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── ResponseService ├── .vscode ├── launch.json └── tasks.json ├── Controllers └── ResponseController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── ResponseService.csproj ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net5.0 │ ├── Microsoft.OpenApi.dll │ ├── ResponseService.deps.json │ ├── ResponseService.dll │ ├── ResponseService.exe │ ├── ResponseService.pdb │ ├── ResponseService.runtimeconfig.dev.json │ ├── ResponseService.runtimeconfig.json │ ├── Swashbuckle.AspNetCore.Swagger.dll │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ └── ref │ └── ResponseService.dll └── obj ├── Debug └── net5.0 │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ ├── ResponseService.AssemblyInfo.cs │ ├── ResponseService.AssemblyInfoInputs.cache │ ├── ResponseService.GeneratedMSBuildEditorConfig.editorconfig │ ├── ResponseService.MvcApplicationPartsAssemblyInfo.cache │ ├── ResponseService.MvcApplicationPartsAssemblyInfo.cs │ ├── ResponseService.RazorTargetAssemblyInfo.cache │ ├── ResponseService.assets.cache │ ├── ResponseService.csproj.AssemblyReference.cache │ ├── ResponseService.csproj.CoreCompileInputs.cache │ ├── ResponseService.csproj.FileListAbsolute.txt │ ├── ResponseService.dll │ ├── ResponseService.genruntimeconfig.cache │ ├── ResponseService.pdb │ ├── apphost.exe │ ├── project.razor.json │ ├── ref │ └── ResponseService.dll │ └── staticwebassets │ ├── ResponseService.StaticWebAssets.Manifest.cache │ └── ResponseService.StaticWebAssets.xml ├── ResponseService.csproj.nuget.dgspec.json ├── ResponseService.csproj.nuget.g.props ├── ResponseService.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /RequestService/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | // Use IntelliSense to find out which attributes exist for C# debugging 6 | // Use hover for the description of the existing attributes 7 | // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md 8 | "name": ".NET Core Launch (web)", 9 | "type": "coreclr", 10 | "request": "launch", 11 | "preLaunchTask": "build", 12 | // If you have changed target frameworks, make sure to update the program path. 13 | "program": "${workspaceFolder}/bin/Debug/net5.0/RequestService.dll", 14 | "args": [], 15 | "cwd": "${workspaceFolder}", 16 | "stopAtEntry": false, 17 | // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser 18 | "serverReadyAction": { 19 | "action": "openExternally", 20 | "pattern": "\\bNow listening on:\\s+(https?://\\S+)" 21 | }, 22 | "env": { 23 | "ASPNETCORE_ENVIRONMENT": "Development" 24 | }, 25 | "sourceFileMap": { 26 | "/Views": "${workspaceFolder}/Views" 27 | } 28 | }, 29 | { 30 | "name": ".NET Core Attach", 31 | "type": "coreclr", 32 | "request": "attach" 33 | } 34 | ] 35 | } -------------------------------------------------------------------------------- /RequestService/.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "tasks": [ 4 | { 5 | "label": "build", 6 | "command": "dotnet", 7 | "type": "process", 8 | "args": [ 9 | "build", 10 | "${workspaceFolder}/RequestService.csproj", 11 | "/property:GenerateFullPaths=true", 12 | "/consoleloggerparameters:NoSummary" 13 | ], 14 | "problemMatcher": "$msCompile" 15 | }, 16 | { 17 | "label": "publish", 18 | "command": "dotnet", 19 | "type": "process", 20 | "args": [ 21 | "publish", 22 | "${workspaceFolder}/RequestService.csproj", 23 | "/property:GenerateFullPaths=true", 24 | "/consoleloggerparameters:NoSummary" 25 | ], 26 | "problemMatcher": "$msCompile" 27 | }, 28 | { 29 | "label": "watch", 30 | "command": "dotnet", 31 | "type": "process", 32 | "args": [ 33 | "watch", 34 | "run", 35 | "${workspaceFolder}/RequestService.csproj", 36 | "/property:GenerateFullPaths=true", 37 | "/consoleloggerparameters:NoSummary" 38 | ], 39 | "problemMatcher": "$msCompile" 40 | } 41 | ] 42 | } -------------------------------------------------------------------------------- /RequestService/Controllers/RequestController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net.Http; 3 | using System.Threading.Tasks; 4 | using Microsoft.AspNetCore.Http; 5 | using Microsoft.AspNetCore.Mvc; 6 | using RequestService.Policies; 7 | 8 | namespace RequestService.Controllers 9 | { 10 | [Route("api/[controller]")] 11 | [ApiController] 12 | public class RequestController : ControllerBase 13 | { 14 | private readonly ClientPolicy _clientPolicy; 15 | private readonly IHttpClientFactory _clientFactory; 16 | 17 | public RequestController(ClientPolicy clientPolicy, IHttpClientFactory clientFactory) 18 | { 19 | _clientPolicy = clientPolicy; 20 | _clientFactory = clientFactory; 21 | } 22 | 23 | public async Task MakeRequest() 24 | { 25 | //var client = new HttpClient(); 26 | var client = _clientFactory.CreateClient(); 27 | 28 | //var response = await client.GetAsync("https://localhost:5001/api/response/25"); 29 | 30 | var response = await _clientPolicy.ExponentialHttpRetry.ExecuteAsync(() 31 | => client.GetAsync("https://localhost:5001/api/response/25")); 32 | 33 | if(response.IsSuccessStatusCode) 34 | { 35 | Console.WriteLine("--> ResponseService returned a Success"); 36 | return Ok(); 37 | } 38 | else 39 | { 40 | Console.WriteLine("--> ResponseService returned a FAILURE"); 41 | return StatusCode(StatusCodes.Status500InternalServerError); 42 | } 43 | 44 | } 45 | } 46 | } -------------------------------------------------------------------------------- /RequestService/Policies/ClientPolicy.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net.Http; 3 | using Polly; 4 | using Polly.Retry; 5 | 6 | namespace RequestService.Policies 7 | { 8 | public class ClientPolicy 9 | { 10 | public AsyncRetryPolicy ImmediateHttpRetry { get;} 11 | public AsyncRetryPolicy LinearHttpRetry {get;} 12 | public AsyncRetryPolicy ExponentialHttpRetry {get;} 13 | 14 | public ClientPolicy() 15 | { 16 | ImmediateHttpRetry = Policy.HandleResult( 17 | res => !res.IsSuccessStatusCode) 18 | .RetryAsync(10); 19 | 20 | LinearHttpRetry = Policy.HandleResult( 21 | res => !res.IsSuccessStatusCode) 22 | .WaitAndRetryAsync(5, retryAttempt => TimeSpan.FromSeconds(3)); 23 | 24 | ExponentialHttpRetry = Policy.HandleResult( 25 | res => !res.IsSuccessStatusCode) 26 | .WaitAndRetryAsync(5, retryAttempt => TimeSpan.FromSeconds(Math.Pow(2, retryAttempt))); 27 | } 28 | } 29 | } 30 | 31 | -------------------------------------------------------------------------------- /RequestService/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace RequestService 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /RequestService/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:50260", 8 | "sslPort": 44365 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "swagger", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "RequestService": { 21 | "commandName": "Project", 22 | "dotnetRunMessages": "true", 23 | "launchBrowser": true, 24 | "launchUrl": "swagger", 25 | "applicationUrl": "https://localhost:6001;http://localhost:6000", 26 | "environmentVariables": { 27 | "ASPNETCORE_ENVIRONMENT": "Development" 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /RequestService/RequestService.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /RequestService/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net.Http; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore.Builder; 7 | using Microsoft.AspNetCore.Hosting; 8 | using Microsoft.AspNetCore.HttpsPolicy; 9 | using Microsoft.AspNetCore.Mvc; 10 | using Microsoft.Extensions.Configuration; 11 | using Microsoft.Extensions.DependencyInjection; 12 | using Microsoft.Extensions.Hosting; 13 | using Microsoft.Extensions.Logging; 14 | using Microsoft.OpenApi.Models; 15 | using RequestService.Policies; 16 | 17 | namespace RequestService 18 | { 19 | public class Startup 20 | { 21 | public Startup(IConfiguration configuration) 22 | { 23 | Configuration = configuration; 24 | } 25 | 26 | public IConfiguration Configuration { get; } 27 | 28 | 29 | public void ConfigureServices(IServiceCollection services) 30 | { 31 | services.AddHttpClient(); 32 | 33 | services.AddSingleton(new ClientPolicy()); 34 | services.AddControllers(); 35 | services.AddSwaggerGen(c => 36 | { 37 | c.SwaggerDoc("v1", new OpenApiInfo { Title = "RequestService", Version = "v1" }); 38 | }); 39 | } 40 | 41 | 42 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 43 | { 44 | if (env.IsDevelopment()) 45 | { 46 | app.UseDeveloperExceptionPage(); 47 | app.UseSwagger(); 48 | app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "RequestService v1")); 49 | } 50 | 51 | app.UseHttpsRedirection(); 52 | 53 | app.UseRouting(); 54 | 55 | app.UseAuthorization(); 56 | 57 | app.UseEndpoints(endpoints => 58 | { 59 | endpoints.MapControllers(); 60 | }); 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /RequestService/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /RequestService/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Microsoft.Extensions.Http.Polly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Microsoft.Extensions.Http.Polly.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Polly.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Polly.Extensions.Http.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Polly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Polly.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/RequestService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/RequestService.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/RequestService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/RequestService.exe -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/RequestService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/RequestService.pdb -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/RequestService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\lesja\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\lesja\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 7 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/RequestService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "5.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true, 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /RequestService/bin/Debug/net5.0/ref/RequestService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/bin/Debug/net5.0/ref/RequestService.dll -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("RequestService")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("RequestService")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("RequestService")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 759eeb2ef7f712cde71e4846a778613c9dd95c32 2 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net5.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.PublishSingleFile = 7 | build_property.IncludeAllContentForSelfExtract = 8 | build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 9 | build_property.RootNamespace = RequestService 10 | build_property.ProjectDir = D:\Polly\RequestService\ 11 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/RequestService.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 14 | 15 | // Generated by the MSBuild WriteCodeFragment class. 16 | 17 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 9b897bf4758278898196c87e886f0313737ad3a4 2 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/RequestService.assets.cache -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/RequestService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ef2815a9db0e2c6fee614b8828dc69010c4c74fa 2 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Polly\RequestService\bin\Debug\net5.0\appsettings.Development.json 2 | D:\Polly\RequestService\bin\Debug\net5.0\appsettings.json 3 | D:\Polly\RequestService\bin\Debug\net5.0\RequestService.exe 4 | D:\Polly\RequestService\bin\Debug\net5.0\RequestService.deps.json 5 | D:\Polly\RequestService\bin\Debug\net5.0\RequestService.runtimeconfig.json 6 | D:\Polly\RequestService\bin\Debug\net5.0\RequestService.runtimeconfig.dev.json 7 | D:\Polly\RequestService\bin\Debug\net5.0\RequestService.dll 8 | D:\Polly\RequestService\bin\Debug\net5.0\ref\RequestService.dll 9 | D:\Polly\RequestService\bin\Debug\net5.0\RequestService.pdb 10 | D:\Polly\RequestService\bin\Debug\net5.0\Microsoft.Extensions.Http.Polly.dll 11 | D:\Polly\RequestService\bin\Debug\net5.0\Microsoft.OpenApi.dll 12 | D:\Polly\RequestService\bin\Debug\net5.0\Polly.dll 13 | D:\Polly\RequestService\bin\Debug\net5.0\Polly.Extensions.Http.dll 14 | D:\Polly\RequestService\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll 15 | D:\Polly\RequestService\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll 16 | D:\Polly\RequestService\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll 17 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.csproj.AssemblyReference.cache 18 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.GeneratedMSBuildEditorConfig.editorconfig 19 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.AssemblyInfoInputs.cache 20 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.AssemblyInfo.cs 21 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.csproj.CoreCompileInputs.cache 22 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.MvcApplicationPartsAssemblyInfo.cs 23 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.MvcApplicationPartsAssemblyInfo.cache 24 | D:\Polly\RequestService\obj\Debug\net5.0\staticwebassets\RequestService.StaticWebAssets.Manifest.cache 25 | D:\Polly\RequestService\obj\Debug\net5.0\staticwebassets\RequestService.StaticWebAssets.xml 26 | D:\Polly\RequestService\obj\Debug\net5.0\scopedcss\bundle\RequestService.styles.css 27 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.RazorTargetAssemblyInfo.cache 28 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.dll 29 | D:\Polly\RequestService\obj\Debug\net5.0\ref\RequestService.dll 30 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.pdb 31 | D:\Polly\RequestService\obj\Debug\net5.0\RequestService.genruntimeconfig.cache 32 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/RequestService.dll -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 8f33e9cc08b93cad05203a378f5caffc8b23325d 2 | -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/RequestService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/RequestService.pdb -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/ref/RequestService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/ref/RequestService.dll -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/staticwebassets/RequestService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/RequestService/obj/Debug/net5.0/staticwebassets/RequestService.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /RequestService/obj/Debug/net5.0/staticwebassets/RequestService.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /RequestService/obj/RequestService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\Polly\\RequestService\\RequestService.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\Polly\\RequestService\\RequestService.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\Polly\\RequestService\\RequestService.csproj", 11 | "projectName": "RequestService", 12 | "projectPath": "D:\\Polly\\RequestService\\RequestService.csproj", 13 | "packagesPath": "C:\\Users\\lesja\\.nuget\\packages\\", 14 | "outputPath": "D:\\Polly\\RequestService\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 18 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\lesja\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "net5.0" 27 | ], 28 | "sources": { 29 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "net5.0": { 34 | "targetAlias": "net5.0", 35 | "projectReferences": {} 36 | } 37 | }, 38 | "warningProperties": { 39 | "warnAsError": [ 40 | "NU1605" 41 | ] 42 | } 43 | }, 44 | "frameworks": { 45 | "net5.0": { 46 | "targetAlias": "net5.0", 47 | "dependencies": { 48 | "Microsoft.Extensions.Http.Polly": { 49 | "target": "Package", 50 | "version": "[5.0.1, )" 51 | }, 52 | "Swashbuckle.AspNetCore": { 53 | "target": "Package", 54 | "version": "[5.6.3, )" 55 | } 56 | }, 57 | "imports": [ 58 | "net461", 59 | "net462", 60 | "net47", 61 | "net471", 62 | "net472", 63 | "net48" 64 | ], 65 | "assetTargetFallback": true, 66 | "warn": true, 67 | "frameworkReferences": { 68 | "Microsoft.AspNetCore.App": { 69 | "privateAssets": "none" 70 | }, 71 | "Microsoft.NETCore.App": { 72 | "privateAssets": "all" 73 | } 74 | }, 75 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.402\\RuntimeIdentifierGraph.json" 76 | } 77 | } 78 | } 79 | } 80 | } -------------------------------------------------------------------------------- /RequestService/obj/RequestService.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\lesja\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 19 | 20 | 21 | 22 | 23 | 24 | 25 | C:\Users\lesja\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 26 | 27 | -------------------------------------------------------------------------------- /RequestService/obj/RequestService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RequestService/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net5.0": { 5 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 6 | "type": "package", 7 | "build": { 8 | "build/Microsoft.Extensions.ApiDescription.Server.props": {}, 9 | "build/Microsoft.Extensions.ApiDescription.Server.targets": {} 10 | }, 11 | "buildMultiTargeting": { 12 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, 13 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} 14 | } 15 | }, 16 | "Microsoft.Extensions.DependencyInjection/5.0.0": { 17 | "type": "package", 18 | "dependencies": { 19 | "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" 20 | }, 21 | "compile": { 22 | "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} 23 | }, 24 | "runtime": { 25 | "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} 26 | } 27 | }, 28 | "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { 29 | "type": "package", 30 | "compile": { 31 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} 32 | }, 33 | "runtime": { 34 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} 35 | } 36 | }, 37 | "Microsoft.Extensions.Http/5.0.0": { 38 | "type": "package", 39 | "dependencies": { 40 | "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", 41 | "Microsoft.Extensions.Logging": "5.0.0", 42 | "Microsoft.Extensions.Logging.Abstractions": "5.0.0", 43 | "Microsoft.Extensions.Options": "5.0.0" 44 | }, 45 | "compile": { 46 | "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} 47 | }, 48 | "runtime": { 49 | "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} 50 | } 51 | }, 52 | "Microsoft.Extensions.Http.Polly/5.0.1": { 53 | "type": "package", 54 | "dependencies": { 55 | "Microsoft.Extensions.Http": "5.0.0", 56 | "Polly": "7.1.0", 57 | "Polly.Extensions.Http": "3.0.0" 58 | }, 59 | "compile": { 60 | "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": {} 61 | }, 62 | "runtime": { 63 | "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": {} 64 | } 65 | }, 66 | "Microsoft.Extensions.Logging/5.0.0": { 67 | "type": "package", 68 | "dependencies": { 69 | "Microsoft.Extensions.DependencyInjection": "5.0.0", 70 | "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", 71 | "Microsoft.Extensions.Logging.Abstractions": "5.0.0", 72 | "Microsoft.Extensions.Options": "5.0.0" 73 | }, 74 | "compile": { 75 | "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} 76 | }, 77 | "runtime": { 78 | "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} 79 | } 80 | }, 81 | "Microsoft.Extensions.Logging.Abstractions/5.0.0": { 82 | "type": "package", 83 | "compile": { 84 | "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} 85 | }, 86 | "runtime": { 87 | "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} 88 | } 89 | }, 90 | "Microsoft.Extensions.Options/5.0.0": { 91 | "type": "package", 92 | "dependencies": { 93 | "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", 94 | "Microsoft.Extensions.Primitives": "5.0.0" 95 | }, 96 | "compile": { 97 | "lib/net5.0/Microsoft.Extensions.Options.dll": {} 98 | }, 99 | "runtime": { 100 | "lib/net5.0/Microsoft.Extensions.Options.dll": {} 101 | } 102 | }, 103 | "Microsoft.Extensions.Primitives/5.0.0": { 104 | "type": "package", 105 | "compile": { 106 | "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} 107 | }, 108 | "runtime": { 109 | "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} 110 | } 111 | }, 112 | "Microsoft.OpenApi/1.2.3": { 113 | "type": "package", 114 | "compile": { 115 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 116 | }, 117 | "runtime": { 118 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 119 | } 120 | }, 121 | "Polly/7.1.0": { 122 | "type": "package", 123 | "compile": { 124 | "lib/netstandard2.0/Polly.dll": {} 125 | }, 126 | "runtime": { 127 | "lib/netstandard2.0/Polly.dll": {} 128 | } 129 | }, 130 | "Polly.Extensions.Http/3.0.0": { 131 | "type": "package", 132 | "dependencies": { 133 | "Polly": "7.1.0" 134 | }, 135 | "compile": { 136 | "lib/netstandard2.0/Polly.Extensions.Http.dll": {} 137 | }, 138 | "runtime": { 139 | "lib/netstandard2.0/Polly.Extensions.Http.dll": {} 140 | } 141 | }, 142 | "Swashbuckle.AspNetCore/5.6.3": { 143 | "type": "package", 144 | "dependencies": { 145 | "Microsoft.Extensions.ApiDescription.Server": "3.0.0", 146 | "Swashbuckle.AspNetCore.Swagger": "5.6.3", 147 | "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3", 148 | "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3" 149 | }, 150 | "build": { 151 | "build/Swashbuckle.AspNetCore.props": {} 152 | } 153 | }, 154 | "Swashbuckle.AspNetCore.Swagger/5.6.3": { 155 | "type": "package", 156 | "dependencies": { 157 | "Microsoft.OpenApi": "1.2.3" 158 | }, 159 | "compile": { 160 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} 161 | }, 162 | "runtime": { 163 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} 164 | }, 165 | "frameworkReferences": [ 166 | "Microsoft.AspNetCore.App" 167 | ] 168 | }, 169 | "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { 170 | "type": "package", 171 | "dependencies": { 172 | "Swashbuckle.AspNetCore.Swagger": "5.6.3" 173 | }, 174 | "compile": { 175 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 176 | }, 177 | "runtime": { 178 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 179 | }, 180 | "frameworkReferences": [ 181 | "Microsoft.AspNetCore.App" 182 | ] 183 | }, 184 | "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { 185 | "type": "package", 186 | "compile": { 187 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 188 | }, 189 | "runtime": { 190 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 191 | }, 192 | "frameworkReferences": [ 193 | "Microsoft.AspNetCore.App" 194 | ] 195 | } 196 | } 197 | }, 198 | "libraries": { 199 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 200 | "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", 201 | "type": "package", 202 | "path": "microsoft.extensions.apidescription.server/3.0.0", 203 | "hasTools": true, 204 | "files": [ 205 | ".nupkg.metadata", 206 | ".signature.p7s", 207 | "build/Microsoft.Extensions.ApiDescription.Server.props", 208 | "build/Microsoft.Extensions.ApiDescription.Server.targets", 209 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", 210 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", 211 | "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 212 | "microsoft.extensions.apidescription.server.nuspec", 213 | "tools/Newtonsoft.Json.dll", 214 | "tools/dotnet-getdocument.deps.json", 215 | "tools/dotnet-getdocument.dll", 216 | "tools/dotnet-getdocument.runtimeconfig.json", 217 | "tools/net461-x86/GetDocument.Insider.exe", 218 | "tools/net461-x86/GetDocument.Insider.exe.config", 219 | "tools/net461/GetDocument.Insider.exe", 220 | "tools/net461/GetDocument.Insider.exe.config", 221 | "tools/netcoreapp2.1/GetDocument.Insider.deps.json", 222 | "tools/netcoreapp2.1/GetDocument.Insider.dll", 223 | "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" 224 | ] 225 | }, 226 | "Microsoft.Extensions.DependencyInjection/5.0.0": { 227 | "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", 228 | "type": "package", 229 | "path": "microsoft.extensions.dependencyinjection/5.0.0", 230 | "files": [ 231 | ".nupkg.metadata", 232 | ".signature.p7s", 233 | "Icon.png", 234 | "LICENSE.TXT", 235 | "THIRD-PARTY-NOTICES.TXT", 236 | "lib/net461/Microsoft.Extensions.DependencyInjection.dll", 237 | "lib/net461/Microsoft.Extensions.DependencyInjection.xml", 238 | "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", 239 | "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", 240 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", 241 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", 242 | "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", 243 | "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", 244 | "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", 245 | "microsoft.extensions.dependencyinjection.nuspec", 246 | "useSharedDesignerContext.txt", 247 | "version.txt" 248 | ] 249 | }, 250 | "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { 251 | "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", 252 | "type": "package", 253 | "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", 254 | "files": [ 255 | ".nupkg.metadata", 256 | ".signature.p7s", 257 | "Icon.png", 258 | "LICENSE.TXT", 259 | "THIRD-PARTY-NOTICES.TXT", 260 | "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", 261 | "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", 262 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", 263 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", 264 | "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", 265 | "microsoft.extensions.dependencyinjection.abstractions.nuspec", 266 | "useSharedDesignerContext.txt", 267 | "version.txt" 268 | ] 269 | }, 270 | "Microsoft.Extensions.Http/5.0.0": { 271 | "sha512": "kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==", 272 | "type": "package", 273 | "path": "microsoft.extensions.http/5.0.0", 274 | "files": [ 275 | ".nupkg.metadata", 276 | ".signature.p7s", 277 | "Icon.png", 278 | "LICENSE.TXT", 279 | "THIRD-PARTY-NOTICES.TXT", 280 | "lib/net461/Microsoft.Extensions.Http.dll", 281 | "lib/net461/Microsoft.Extensions.Http.xml", 282 | "lib/netstandard2.0/Microsoft.Extensions.Http.dll", 283 | "lib/netstandard2.0/Microsoft.Extensions.Http.xml", 284 | "microsoft.extensions.http.5.0.0.nupkg.sha512", 285 | "microsoft.extensions.http.nuspec", 286 | "useSharedDesignerContext.txt", 287 | "version.txt" 288 | ] 289 | }, 290 | "Microsoft.Extensions.Http.Polly/5.0.1": { 291 | "sha512": "Tzf+x8HVDhri9dkIGCGOP5RVjgXnTZuBcwZHr0sW6KAtVGPDU0xEDXPDpoW5vwq/K12dMI75vuapUtMw0d/pIw==", 292 | "type": "package", 293 | "path": "microsoft.extensions.http.polly/5.0.1", 294 | "files": [ 295 | ".nupkg.metadata", 296 | ".signature.p7s", 297 | "Icon.png", 298 | "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll", 299 | "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.xml", 300 | "microsoft.extensions.http.polly.5.0.1.nupkg.sha512", 301 | "microsoft.extensions.http.polly.nuspec" 302 | ] 303 | }, 304 | "Microsoft.Extensions.Logging/5.0.0": { 305 | "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", 306 | "type": "package", 307 | "path": "microsoft.extensions.logging/5.0.0", 308 | "files": [ 309 | ".nupkg.metadata", 310 | ".signature.p7s", 311 | "Icon.png", 312 | "LICENSE.TXT", 313 | "THIRD-PARTY-NOTICES.TXT", 314 | "lib/net461/Microsoft.Extensions.Logging.dll", 315 | "lib/net461/Microsoft.Extensions.Logging.xml", 316 | "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", 317 | "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", 318 | "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", 319 | "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", 320 | "microsoft.extensions.logging.5.0.0.nupkg.sha512", 321 | "microsoft.extensions.logging.nuspec", 322 | "useSharedDesignerContext.txt", 323 | "version.txt" 324 | ] 325 | }, 326 | "Microsoft.Extensions.Logging.Abstractions/5.0.0": { 327 | "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", 328 | "type": "package", 329 | "path": "microsoft.extensions.logging.abstractions/5.0.0", 330 | "files": [ 331 | ".nupkg.metadata", 332 | ".signature.p7s", 333 | "Icon.png", 334 | "LICENSE.TXT", 335 | "THIRD-PARTY-NOTICES.TXT", 336 | "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", 337 | "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", 338 | "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", 339 | "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", 340 | "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", 341 | "microsoft.extensions.logging.abstractions.nuspec", 342 | "useSharedDesignerContext.txt", 343 | "version.txt" 344 | ] 345 | }, 346 | "Microsoft.Extensions.Options/5.0.0": { 347 | "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", 348 | "type": "package", 349 | "path": "microsoft.extensions.options/5.0.0", 350 | "files": [ 351 | ".nupkg.metadata", 352 | ".signature.p7s", 353 | "Icon.png", 354 | "LICENSE.TXT", 355 | "THIRD-PARTY-NOTICES.TXT", 356 | "lib/net461/Microsoft.Extensions.Options.dll", 357 | "lib/net461/Microsoft.Extensions.Options.xml", 358 | "lib/net5.0/Microsoft.Extensions.Options.dll", 359 | "lib/net5.0/Microsoft.Extensions.Options.xml", 360 | "lib/netstandard2.0/Microsoft.Extensions.Options.dll", 361 | "lib/netstandard2.0/Microsoft.Extensions.Options.xml", 362 | "microsoft.extensions.options.5.0.0.nupkg.sha512", 363 | "microsoft.extensions.options.nuspec", 364 | "useSharedDesignerContext.txt", 365 | "version.txt" 366 | ] 367 | }, 368 | "Microsoft.Extensions.Primitives/5.0.0": { 369 | "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", 370 | "type": "package", 371 | "path": "microsoft.extensions.primitives/5.0.0", 372 | "files": [ 373 | ".nupkg.metadata", 374 | ".signature.p7s", 375 | "Icon.png", 376 | "LICENSE.TXT", 377 | "THIRD-PARTY-NOTICES.TXT", 378 | "lib/net461/Microsoft.Extensions.Primitives.dll", 379 | "lib/net461/Microsoft.Extensions.Primitives.xml", 380 | "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", 381 | "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", 382 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", 383 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", 384 | "microsoft.extensions.primitives.5.0.0.nupkg.sha512", 385 | "microsoft.extensions.primitives.nuspec", 386 | "useSharedDesignerContext.txt", 387 | "version.txt" 388 | ] 389 | }, 390 | "Microsoft.OpenApi/1.2.3": { 391 | "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", 392 | "type": "package", 393 | "path": "microsoft.openapi/1.2.3", 394 | "files": [ 395 | ".nupkg.metadata", 396 | ".signature.p7s", 397 | "lib/net46/Microsoft.OpenApi.dll", 398 | "lib/net46/Microsoft.OpenApi.pdb", 399 | "lib/net46/Microsoft.OpenApi.xml", 400 | "lib/netstandard2.0/Microsoft.OpenApi.dll", 401 | "lib/netstandard2.0/Microsoft.OpenApi.pdb", 402 | "lib/netstandard2.0/Microsoft.OpenApi.xml", 403 | "microsoft.openapi.1.2.3.nupkg.sha512", 404 | "microsoft.openapi.nuspec" 405 | ] 406 | }, 407 | "Polly/7.1.0": { 408 | "sha512": "mpQsvlEn4ipgICh5CGyVLPV93RFVzOrBG7wPZfzY8gExh7XgWQn0GCDY9nudbUEJ12UiGPP9i4+CohghBvzhmg==", 409 | "type": "package", 410 | "path": "polly/7.1.0", 411 | "files": [ 412 | ".nupkg.metadata", 413 | ".signature.p7s", 414 | "lib/netstandard1.1/Polly.dll", 415 | "lib/netstandard1.1/Polly.xml", 416 | "lib/netstandard2.0/Polly.dll", 417 | "lib/netstandard2.0/Polly.xml", 418 | "polly.7.1.0.nupkg.sha512", 419 | "polly.nuspec" 420 | ] 421 | }, 422 | "Polly.Extensions.Http/3.0.0": { 423 | "sha512": "drrG+hB3pYFY7w1c3BD+lSGYvH2oIclH8GRSehgfyP5kjnFnHKQuuBhuHLv+PWyFuaTDyk/vfRpnxOzd11+J8g==", 424 | "type": "package", 425 | "path": "polly.extensions.http/3.0.0", 426 | "files": [ 427 | ".nupkg.metadata", 428 | ".signature.p7s", 429 | "lib/netstandard1.1/Polly.Extensions.Http.dll", 430 | "lib/netstandard1.1/Polly.Extensions.Http.xml", 431 | "lib/netstandard2.0/Polly.Extensions.Http.dll", 432 | "lib/netstandard2.0/Polly.Extensions.Http.xml", 433 | "polly.extensions.http.3.0.0.nupkg.sha512", 434 | "polly.extensions.http.nuspec" 435 | ] 436 | }, 437 | "Swashbuckle.AspNetCore/5.6.3": { 438 | "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==", 439 | "type": "package", 440 | "path": "swashbuckle.aspnetcore/5.6.3", 441 | "files": [ 442 | ".nupkg.metadata", 443 | ".signature.p7s", 444 | "build/Swashbuckle.AspNetCore.props", 445 | "swashbuckle.aspnetcore.5.6.3.nupkg.sha512", 446 | "swashbuckle.aspnetcore.nuspec" 447 | ] 448 | }, 449 | "Swashbuckle.AspNetCore.Swagger/5.6.3": { 450 | "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", 451 | "type": "package", 452 | "path": "swashbuckle.aspnetcore.swagger/5.6.3", 453 | "files": [ 454 | ".nupkg.metadata", 455 | ".signature.p7s", 456 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", 457 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", 458 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", 459 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", 460 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", 461 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", 462 | "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", 463 | "swashbuckle.aspnetcore.swagger.nuspec" 464 | ] 465 | }, 466 | "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { 467 | "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", 468 | "type": "package", 469 | "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", 470 | "files": [ 471 | ".nupkg.metadata", 472 | ".signature.p7s", 473 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 474 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 475 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 476 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 477 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 478 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 479 | "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", 480 | "swashbuckle.aspnetcore.swaggergen.nuspec" 481 | ] 482 | }, 483 | "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { 484 | "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==", 485 | "type": "package", 486 | "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", 487 | "files": [ 488 | ".nupkg.metadata", 489 | ".signature.p7s", 490 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 491 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 492 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 493 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 494 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 495 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 496 | "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", 497 | "swashbuckle.aspnetcore.swaggerui.nuspec" 498 | ] 499 | } 500 | }, 501 | "projectFileDependencyGroups": { 502 | "net5.0": [ 503 | "Microsoft.Extensions.Http.Polly >= 5.0.1", 504 | "Swashbuckle.AspNetCore >= 5.6.3" 505 | ] 506 | }, 507 | "packageFolders": { 508 | "C:\\Users\\lesja\\.nuget\\packages\\": {}, 509 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, 510 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} 511 | }, 512 | "project": { 513 | "version": "1.0.0", 514 | "restore": { 515 | "projectUniqueName": "D:\\Polly\\RequestService\\RequestService.csproj", 516 | "projectName": "RequestService", 517 | "projectPath": "D:\\Polly\\RequestService\\RequestService.csproj", 518 | "packagesPath": "C:\\Users\\lesja\\.nuget\\packages\\", 519 | "outputPath": "D:\\Polly\\RequestService\\obj\\", 520 | "projectStyle": "PackageReference", 521 | "fallbackFolders": [ 522 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 523 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 524 | ], 525 | "configFilePaths": [ 526 | "C:\\Users\\lesja\\AppData\\Roaming\\NuGet\\NuGet.Config", 527 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 528 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 529 | ], 530 | "originalTargetFrameworks": [ 531 | "net5.0" 532 | ], 533 | "sources": { 534 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 535 | "https://api.nuget.org/v3/index.json": {} 536 | }, 537 | "frameworks": { 538 | "net5.0": { 539 | "targetAlias": "net5.0", 540 | "projectReferences": {} 541 | } 542 | }, 543 | "warningProperties": { 544 | "warnAsError": [ 545 | "NU1605" 546 | ] 547 | } 548 | }, 549 | "frameworks": { 550 | "net5.0": { 551 | "targetAlias": "net5.0", 552 | "dependencies": { 553 | "Microsoft.Extensions.Http.Polly": { 554 | "target": "Package", 555 | "version": "[5.0.1, )" 556 | }, 557 | "Swashbuckle.AspNetCore": { 558 | "target": "Package", 559 | "version": "[5.6.3, )" 560 | } 561 | }, 562 | "imports": [ 563 | "net461", 564 | "net462", 565 | "net47", 566 | "net471", 567 | "net472", 568 | "net48" 569 | ], 570 | "assetTargetFallback": true, 571 | "warn": true, 572 | "frameworkReferences": { 573 | "Microsoft.AspNetCore.App": { 574 | "privateAssets": "none" 575 | }, 576 | "Microsoft.NETCore.App": { 577 | "privateAssets": "all" 578 | } 579 | }, 580 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.402\\RuntimeIdentifierGraph.json" 581 | } 582 | } 583 | } 584 | } -------------------------------------------------------------------------------- /RequestService/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "dqVjmGTgiKoNMqWb5NxX1yTsjuAqRiMKhvBuPudvLtmUDAp91MVF38ZeMK0L+0oV4Gt7U5QI6MOoUYxVCJdu1w==", 4 | "success": true, 5 | "projectFilePath": "D:\\Polly\\RequestService\\RequestService.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 8 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", 9 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", 10 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.http\\5.0.0\\microsoft.extensions.http.5.0.0.nupkg.sha512", 11 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.http.polly\\5.0.1\\microsoft.extensions.http.polly.5.0.1.nupkg.sha512", 12 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", 13 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", 14 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", 15 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", 16 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", 17 | "C:\\Users\\lesja\\.nuget\\packages\\polly\\7.1.0\\polly.7.1.0.nupkg.sha512", 18 | "C:\\Users\\lesja\\.nuget\\packages\\polly.extensions.http\\3.0.0\\polly.extensions.http.3.0.0.nupkg.sha512", 19 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", 20 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", 21 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", 22 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512" 23 | ], 24 | "logs": [] 25 | } -------------------------------------------------------------------------------- /ResponseService/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | // Use IntelliSense to find out which attributes exist for C# debugging 6 | // Use hover for the description of the existing attributes 7 | // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md 8 | "name": ".NET Core Launch (web)", 9 | "type": "coreclr", 10 | "request": "launch", 11 | "preLaunchTask": "build", 12 | // If you have changed target frameworks, make sure to update the program path. 13 | "program": "${workspaceFolder}/bin/Debug/net5.0/ResponseService.dll", 14 | "args": [], 15 | "cwd": "${workspaceFolder}", 16 | "stopAtEntry": false, 17 | // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser 18 | "serverReadyAction": { 19 | "action": "openExternally", 20 | "pattern": "\\bNow listening on:\\s+(https?://\\S+)" 21 | }, 22 | "env": { 23 | "ASPNETCORE_ENVIRONMENT": "Development" 24 | }, 25 | "sourceFileMap": { 26 | "/Views": "${workspaceFolder}/Views" 27 | } 28 | }, 29 | { 30 | "name": ".NET Core Attach", 31 | "type": "coreclr", 32 | "request": "attach" 33 | } 34 | ] 35 | } -------------------------------------------------------------------------------- /ResponseService/.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "tasks": [ 4 | { 5 | "label": "build", 6 | "command": "dotnet", 7 | "type": "process", 8 | "args": [ 9 | "build", 10 | "${workspaceFolder}/ResponseService.csproj", 11 | "/property:GenerateFullPaths=true", 12 | "/consoleloggerparameters:NoSummary" 13 | ], 14 | "problemMatcher": "$msCompile" 15 | }, 16 | { 17 | "label": "publish", 18 | "command": "dotnet", 19 | "type": "process", 20 | "args": [ 21 | "publish", 22 | "${workspaceFolder}/ResponseService.csproj", 23 | "/property:GenerateFullPaths=true", 24 | "/consoleloggerparameters:NoSummary" 25 | ], 26 | "problemMatcher": "$msCompile" 27 | }, 28 | { 29 | "label": "watch", 30 | "command": "dotnet", 31 | "type": "process", 32 | "args": [ 33 | "watch", 34 | "run", 35 | "${workspaceFolder}/ResponseService.csproj", 36 | "/property:GenerateFullPaths=true", 37 | "/consoleloggerparameters:NoSummary" 38 | ], 39 | "problemMatcher": "$msCompile" 40 | } 41 | ] 42 | } -------------------------------------------------------------------------------- /ResponseService/Controllers/ResponseController.cs: -------------------------------------------------------------------------------- 1 | 2 | using System; 3 | using Microsoft.AspNetCore.Http; 4 | using Microsoft.AspNetCore.Mvc; 5 | 6 | namespace ResponseService.Controllers 7 | { 8 | [Route("api/[controller]")] 9 | [ApiController] 10 | public class ResponseController : ControllerBase 11 | { 12 | [Route("{id}")] 13 | public ActionResult GiveAResponse(int id) 14 | { 15 | Random rnd = new Random(); 16 | int rndInteger = rnd.Next(1, 101); 17 | if(rndInteger >= id ) 18 | { 19 | Console.WriteLine($"-> Return 500"); 20 | return StatusCode(StatusCodes.Status500InternalServerError); 21 | } 22 | else 23 | { 24 | Console.WriteLine($"-> Return 200"); 25 | return Ok(); 26 | } 27 | } 28 | } 29 | } 30 | 31 | -------------------------------------------------------------------------------- /ResponseService/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace ResponseService 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ResponseService/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:5152", 8 | "sslPort": 44302 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "swagger", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "ResponseService": { 21 | "commandName": "Project", 22 | "dotnetRunMessages": "true", 23 | "launchBrowser": true, 24 | "launchUrl": "swagger", 25 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 26 | "environmentVariables": { 27 | "ASPNETCORE_ENVIRONMENT": "Development" 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /ResponseService/ResponseService.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ResponseService/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Builder; 6 | using Microsoft.AspNetCore.Hosting; 7 | using Microsoft.AspNetCore.HttpsPolicy; 8 | using Microsoft.AspNetCore.Mvc; 9 | using Microsoft.Extensions.Configuration; 10 | using Microsoft.Extensions.DependencyInjection; 11 | using Microsoft.Extensions.Hosting; 12 | using Microsoft.Extensions.Logging; 13 | using Microsoft.OpenApi.Models; 14 | 15 | namespace ResponseService 16 | { 17 | public class Startup 18 | { 19 | public Startup(IConfiguration configuration) 20 | { 21 | Configuration = configuration; 22 | } 23 | 24 | public IConfiguration Configuration { get; } 25 | 26 | // This method gets called by the runtime. Use this method to add services to the container. 27 | public void ConfigureServices(IServiceCollection services) 28 | { 29 | 30 | services.AddControllers(); 31 | services.AddSwaggerGen(c => 32 | { 33 | c.SwaggerDoc("v1", new OpenApiInfo { Title = "ResponseService", Version = "v1" }); 34 | }); 35 | } 36 | 37 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 38 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 39 | { 40 | if (env.IsDevelopment()) 41 | { 42 | app.UseDeveloperExceptionPage(); 43 | app.UseSwagger(); 44 | app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "ResponseService v1")); 45 | } 46 | 47 | app.UseHttpsRedirection(); 48 | 49 | app.UseRouting(); 50 | 51 | app.UseAuthorization(); 52 | 53 | app.UseEndpoints(endpoints => 54 | { 55 | endpoints.MapControllers(); 56 | }); 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /ResponseService/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ResponseService/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ResponseService.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v5.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": { 7 | "defines": [ 8 | "TRACE", 9 | "DEBUG", 10 | "NET", 11 | "NET5_0", 12 | "NETCOREAPP", 13 | "NET5_0_OR_GREATER", 14 | "NETCOREAPP1_0_OR_GREATER", 15 | "NETCOREAPP1_1_OR_GREATER", 16 | "NETCOREAPP2_0_OR_GREATER", 17 | "NETCOREAPP2_1_OR_GREATER", 18 | "NETCOREAPP2_2_OR_GREATER", 19 | "NETCOREAPP3_0_OR_GREATER", 20 | "NETCOREAPP3_1_OR_GREATER" 21 | ], 22 | "languageVersion": "9.0", 23 | "platform": "", 24 | "allowUnsafe": false, 25 | "warningsAsErrors": false, 26 | "optimize": false, 27 | "keyFile": "", 28 | "emitEntryPoint": true, 29 | "xmlDoc": false, 30 | "debugType": "portable" 31 | }, 32 | "targets": { 33 | ".NETCoreApp,Version=v5.0": { 34 | "ResponseService/1.0.0": { 35 | "dependencies": { 36 | "Swashbuckle.AspNetCore": "5.6.3", 37 | "Microsoft.AspNetCore.Antiforgery": "5.0.0.0", 38 | "Microsoft.AspNetCore.Authentication.Abstractions": "5.0.0.0", 39 | "Microsoft.AspNetCore.Authentication.Cookies": "5.0.0.0", 40 | "Microsoft.AspNetCore.Authentication.Core": "5.0.0.0", 41 | "Microsoft.AspNetCore.Authentication": "5.0.0.0", 42 | "Microsoft.AspNetCore.Authentication.OAuth": "5.0.0.0", 43 | "Microsoft.AspNetCore.Authorization": "5.0.0.0", 44 | "Microsoft.AspNetCore.Authorization.Policy": "5.0.0.0", 45 | "Microsoft.AspNetCore.Components.Authorization": "5.0.0.0", 46 | "Microsoft.AspNetCore.Components": "5.0.0.0", 47 | "Microsoft.AspNetCore.Components.Forms": "5.0.0.0", 48 | "Microsoft.AspNetCore.Components.Server": "5.0.0.0", 49 | "Microsoft.AspNetCore.Components.Web": "5.0.0.0", 50 | "Microsoft.AspNetCore.Connections.Abstractions": "5.0.0.0", 51 | "Microsoft.AspNetCore.CookiePolicy": "5.0.0.0", 52 | "Microsoft.AspNetCore.Cors": "5.0.0.0", 53 | "Microsoft.AspNetCore.Cryptography.Internal": "5.0.0.0", 54 | "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.0.0", 55 | "Microsoft.AspNetCore.DataProtection.Abstractions": "5.0.0.0", 56 | "Microsoft.AspNetCore.DataProtection": "5.0.0.0", 57 | "Microsoft.AspNetCore.DataProtection.Extensions": "5.0.0.0", 58 | "Microsoft.AspNetCore.Diagnostics.Abstractions": "5.0.0.0", 59 | "Microsoft.AspNetCore.Diagnostics": "5.0.0.0", 60 | "Microsoft.AspNetCore.Diagnostics.HealthChecks": "5.0.0.0", 61 | "Microsoft.AspNetCore": "5.0.0.0", 62 | "Microsoft.AspNetCore.HostFiltering": "5.0.0.0", 63 | "Microsoft.AspNetCore.Hosting.Abstractions": "5.0.0.0", 64 | "Microsoft.AspNetCore.Hosting": "5.0.0.0", 65 | "Microsoft.AspNetCore.Hosting.Server.Abstractions": "5.0.0.0", 66 | "Microsoft.AspNetCore.Html.Abstractions": "5.0.0.0", 67 | "Microsoft.AspNetCore.Http.Abstractions": "5.0.0.0", 68 | "Microsoft.AspNetCore.Http.Connections.Common": "5.0.0.0", 69 | "Microsoft.AspNetCore.Http.Connections": "5.0.0.0", 70 | "Microsoft.AspNetCore.Http": "5.0.0.0", 71 | "Microsoft.AspNetCore.Http.Extensions": "5.0.0.0", 72 | "Microsoft.AspNetCore.Http.Features": "5.0.0.0", 73 | "Microsoft.AspNetCore.HttpOverrides": "5.0.0.0", 74 | "Microsoft.AspNetCore.HttpsPolicy": "5.0.0.0", 75 | "Microsoft.AspNetCore.Identity": "5.0.0.0", 76 | "Microsoft.AspNetCore.Localization": "5.0.0.0", 77 | "Microsoft.AspNetCore.Localization.Routing": "5.0.0.0", 78 | "Microsoft.AspNetCore.Metadata": "5.0.0.0", 79 | "Microsoft.AspNetCore.Mvc.Abstractions": "5.0.0.0", 80 | "Microsoft.AspNetCore.Mvc.ApiExplorer": "5.0.0.0", 81 | "Microsoft.AspNetCore.Mvc.Core": "5.0.0.0", 82 | "Microsoft.AspNetCore.Mvc.Cors": "5.0.0.0", 83 | "Microsoft.AspNetCore.Mvc.DataAnnotations": "5.0.0.0", 84 | "Microsoft.AspNetCore.Mvc": "5.0.0.0", 85 | "Microsoft.AspNetCore.Mvc.Formatters.Json": "5.0.0.0", 86 | "Microsoft.AspNetCore.Mvc.Formatters.Xml": "5.0.0.0", 87 | "Microsoft.AspNetCore.Mvc.Localization": "5.0.0.0", 88 | "Microsoft.AspNetCore.Mvc.Razor": "5.0.0.0", 89 | "Microsoft.AspNetCore.Mvc.RazorPages": "5.0.0.0", 90 | "Microsoft.AspNetCore.Mvc.TagHelpers": "5.0.0.0", 91 | "Microsoft.AspNetCore.Mvc.ViewFeatures": "5.0.0.0", 92 | "Microsoft.AspNetCore.Razor": "5.0.0.0", 93 | "Microsoft.AspNetCore.Razor.Runtime": "5.0.0.0", 94 | "Microsoft.AspNetCore.ResponseCaching.Abstractions": "5.0.0.0", 95 | "Microsoft.AspNetCore.ResponseCaching": "5.0.0.0", 96 | "Microsoft.AspNetCore.ResponseCompression": "5.0.0.0", 97 | "Microsoft.AspNetCore.Rewrite": "5.0.0.0", 98 | "Microsoft.AspNetCore.Routing.Abstractions": "5.0.0.0", 99 | "Microsoft.AspNetCore.Routing": "5.0.0.0", 100 | "Microsoft.AspNetCore.Server.HttpSys": "5.0.0.0", 101 | "Microsoft.AspNetCore.Server.IIS": "5.0.0.0", 102 | "Microsoft.AspNetCore.Server.IISIntegration": "5.0.0.0", 103 | "Microsoft.AspNetCore.Server.Kestrel.Core": "5.0.0.0", 104 | "Microsoft.AspNetCore.Server.Kestrel": "5.0.0.0", 105 | "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "5.0.0.0", 106 | "Microsoft.AspNetCore.Session": "5.0.0.0", 107 | "Microsoft.AspNetCore.SignalR.Common": "5.0.0.0", 108 | "Microsoft.AspNetCore.SignalR.Core": "5.0.0.0", 109 | "Microsoft.AspNetCore.SignalR": "5.0.0.0", 110 | "Microsoft.AspNetCore.SignalR.Protocols.Json": "5.0.0.0", 111 | "Microsoft.AspNetCore.StaticFiles": "5.0.0.0", 112 | "Microsoft.AspNetCore.WebSockets": "5.0.0.0", 113 | "Microsoft.AspNetCore.WebUtilities": "5.0.0.0", 114 | "Microsoft.CSharp": "5.0.0.0", 115 | "Microsoft.Extensions.Caching.Abstractions": "5.0.0.0", 116 | "Microsoft.Extensions.Caching.Memory": "5.0.0.0", 117 | "Microsoft.Extensions.Configuration.Abstractions": "5.0.0.0", 118 | "Microsoft.Extensions.Configuration.Binder": "5.0.0.0", 119 | "Microsoft.Extensions.Configuration.CommandLine": "5.0.0.0", 120 | "Microsoft.Extensions.Configuration": "5.0.0.0", 121 | "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0.0", 122 | "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0.0", 123 | "Microsoft.Extensions.Configuration.Ini": "5.0.0.0", 124 | "Microsoft.Extensions.Configuration.Json": "5.0.0.0", 125 | "Microsoft.Extensions.Configuration.KeyPerFile": "5.0.0.0", 126 | "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0.0", 127 | "Microsoft.Extensions.Configuration.Xml": "5.0.0.0", 128 | "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0.0", 129 | "Microsoft.Extensions.DependencyInjection": "5.0.0.0", 130 | "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "5.0.0.0", 131 | "Microsoft.Extensions.Diagnostics.HealthChecks": "5.0.0.0", 132 | "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0.0", 133 | "Microsoft.Extensions.FileProviders.Composite": "5.0.0.0", 134 | "Microsoft.Extensions.FileProviders.Embedded": "5.0.0.0", 135 | "Microsoft.Extensions.FileProviders.Physical": "5.0.0.0", 136 | "Microsoft.Extensions.FileSystemGlobbing": "5.0.0.0", 137 | "Microsoft.Extensions.Hosting.Abstractions": "5.0.0.0", 138 | "Microsoft.Extensions.Hosting": "5.0.0.0", 139 | "Microsoft.Extensions.Http": "5.0.0.0", 140 | "Microsoft.Extensions.Identity.Core": "5.0.0.0", 141 | "Microsoft.Extensions.Identity.Stores": "5.0.0.0", 142 | "Microsoft.Extensions.Localization.Abstractions": "5.0.0.0", 143 | "Microsoft.Extensions.Localization": "5.0.0.0", 144 | "Microsoft.Extensions.Logging.Abstractions": "5.0.0.0", 145 | "Microsoft.Extensions.Logging.Configuration": "5.0.0.0", 146 | "Microsoft.Extensions.Logging.Console": "5.0.0.0", 147 | "Microsoft.Extensions.Logging.Debug": "5.0.0.0", 148 | "Microsoft.Extensions.Logging": "5.0.0.0", 149 | "Microsoft.Extensions.Logging.EventLog": "5.0.0.0", 150 | "Microsoft.Extensions.Logging.EventSource": "5.0.0.0", 151 | "Microsoft.Extensions.Logging.TraceSource": "5.0.0.0", 152 | "Microsoft.Extensions.ObjectPool": "5.0.0.0", 153 | "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0.0", 154 | "Microsoft.Extensions.Options.DataAnnotations": "5.0.0.0", 155 | "Microsoft.Extensions.Options": "5.0.0.0", 156 | "Microsoft.Extensions.Primitives": "5.0.0.0", 157 | "Microsoft.Extensions.WebEncoders": "5.0.0.0", 158 | "Microsoft.JSInterop": "5.0.0.0", 159 | "Microsoft.Net.Http.Headers": "5.0.0.0", 160 | "Microsoft.VisualBasic.Core": "10.0.6.0", 161 | "Microsoft.VisualBasic": "10.0.0.0", 162 | "Microsoft.Win32.Primitives": "5.0.0.0", 163 | "Microsoft.Win32.Registry": "5.0.0.0", 164 | "mscorlib": "4.0.0.0", 165 | "netstandard": "2.1.0.0", 166 | "System.AppContext": "5.0.0.0", 167 | "System.Buffers": "5.0.0.0", 168 | "System.Collections.Concurrent": "5.0.0.0", 169 | "System.Collections": "5.0.0.0", 170 | "System.Collections.Immutable": "5.0.0.0", 171 | "System.Collections.NonGeneric": "5.0.0.0", 172 | "System.Collections.Specialized": "5.0.0.0", 173 | "System.ComponentModel.Annotations": "5.0.0.0", 174 | "System.ComponentModel.DataAnnotations": "4.0.0.0", 175 | "System.ComponentModel": "5.0.0.0", 176 | "System.ComponentModel.EventBasedAsync": "5.0.0.0", 177 | "System.ComponentModel.Primitives": "5.0.0.0", 178 | "System.ComponentModel.TypeConverter": "5.0.0.0", 179 | "System.Configuration": "4.0.0.0", 180 | "System.Console": "5.0.0.0", 181 | "System.Core": "4.0.0.0", 182 | "System.Data.Common": "5.0.0.0", 183 | "System.Data.DataSetExtensions": "4.0.0.0", 184 | "System.Data": "4.0.0.0", 185 | "System.Diagnostics.Contracts": "5.0.0.0", 186 | "System.Diagnostics.Debug": "5.0.0.0", 187 | "System.Diagnostics.DiagnosticSource": "5.0.0.0", 188 | "System.Diagnostics.EventLog": "5.0.0.0", 189 | "System.Diagnostics.FileVersionInfo": "5.0.0.0", 190 | "System.Diagnostics.Process": "5.0.0.0", 191 | "System.Diagnostics.StackTrace": "5.0.0.0", 192 | "System.Diagnostics.TextWriterTraceListener": "5.0.0.0", 193 | "System.Diagnostics.Tools": "5.0.0.0", 194 | "System.Diagnostics.TraceSource": "5.0.0.0", 195 | "System.Diagnostics.Tracing": "5.0.0.0", 196 | "System": "4.0.0.0", 197 | "System.Drawing": "4.0.0.0", 198 | "System.Drawing.Primitives": "5.0.0.0", 199 | "System.Dynamic.Runtime": "5.0.0.0", 200 | "System.Formats.Asn1": "5.0.0.0", 201 | "System.Globalization.Calendars": "5.0.0.0", 202 | "System.Globalization": "5.0.0.0", 203 | "System.Globalization.Extensions": "5.0.0.0", 204 | "System.IO.Compression.Brotli": "5.0.0.0", 205 | "System.IO.Compression": "5.0.0.0", 206 | "System.IO.Compression.FileSystem": "4.0.0.0", 207 | "System.IO.Compression.ZipFile": "5.0.0.0", 208 | "System.IO": "5.0.0.0", 209 | "System.IO.FileSystem": "5.0.0.0", 210 | "System.IO.FileSystem.DriveInfo": "5.0.0.0", 211 | "System.IO.FileSystem.Primitives": "5.0.0.0", 212 | "System.IO.FileSystem.Watcher": "5.0.0.0", 213 | "System.IO.IsolatedStorage": "5.0.0.0", 214 | "System.IO.MemoryMappedFiles": "5.0.0.0", 215 | "System.IO.Pipelines": "5.0.0.0", 216 | "System.IO.Pipes": "5.0.0.0", 217 | "System.IO.UnmanagedMemoryStream": "5.0.0.0", 218 | "System.Linq": "5.0.0.0", 219 | "System.Linq.Expressions": "5.0.0.0", 220 | "System.Linq.Parallel": "5.0.0.0", 221 | "System.Linq.Queryable": "5.0.0.0", 222 | "System.Memory": "5.0.0.0", 223 | "System.Net": "4.0.0.0", 224 | "System.Net.Http": "5.0.0.0", 225 | "System.Net.Http.Json": "5.0.0.0", 226 | "System.Net.HttpListener": "5.0.0.0", 227 | "System.Net.Mail": "5.0.0.0", 228 | "System.Net.NameResolution": "5.0.0.0", 229 | "System.Net.NetworkInformation": "5.0.0.0", 230 | "System.Net.Ping": "5.0.0.0", 231 | "System.Net.Primitives": "5.0.0.0", 232 | "System.Net.Requests": "5.0.0.0", 233 | "System.Net.Security": "5.0.0.0", 234 | "System.Net.ServicePoint": "5.0.0.0", 235 | "System.Net.Sockets": "5.0.0.0", 236 | "System.Net.WebClient": "5.0.0.0", 237 | "System.Net.WebHeaderCollection": "5.0.0.0", 238 | "System.Net.WebProxy": "5.0.0.0", 239 | "System.Net.WebSockets.Client": "5.0.0.0", 240 | "System.Net.WebSockets": "5.0.0.0", 241 | "System.Numerics": "4.0.0.0", 242 | "System.Numerics.Vectors": "5.0.0.0", 243 | "System.ObjectModel": "5.0.0.0", 244 | "System.Reflection.DispatchProxy": "5.0.0.0", 245 | "System.Reflection": "5.0.0.0", 246 | "System.Reflection.Emit": "5.0.0.0", 247 | "System.Reflection.Emit.ILGeneration": "5.0.0.0", 248 | "System.Reflection.Emit.Lightweight": "5.0.0.0", 249 | "System.Reflection.Extensions": "5.0.0.0", 250 | "System.Reflection.Metadata": "5.0.0.0", 251 | "System.Reflection.Primitives": "5.0.0.0", 252 | "System.Reflection.TypeExtensions": "5.0.0.0", 253 | "System.Resources.Reader": "5.0.0.0", 254 | "System.Resources.ResourceManager": "5.0.0.0", 255 | "System.Resources.Writer": "5.0.0.0", 256 | "System.Runtime.CompilerServices.Unsafe": "5.0.0.0", 257 | "System.Runtime.CompilerServices.VisualC": "5.0.0.0", 258 | "System.Runtime": "5.0.0.0", 259 | "System.Runtime.Extensions": "5.0.0.0", 260 | "System.Runtime.Handles": "5.0.0.0", 261 | "System.Runtime.InteropServices": "5.0.0.0", 262 | "System.Runtime.InteropServices.RuntimeInformation": "5.0.0.0", 263 | "System.Runtime.Intrinsics": "5.0.0.0", 264 | "System.Runtime.Loader": "5.0.0.0", 265 | "System.Runtime.Numerics": "5.0.0.0", 266 | "System.Runtime.Serialization": "4.0.0.0", 267 | "System.Runtime.Serialization.Formatters": "5.0.0.0", 268 | "System.Runtime.Serialization.Json": "5.0.0.0", 269 | "System.Runtime.Serialization.Primitives": "5.0.0.0", 270 | "System.Runtime.Serialization.Xml": "5.0.0.0", 271 | "System.Security.AccessControl": "5.0.0.0", 272 | "System.Security.Claims": "5.0.0.0", 273 | "System.Security.Cryptography.Algorithms": "5.0.0.0", 274 | "System.Security.Cryptography.Cng": "5.0.0.0", 275 | "System.Security.Cryptography.Csp": "5.0.0.0", 276 | "System.Security.Cryptography.Encoding": "5.0.0.0", 277 | "System.Security.Cryptography.Primitives": "5.0.0.0", 278 | "System.Security.Cryptography.X509Certificates": "5.0.0.0", 279 | "System.Security.Cryptography.Xml": "5.0.0.0", 280 | "System.Security": "4.0.0.0", 281 | "System.Security.Permissions": "5.0.0.0", 282 | "System.Security.Principal": "5.0.0.0", 283 | "System.Security.Principal.Windows": "5.0.0.0", 284 | "System.Security.SecureString": "5.0.0.0", 285 | "System.ServiceModel.Web": "4.0.0.0", 286 | "System.ServiceProcess": "4.0.0.0", 287 | "System.Text.Encoding.CodePages": "5.0.0.0", 288 | "System.Text.Encoding": "5.0.0.0", 289 | "System.Text.Encoding.Extensions": "5.0.0.0", 290 | "System.Text.Encodings.Web": "5.0.0.0", 291 | "System.Text.Json": "5.0.0.0", 292 | "System.Text.RegularExpressions": "5.0.0.0", 293 | "System.Threading.Channels": "5.0.0.0", 294 | "System.Threading": "5.0.0.0", 295 | "System.Threading.Overlapped": "5.0.0.0", 296 | "System.Threading.Tasks.Dataflow": "5.0.0.0", 297 | "System.Threading.Tasks": "5.0.0.0", 298 | "System.Threading.Tasks.Extensions": "5.0.0.0", 299 | "System.Threading.Tasks.Parallel": "5.0.0.0", 300 | "System.Threading.Thread": "5.0.0.0", 301 | "System.Threading.ThreadPool": "5.0.0.0", 302 | "System.Threading.Timer": "5.0.0.0", 303 | "System.Transactions": "4.0.0.0", 304 | "System.Transactions.Local": "5.0.0.0", 305 | "System.ValueTuple": "4.0.3.0", 306 | "System.Web": "4.0.0.0", 307 | "System.Web.HttpUtility": "5.0.0.0", 308 | "System.Windows": "4.0.0.0", 309 | "System.Windows.Extensions": "5.0.0.0", 310 | "System.Xml": "4.0.0.0", 311 | "System.Xml.Linq": "4.0.0.0", 312 | "System.Xml.ReaderWriter": "5.0.0.0", 313 | "System.Xml.Serialization": "4.0.0.0", 314 | "System.Xml.XDocument": "5.0.0.0", 315 | "System.Xml.XmlDocument": "5.0.0.0", 316 | "System.Xml.XmlSerializer": "5.0.0.0", 317 | "System.Xml.XPath": "5.0.0.0", 318 | "System.Xml.XPath.XDocument": "5.0.0.0", 319 | "WindowsBase": "4.0.0.0" 320 | }, 321 | "runtime": { 322 | "ResponseService.dll": {} 323 | }, 324 | "compile": { 325 | "ResponseService.dll": {} 326 | } 327 | }, 328 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, 329 | "Microsoft.OpenApi/1.2.3": { 330 | "runtime": { 331 | "lib/netstandard2.0/Microsoft.OpenApi.dll": { 332 | "assemblyVersion": "1.2.3.0", 333 | "fileVersion": "1.2.3.0" 334 | } 335 | }, 336 | "compile": { 337 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 338 | } 339 | }, 340 | "Swashbuckle.AspNetCore/5.6.3": { 341 | "dependencies": { 342 | "Microsoft.Extensions.ApiDescription.Server": "3.0.0", 343 | "Swashbuckle.AspNetCore.Swagger": "5.6.3", 344 | "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3", 345 | "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3" 346 | } 347 | }, 348 | "Swashbuckle.AspNetCore.Swagger/5.6.3": { 349 | "dependencies": { 350 | "Microsoft.OpenApi": "1.2.3" 351 | }, 352 | "runtime": { 353 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { 354 | "assemblyVersion": "5.6.3.0", 355 | "fileVersion": "5.6.3.0" 356 | } 357 | }, 358 | "compile": { 359 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} 360 | } 361 | }, 362 | "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { 363 | "dependencies": { 364 | "Swashbuckle.AspNetCore.Swagger": "5.6.3" 365 | }, 366 | "runtime": { 367 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { 368 | "assemblyVersion": "5.6.3.0", 369 | "fileVersion": "5.6.3.0" 370 | } 371 | }, 372 | "compile": { 373 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 374 | } 375 | }, 376 | "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { 377 | "runtime": { 378 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { 379 | "assemblyVersion": "5.6.3.0", 380 | "fileVersion": "5.6.3.0" 381 | } 382 | }, 383 | "compile": { 384 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 385 | } 386 | }, 387 | "Microsoft.AspNetCore.Antiforgery/5.0.0.0": { 388 | "compile": { 389 | "Microsoft.AspNetCore.Antiforgery.dll": {} 390 | }, 391 | "compileOnly": true 392 | }, 393 | "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": { 394 | "compile": { 395 | "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} 396 | }, 397 | "compileOnly": true 398 | }, 399 | "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": { 400 | "compile": { 401 | "Microsoft.AspNetCore.Authentication.Cookies.dll": {} 402 | }, 403 | "compileOnly": true 404 | }, 405 | "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": { 406 | "compile": { 407 | "Microsoft.AspNetCore.Authentication.Core.dll": {} 408 | }, 409 | "compileOnly": true 410 | }, 411 | "Microsoft.AspNetCore.Authentication/5.0.0.0": { 412 | "compile": { 413 | "Microsoft.AspNetCore.Authentication.dll": {} 414 | }, 415 | "compileOnly": true 416 | }, 417 | "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": { 418 | "compile": { 419 | "Microsoft.AspNetCore.Authentication.OAuth.dll": {} 420 | }, 421 | "compileOnly": true 422 | }, 423 | "Microsoft.AspNetCore.Authorization/5.0.0.0": { 424 | "compile": { 425 | "Microsoft.AspNetCore.Authorization.dll": {} 426 | }, 427 | "compileOnly": true 428 | }, 429 | "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": { 430 | "compile": { 431 | "Microsoft.AspNetCore.Authorization.Policy.dll": {} 432 | }, 433 | "compileOnly": true 434 | }, 435 | "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": { 436 | "compile": { 437 | "Microsoft.AspNetCore.Components.Authorization.dll": {} 438 | }, 439 | "compileOnly": true 440 | }, 441 | "Microsoft.AspNetCore.Components/5.0.0.0": { 442 | "compile": { 443 | "Microsoft.AspNetCore.Components.dll": {} 444 | }, 445 | "compileOnly": true 446 | }, 447 | "Microsoft.AspNetCore.Components.Forms/5.0.0.0": { 448 | "compile": { 449 | "Microsoft.AspNetCore.Components.Forms.dll": {} 450 | }, 451 | "compileOnly": true 452 | }, 453 | "Microsoft.AspNetCore.Components.Server/5.0.0.0": { 454 | "compile": { 455 | "Microsoft.AspNetCore.Components.Server.dll": {} 456 | }, 457 | "compileOnly": true 458 | }, 459 | "Microsoft.AspNetCore.Components.Web/5.0.0.0": { 460 | "compile": { 461 | "Microsoft.AspNetCore.Components.Web.dll": {} 462 | }, 463 | "compileOnly": true 464 | }, 465 | "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": { 466 | "compile": { 467 | "Microsoft.AspNetCore.Connections.Abstractions.dll": {} 468 | }, 469 | "compileOnly": true 470 | }, 471 | "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": { 472 | "compile": { 473 | "Microsoft.AspNetCore.CookiePolicy.dll": {} 474 | }, 475 | "compileOnly": true 476 | }, 477 | "Microsoft.AspNetCore.Cors/5.0.0.0": { 478 | "compile": { 479 | "Microsoft.AspNetCore.Cors.dll": {} 480 | }, 481 | "compileOnly": true 482 | }, 483 | "Microsoft.AspNetCore.Cryptography.Internal/5.0.0.0": { 484 | "compile": { 485 | "Microsoft.AspNetCore.Cryptography.Internal.dll": {} 486 | }, 487 | "compileOnly": true 488 | }, 489 | "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.0.0": { 490 | "compile": { 491 | "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} 492 | }, 493 | "compileOnly": true 494 | }, 495 | "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": { 496 | "compile": { 497 | "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} 498 | }, 499 | "compileOnly": true 500 | }, 501 | "Microsoft.AspNetCore.DataProtection/5.0.0.0": { 502 | "compile": { 503 | "Microsoft.AspNetCore.DataProtection.dll": {} 504 | }, 505 | "compileOnly": true 506 | }, 507 | "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": { 508 | "compile": { 509 | "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} 510 | }, 511 | "compileOnly": true 512 | }, 513 | "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": { 514 | "compile": { 515 | "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} 516 | }, 517 | "compileOnly": true 518 | }, 519 | "Microsoft.AspNetCore.Diagnostics/5.0.0.0": { 520 | "compile": { 521 | "Microsoft.AspNetCore.Diagnostics.dll": {} 522 | }, 523 | "compileOnly": true 524 | }, 525 | "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": { 526 | "compile": { 527 | "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} 528 | }, 529 | "compileOnly": true 530 | }, 531 | "Microsoft.AspNetCore/5.0.0.0": { 532 | "compile": { 533 | "Microsoft.AspNetCore.dll": {} 534 | }, 535 | "compileOnly": true 536 | }, 537 | "Microsoft.AspNetCore.HostFiltering/5.0.0.0": { 538 | "compile": { 539 | "Microsoft.AspNetCore.HostFiltering.dll": {} 540 | }, 541 | "compileOnly": true 542 | }, 543 | "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": { 544 | "compile": { 545 | "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} 546 | }, 547 | "compileOnly": true 548 | }, 549 | "Microsoft.AspNetCore.Hosting/5.0.0.0": { 550 | "compile": { 551 | "Microsoft.AspNetCore.Hosting.dll": {} 552 | }, 553 | "compileOnly": true 554 | }, 555 | "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": { 556 | "compile": { 557 | "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} 558 | }, 559 | "compileOnly": true 560 | }, 561 | "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": { 562 | "compile": { 563 | "Microsoft.AspNetCore.Html.Abstractions.dll": {} 564 | }, 565 | "compileOnly": true 566 | }, 567 | "Microsoft.AspNetCore.Http.Abstractions/5.0.0.0": { 568 | "compile": { 569 | "Microsoft.AspNetCore.Http.Abstractions.dll": {} 570 | }, 571 | "compileOnly": true 572 | }, 573 | "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": { 574 | "compile": { 575 | "Microsoft.AspNetCore.Http.Connections.Common.dll": {} 576 | }, 577 | "compileOnly": true 578 | }, 579 | "Microsoft.AspNetCore.Http.Connections/5.0.0.0": { 580 | "compile": { 581 | "Microsoft.AspNetCore.Http.Connections.dll": {} 582 | }, 583 | "compileOnly": true 584 | }, 585 | "Microsoft.AspNetCore.Http/5.0.0.0": { 586 | "compile": { 587 | "Microsoft.AspNetCore.Http.dll": {} 588 | }, 589 | "compileOnly": true 590 | }, 591 | "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": { 592 | "compile": { 593 | "Microsoft.AspNetCore.Http.Extensions.dll": {} 594 | }, 595 | "compileOnly": true 596 | }, 597 | "Microsoft.AspNetCore.Http.Features/5.0.0.0": { 598 | "compile": { 599 | "Microsoft.AspNetCore.Http.Features.dll": {} 600 | }, 601 | "compileOnly": true 602 | }, 603 | "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": { 604 | "compile": { 605 | "Microsoft.AspNetCore.HttpOverrides.dll": {} 606 | }, 607 | "compileOnly": true 608 | }, 609 | "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": { 610 | "compile": { 611 | "Microsoft.AspNetCore.HttpsPolicy.dll": {} 612 | }, 613 | "compileOnly": true 614 | }, 615 | "Microsoft.AspNetCore.Identity/5.0.0.0": { 616 | "compile": { 617 | "Microsoft.AspNetCore.Identity.dll": {} 618 | }, 619 | "compileOnly": true 620 | }, 621 | "Microsoft.AspNetCore.Localization/5.0.0.0": { 622 | "compile": { 623 | "Microsoft.AspNetCore.Localization.dll": {} 624 | }, 625 | "compileOnly": true 626 | }, 627 | "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": { 628 | "compile": { 629 | "Microsoft.AspNetCore.Localization.Routing.dll": {} 630 | }, 631 | "compileOnly": true 632 | }, 633 | "Microsoft.AspNetCore.Metadata/5.0.0.0": { 634 | "compile": { 635 | "Microsoft.AspNetCore.Metadata.dll": {} 636 | }, 637 | "compileOnly": true 638 | }, 639 | "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": { 640 | "compile": { 641 | "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} 642 | }, 643 | "compileOnly": true 644 | }, 645 | "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": { 646 | "compile": { 647 | "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} 648 | }, 649 | "compileOnly": true 650 | }, 651 | "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": { 652 | "compile": { 653 | "Microsoft.AspNetCore.Mvc.Core.dll": {} 654 | }, 655 | "compileOnly": true 656 | }, 657 | "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": { 658 | "compile": { 659 | "Microsoft.AspNetCore.Mvc.Cors.dll": {} 660 | }, 661 | "compileOnly": true 662 | }, 663 | "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": { 664 | "compile": { 665 | "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} 666 | }, 667 | "compileOnly": true 668 | }, 669 | "Microsoft.AspNetCore.Mvc/5.0.0.0": { 670 | "compile": { 671 | "Microsoft.AspNetCore.Mvc.dll": {} 672 | }, 673 | "compileOnly": true 674 | }, 675 | "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": { 676 | "compile": { 677 | "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} 678 | }, 679 | "compileOnly": true 680 | }, 681 | "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": { 682 | "compile": { 683 | "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} 684 | }, 685 | "compileOnly": true 686 | }, 687 | "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": { 688 | "compile": { 689 | "Microsoft.AspNetCore.Mvc.Localization.dll": {} 690 | }, 691 | "compileOnly": true 692 | }, 693 | "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": { 694 | "compile": { 695 | "Microsoft.AspNetCore.Mvc.Razor.dll": {} 696 | }, 697 | "compileOnly": true 698 | }, 699 | "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": { 700 | "compile": { 701 | "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} 702 | }, 703 | "compileOnly": true 704 | }, 705 | "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": { 706 | "compile": { 707 | "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} 708 | }, 709 | "compileOnly": true 710 | }, 711 | "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": { 712 | "compile": { 713 | "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} 714 | }, 715 | "compileOnly": true 716 | }, 717 | "Microsoft.AspNetCore.Razor/5.0.0.0": { 718 | "compile": { 719 | "Microsoft.AspNetCore.Razor.dll": {} 720 | }, 721 | "compileOnly": true 722 | }, 723 | "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": { 724 | "compile": { 725 | "Microsoft.AspNetCore.Razor.Runtime.dll": {} 726 | }, 727 | "compileOnly": true 728 | }, 729 | "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": { 730 | "compile": { 731 | "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} 732 | }, 733 | "compileOnly": true 734 | }, 735 | "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": { 736 | "compile": { 737 | "Microsoft.AspNetCore.ResponseCaching.dll": {} 738 | }, 739 | "compileOnly": true 740 | }, 741 | "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": { 742 | "compile": { 743 | "Microsoft.AspNetCore.ResponseCompression.dll": {} 744 | }, 745 | "compileOnly": true 746 | }, 747 | "Microsoft.AspNetCore.Rewrite/5.0.0.0": { 748 | "compile": { 749 | "Microsoft.AspNetCore.Rewrite.dll": {} 750 | }, 751 | "compileOnly": true 752 | }, 753 | "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": { 754 | "compile": { 755 | "Microsoft.AspNetCore.Routing.Abstractions.dll": {} 756 | }, 757 | "compileOnly": true 758 | }, 759 | "Microsoft.AspNetCore.Routing/5.0.0.0": { 760 | "compile": { 761 | "Microsoft.AspNetCore.Routing.dll": {} 762 | }, 763 | "compileOnly": true 764 | }, 765 | "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": { 766 | "compile": { 767 | "Microsoft.AspNetCore.Server.HttpSys.dll": {} 768 | }, 769 | "compileOnly": true 770 | }, 771 | "Microsoft.AspNetCore.Server.IIS/5.0.0.0": { 772 | "compile": { 773 | "Microsoft.AspNetCore.Server.IIS.dll": {} 774 | }, 775 | "compileOnly": true 776 | }, 777 | "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": { 778 | "compile": { 779 | "Microsoft.AspNetCore.Server.IISIntegration.dll": {} 780 | }, 781 | "compileOnly": true 782 | }, 783 | "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": { 784 | "compile": { 785 | "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} 786 | }, 787 | "compileOnly": true 788 | }, 789 | "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": { 790 | "compile": { 791 | "Microsoft.AspNetCore.Server.Kestrel.dll": {} 792 | }, 793 | "compileOnly": true 794 | }, 795 | "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": { 796 | "compile": { 797 | "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} 798 | }, 799 | "compileOnly": true 800 | }, 801 | "Microsoft.AspNetCore.Session/5.0.0.0": { 802 | "compile": { 803 | "Microsoft.AspNetCore.Session.dll": {} 804 | }, 805 | "compileOnly": true 806 | }, 807 | "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": { 808 | "compile": { 809 | "Microsoft.AspNetCore.SignalR.Common.dll": {} 810 | }, 811 | "compileOnly": true 812 | }, 813 | "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": { 814 | "compile": { 815 | "Microsoft.AspNetCore.SignalR.Core.dll": {} 816 | }, 817 | "compileOnly": true 818 | }, 819 | "Microsoft.AspNetCore.SignalR/5.0.0.0": { 820 | "compile": { 821 | "Microsoft.AspNetCore.SignalR.dll": {} 822 | }, 823 | "compileOnly": true 824 | }, 825 | "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": { 826 | "compile": { 827 | "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} 828 | }, 829 | "compileOnly": true 830 | }, 831 | "Microsoft.AspNetCore.StaticFiles/5.0.0.0": { 832 | "compile": { 833 | "Microsoft.AspNetCore.StaticFiles.dll": {} 834 | }, 835 | "compileOnly": true 836 | }, 837 | "Microsoft.AspNetCore.WebSockets/5.0.0.0": { 838 | "compile": { 839 | "Microsoft.AspNetCore.WebSockets.dll": {} 840 | }, 841 | "compileOnly": true 842 | }, 843 | "Microsoft.AspNetCore.WebUtilities/5.0.0.0": { 844 | "compile": { 845 | "Microsoft.AspNetCore.WebUtilities.dll": {} 846 | }, 847 | "compileOnly": true 848 | }, 849 | "Microsoft.CSharp/5.0.0.0": { 850 | "compile": { 851 | "Microsoft.CSharp.dll": {} 852 | }, 853 | "compileOnly": true 854 | }, 855 | "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { 856 | "compile": { 857 | "Microsoft.Extensions.Caching.Abstractions.dll": {} 858 | }, 859 | "compileOnly": true 860 | }, 861 | "Microsoft.Extensions.Caching.Memory/5.0.0.0": { 862 | "compile": { 863 | "Microsoft.Extensions.Caching.Memory.dll": {} 864 | }, 865 | "compileOnly": true 866 | }, 867 | "Microsoft.Extensions.Configuration.Abstractions/5.0.0.0": { 868 | "compile": { 869 | "Microsoft.Extensions.Configuration.Abstractions.dll": {} 870 | }, 871 | "compileOnly": true 872 | }, 873 | "Microsoft.Extensions.Configuration.Binder/5.0.0.0": { 874 | "compile": { 875 | "Microsoft.Extensions.Configuration.Binder.dll": {} 876 | }, 877 | "compileOnly": true 878 | }, 879 | "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": { 880 | "compile": { 881 | "Microsoft.Extensions.Configuration.CommandLine.dll": {} 882 | }, 883 | "compileOnly": true 884 | }, 885 | "Microsoft.Extensions.Configuration/5.0.0.0": { 886 | "compile": { 887 | "Microsoft.Extensions.Configuration.dll": {} 888 | }, 889 | "compileOnly": true 890 | }, 891 | "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": { 892 | "compile": { 893 | "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} 894 | }, 895 | "compileOnly": true 896 | }, 897 | "Microsoft.Extensions.Configuration.FileExtensions/5.0.0.0": { 898 | "compile": { 899 | "Microsoft.Extensions.Configuration.FileExtensions.dll": {} 900 | }, 901 | "compileOnly": true 902 | }, 903 | "Microsoft.Extensions.Configuration.Ini/5.0.0.0": { 904 | "compile": { 905 | "Microsoft.Extensions.Configuration.Ini.dll": {} 906 | }, 907 | "compileOnly": true 908 | }, 909 | "Microsoft.Extensions.Configuration.Json/5.0.0.0": { 910 | "compile": { 911 | "Microsoft.Extensions.Configuration.Json.dll": {} 912 | }, 913 | "compileOnly": true 914 | }, 915 | "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": { 916 | "compile": { 917 | "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} 918 | }, 919 | "compileOnly": true 920 | }, 921 | "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": { 922 | "compile": { 923 | "Microsoft.Extensions.Configuration.UserSecrets.dll": {} 924 | }, 925 | "compileOnly": true 926 | }, 927 | "Microsoft.Extensions.Configuration.Xml/5.0.0.0": { 928 | "compile": { 929 | "Microsoft.Extensions.Configuration.Xml.dll": {} 930 | }, 931 | "compileOnly": true 932 | }, 933 | "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { 934 | "compile": { 935 | "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} 936 | }, 937 | "compileOnly": true 938 | }, 939 | "Microsoft.Extensions.DependencyInjection/5.0.0.0": { 940 | "compile": { 941 | "Microsoft.Extensions.DependencyInjection.dll": {} 942 | }, 943 | "compileOnly": true 944 | }, 945 | "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": { 946 | "compile": { 947 | "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} 948 | }, 949 | "compileOnly": true 950 | }, 951 | "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": { 952 | "compile": { 953 | "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} 954 | }, 955 | "compileOnly": true 956 | }, 957 | "Microsoft.Extensions.FileProviders.Abstractions/5.0.0.0": { 958 | "compile": { 959 | "Microsoft.Extensions.FileProviders.Abstractions.dll": {} 960 | }, 961 | "compileOnly": true 962 | }, 963 | "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": { 964 | "compile": { 965 | "Microsoft.Extensions.FileProviders.Composite.dll": {} 966 | }, 967 | "compileOnly": true 968 | }, 969 | "Microsoft.Extensions.FileProviders.Embedded/5.0.0.0": { 970 | "compile": { 971 | "Microsoft.Extensions.FileProviders.Embedded.dll": {} 972 | }, 973 | "compileOnly": true 974 | }, 975 | "Microsoft.Extensions.FileProviders.Physical/5.0.0.0": { 976 | "compile": { 977 | "Microsoft.Extensions.FileProviders.Physical.dll": {} 978 | }, 979 | "compileOnly": true 980 | }, 981 | "Microsoft.Extensions.FileSystemGlobbing/5.0.0.0": { 982 | "compile": { 983 | "Microsoft.Extensions.FileSystemGlobbing.dll": {} 984 | }, 985 | "compileOnly": true 986 | }, 987 | "Microsoft.Extensions.Hosting.Abstractions/5.0.0.0": { 988 | "compile": { 989 | "Microsoft.Extensions.Hosting.Abstractions.dll": {} 990 | }, 991 | "compileOnly": true 992 | }, 993 | "Microsoft.Extensions.Hosting/5.0.0.0": { 994 | "compile": { 995 | "Microsoft.Extensions.Hosting.dll": {} 996 | }, 997 | "compileOnly": true 998 | }, 999 | "Microsoft.Extensions.Http/5.0.0.0": { 1000 | "compile": { 1001 | "Microsoft.Extensions.Http.dll": {} 1002 | }, 1003 | "compileOnly": true 1004 | }, 1005 | "Microsoft.Extensions.Identity.Core/5.0.0.0": { 1006 | "compile": { 1007 | "Microsoft.Extensions.Identity.Core.dll": {} 1008 | }, 1009 | "compileOnly": true 1010 | }, 1011 | "Microsoft.Extensions.Identity.Stores/5.0.0.0": { 1012 | "compile": { 1013 | "Microsoft.Extensions.Identity.Stores.dll": {} 1014 | }, 1015 | "compileOnly": true 1016 | }, 1017 | "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": { 1018 | "compile": { 1019 | "Microsoft.Extensions.Localization.Abstractions.dll": {} 1020 | }, 1021 | "compileOnly": true 1022 | }, 1023 | "Microsoft.Extensions.Localization/5.0.0.0": { 1024 | "compile": { 1025 | "Microsoft.Extensions.Localization.dll": {} 1026 | }, 1027 | "compileOnly": true 1028 | }, 1029 | "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { 1030 | "compile": { 1031 | "Microsoft.Extensions.Logging.Abstractions.dll": {} 1032 | }, 1033 | "compileOnly": true 1034 | }, 1035 | "Microsoft.Extensions.Logging.Configuration/5.0.0.0": { 1036 | "compile": { 1037 | "Microsoft.Extensions.Logging.Configuration.dll": {} 1038 | }, 1039 | "compileOnly": true 1040 | }, 1041 | "Microsoft.Extensions.Logging.Console/5.0.0.0": { 1042 | "compile": { 1043 | "Microsoft.Extensions.Logging.Console.dll": {} 1044 | }, 1045 | "compileOnly": true 1046 | }, 1047 | "Microsoft.Extensions.Logging.Debug/5.0.0.0": { 1048 | "compile": { 1049 | "Microsoft.Extensions.Logging.Debug.dll": {} 1050 | }, 1051 | "compileOnly": true 1052 | }, 1053 | "Microsoft.Extensions.Logging/5.0.0.0": { 1054 | "compile": { 1055 | "Microsoft.Extensions.Logging.dll": {} 1056 | }, 1057 | "compileOnly": true 1058 | }, 1059 | "Microsoft.Extensions.Logging.EventLog/5.0.0.0": { 1060 | "compile": { 1061 | "Microsoft.Extensions.Logging.EventLog.dll": {} 1062 | }, 1063 | "compileOnly": true 1064 | }, 1065 | "Microsoft.Extensions.Logging.EventSource/5.0.0.0": { 1066 | "compile": { 1067 | "Microsoft.Extensions.Logging.EventSource.dll": {} 1068 | }, 1069 | "compileOnly": true 1070 | }, 1071 | "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": { 1072 | "compile": { 1073 | "Microsoft.Extensions.Logging.TraceSource.dll": {} 1074 | }, 1075 | "compileOnly": true 1076 | }, 1077 | "Microsoft.Extensions.ObjectPool/5.0.0.0": { 1078 | "compile": { 1079 | "Microsoft.Extensions.ObjectPool.dll": {} 1080 | }, 1081 | "compileOnly": true 1082 | }, 1083 | "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0.0": { 1084 | "compile": { 1085 | "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} 1086 | }, 1087 | "compileOnly": true 1088 | }, 1089 | "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": { 1090 | "compile": { 1091 | "Microsoft.Extensions.Options.DataAnnotations.dll": {} 1092 | }, 1093 | "compileOnly": true 1094 | }, 1095 | "Microsoft.Extensions.Options/5.0.0.0": { 1096 | "compile": { 1097 | "Microsoft.Extensions.Options.dll": {} 1098 | }, 1099 | "compileOnly": true 1100 | }, 1101 | "Microsoft.Extensions.Primitives/5.0.0.0": { 1102 | "compile": { 1103 | "Microsoft.Extensions.Primitives.dll": {} 1104 | }, 1105 | "compileOnly": true 1106 | }, 1107 | "Microsoft.Extensions.WebEncoders/5.0.0.0": { 1108 | "compile": { 1109 | "Microsoft.Extensions.WebEncoders.dll": {} 1110 | }, 1111 | "compileOnly": true 1112 | }, 1113 | "Microsoft.JSInterop/5.0.0.0": { 1114 | "compile": { 1115 | "Microsoft.JSInterop.dll": {} 1116 | }, 1117 | "compileOnly": true 1118 | }, 1119 | "Microsoft.Net.Http.Headers/5.0.0.0": { 1120 | "compile": { 1121 | "Microsoft.Net.Http.Headers.dll": {} 1122 | }, 1123 | "compileOnly": true 1124 | }, 1125 | "Microsoft.VisualBasic.Core/10.0.6.0": { 1126 | "compile": { 1127 | "Microsoft.VisualBasic.Core.dll": {} 1128 | }, 1129 | "compileOnly": true 1130 | }, 1131 | "Microsoft.VisualBasic/10.0.0.0": { 1132 | "compile": { 1133 | "Microsoft.VisualBasic.dll": {} 1134 | }, 1135 | "compileOnly": true 1136 | }, 1137 | "Microsoft.Win32.Primitives/5.0.0.0": { 1138 | "compile": { 1139 | "Microsoft.Win32.Primitives.dll": {} 1140 | }, 1141 | "compileOnly": true 1142 | }, 1143 | "Microsoft.Win32.Registry/5.0.0.0": { 1144 | "compile": { 1145 | "Microsoft.Win32.Registry.dll": {} 1146 | }, 1147 | "compileOnly": true 1148 | }, 1149 | "mscorlib/4.0.0.0": { 1150 | "compile": { 1151 | "mscorlib.dll": {} 1152 | }, 1153 | "compileOnly": true 1154 | }, 1155 | "netstandard/2.1.0.0": { 1156 | "compile": { 1157 | "netstandard.dll": {} 1158 | }, 1159 | "compileOnly": true 1160 | }, 1161 | "System.AppContext/5.0.0.0": { 1162 | "compile": { 1163 | "System.AppContext.dll": {} 1164 | }, 1165 | "compileOnly": true 1166 | }, 1167 | "System.Buffers/5.0.0.0": { 1168 | "compile": { 1169 | "System.Buffers.dll": {} 1170 | }, 1171 | "compileOnly": true 1172 | }, 1173 | "System.Collections.Concurrent/5.0.0.0": { 1174 | "compile": { 1175 | "System.Collections.Concurrent.dll": {} 1176 | }, 1177 | "compileOnly": true 1178 | }, 1179 | "System.Collections/5.0.0.0": { 1180 | "compile": { 1181 | "System.Collections.dll": {} 1182 | }, 1183 | "compileOnly": true 1184 | }, 1185 | "System.Collections.Immutable/5.0.0.0": { 1186 | "compile": { 1187 | "System.Collections.Immutable.dll": {} 1188 | }, 1189 | "compileOnly": true 1190 | }, 1191 | "System.Collections.NonGeneric/5.0.0.0": { 1192 | "compile": { 1193 | "System.Collections.NonGeneric.dll": {} 1194 | }, 1195 | "compileOnly": true 1196 | }, 1197 | "System.Collections.Specialized/5.0.0.0": { 1198 | "compile": { 1199 | "System.Collections.Specialized.dll": {} 1200 | }, 1201 | "compileOnly": true 1202 | }, 1203 | "System.ComponentModel.Annotations/5.0.0.0": { 1204 | "compile": { 1205 | "System.ComponentModel.Annotations.dll": {} 1206 | }, 1207 | "compileOnly": true 1208 | }, 1209 | "System.ComponentModel.DataAnnotations/4.0.0.0": { 1210 | "compile": { 1211 | "System.ComponentModel.DataAnnotations.dll": {} 1212 | }, 1213 | "compileOnly": true 1214 | }, 1215 | "System.ComponentModel/5.0.0.0": { 1216 | "compile": { 1217 | "System.ComponentModel.dll": {} 1218 | }, 1219 | "compileOnly": true 1220 | }, 1221 | "System.ComponentModel.EventBasedAsync/5.0.0.0": { 1222 | "compile": { 1223 | "System.ComponentModel.EventBasedAsync.dll": {} 1224 | }, 1225 | "compileOnly": true 1226 | }, 1227 | "System.ComponentModel.Primitives/5.0.0.0": { 1228 | "compile": { 1229 | "System.ComponentModel.Primitives.dll": {} 1230 | }, 1231 | "compileOnly": true 1232 | }, 1233 | "System.ComponentModel.TypeConverter/5.0.0.0": { 1234 | "compile": { 1235 | "System.ComponentModel.TypeConverter.dll": {} 1236 | }, 1237 | "compileOnly": true 1238 | }, 1239 | "System.Configuration/4.0.0.0": { 1240 | "compile": { 1241 | "System.Configuration.dll": {} 1242 | }, 1243 | "compileOnly": true 1244 | }, 1245 | "System.Console/5.0.0.0": { 1246 | "compile": { 1247 | "System.Console.dll": {} 1248 | }, 1249 | "compileOnly": true 1250 | }, 1251 | "System.Core/4.0.0.0": { 1252 | "compile": { 1253 | "System.Core.dll": {} 1254 | }, 1255 | "compileOnly": true 1256 | }, 1257 | "System.Data.Common/5.0.0.0": { 1258 | "compile": { 1259 | "System.Data.Common.dll": {} 1260 | }, 1261 | "compileOnly": true 1262 | }, 1263 | "System.Data.DataSetExtensions/4.0.0.0": { 1264 | "compile": { 1265 | "System.Data.DataSetExtensions.dll": {} 1266 | }, 1267 | "compileOnly": true 1268 | }, 1269 | "System.Data/4.0.0.0": { 1270 | "compile": { 1271 | "System.Data.dll": {} 1272 | }, 1273 | "compileOnly": true 1274 | }, 1275 | "System.Diagnostics.Contracts/5.0.0.0": { 1276 | "compile": { 1277 | "System.Diagnostics.Contracts.dll": {} 1278 | }, 1279 | "compileOnly": true 1280 | }, 1281 | "System.Diagnostics.Debug/5.0.0.0": { 1282 | "compile": { 1283 | "System.Diagnostics.Debug.dll": {} 1284 | }, 1285 | "compileOnly": true 1286 | }, 1287 | "System.Diagnostics.DiagnosticSource/5.0.0.0": { 1288 | "compile": { 1289 | "System.Diagnostics.DiagnosticSource.dll": {} 1290 | }, 1291 | "compileOnly": true 1292 | }, 1293 | "System.Diagnostics.EventLog/5.0.0.0": { 1294 | "compile": { 1295 | "System.Diagnostics.EventLog.dll": {} 1296 | }, 1297 | "compileOnly": true 1298 | }, 1299 | "System.Diagnostics.FileVersionInfo/5.0.0.0": { 1300 | "compile": { 1301 | "System.Diagnostics.FileVersionInfo.dll": {} 1302 | }, 1303 | "compileOnly": true 1304 | }, 1305 | "System.Diagnostics.Process/5.0.0.0": { 1306 | "compile": { 1307 | "System.Diagnostics.Process.dll": {} 1308 | }, 1309 | "compileOnly": true 1310 | }, 1311 | "System.Diagnostics.StackTrace/5.0.0.0": { 1312 | "compile": { 1313 | "System.Diagnostics.StackTrace.dll": {} 1314 | }, 1315 | "compileOnly": true 1316 | }, 1317 | "System.Diagnostics.TextWriterTraceListener/5.0.0.0": { 1318 | "compile": { 1319 | "System.Diagnostics.TextWriterTraceListener.dll": {} 1320 | }, 1321 | "compileOnly": true 1322 | }, 1323 | "System.Diagnostics.Tools/5.0.0.0": { 1324 | "compile": { 1325 | "System.Diagnostics.Tools.dll": {} 1326 | }, 1327 | "compileOnly": true 1328 | }, 1329 | "System.Diagnostics.TraceSource/5.0.0.0": { 1330 | "compile": { 1331 | "System.Diagnostics.TraceSource.dll": {} 1332 | }, 1333 | "compileOnly": true 1334 | }, 1335 | "System.Diagnostics.Tracing/5.0.0.0": { 1336 | "compile": { 1337 | "System.Diagnostics.Tracing.dll": {} 1338 | }, 1339 | "compileOnly": true 1340 | }, 1341 | "System/4.0.0.0": { 1342 | "compile": { 1343 | "System.dll": {} 1344 | }, 1345 | "compileOnly": true 1346 | }, 1347 | "System.Drawing/4.0.0.0": { 1348 | "compile": { 1349 | "System.Drawing.dll": {} 1350 | }, 1351 | "compileOnly": true 1352 | }, 1353 | "System.Drawing.Primitives/5.0.0.0": { 1354 | "compile": { 1355 | "System.Drawing.Primitives.dll": {} 1356 | }, 1357 | "compileOnly": true 1358 | }, 1359 | "System.Dynamic.Runtime/5.0.0.0": { 1360 | "compile": { 1361 | "System.Dynamic.Runtime.dll": {} 1362 | }, 1363 | "compileOnly": true 1364 | }, 1365 | "System.Formats.Asn1/5.0.0.0": { 1366 | "compile": { 1367 | "System.Formats.Asn1.dll": {} 1368 | }, 1369 | "compileOnly": true 1370 | }, 1371 | "System.Globalization.Calendars/5.0.0.0": { 1372 | "compile": { 1373 | "System.Globalization.Calendars.dll": {} 1374 | }, 1375 | "compileOnly": true 1376 | }, 1377 | "System.Globalization/5.0.0.0": { 1378 | "compile": { 1379 | "System.Globalization.dll": {} 1380 | }, 1381 | "compileOnly": true 1382 | }, 1383 | "System.Globalization.Extensions/5.0.0.0": { 1384 | "compile": { 1385 | "System.Globalization.Extensions.dll": {} 1386 | }, 1387 | "compileOnly": true 1388 | }, 1389 | "System.IO.Compression.Brotli/5.0.0.0": { 1390 | "compile": { 1391 | "System.IO.Compression.Brotli.dll": {} 1392 | }, 1393 | "compileOnly": true 1394 | }, 1395 | "System.IO.Compression/5.0.0.0": { 1396 | "compile": { 1397 | "System.IO.Compression.dll": {} 1398 | }, 1399 | "compileOnly": true 1400 | }, 1401 | "System.IO.Compression.FileSystem/4.0.0.0": { 1402 | "compile": { 1403 | "System.IO.Compression.FileSystem.dll": {} 1404 | }, 1405 | "compileOnly": true 1406 | }, 1407 | "System.IO.Compression.ZipFile/5.0.0.0": { 1408 | "compile": { 1409 | "System.IO.Compression.ZipFile.dll": {} 1410 | }, 1411 | "compileOnly": true 1412 | }, 1413 | "System.IO/5.0.0.0": { 1414 | "compile": { 1415 | "System.IO.dll": {} 1416 | }, 1417 | "compileOnly": true 1418 | }, 1419 | "System.IO.FileSystem/5.0.0.0": { 1420 | "compile": { 1421 | "System.IO.FileSystem.dll": {} 1422 | }, 1423 | "compileOnly": true 1424 | }, 1425 | "System.IO.FileSystem.DriveInfo/5.0.0.0": { 1426 | "compile": { 1427 | "System.IO.FileSystem.DriveInfo.dll": {} 1428 | }, 1429 | "compileOnly": true 1430 | }, 1431 | "System.IO.FileSystem.Primitives/5.0.0.0": { 1432 | "compile": { 1433 | "System.IO.FileSystem.Primitives.dll": {} 1434 | }, 1435 | "compileOnly": true 1436 | }, 1437 | "System.IO.FileSystem.Watcher/5.0.0.0": { 1438 | "compile": { 1439 | "System.IO.FileSystem.Watcher.dll": {} 1440 | }, 1441 | "compileOnly": true 1442 | }, 1443 | "System.IO.IsolatedStorage/5.0.0.0": { 1444 | "compile": { 1445 | "System.IO.IsolatedStorage.dll": {} 1446 | }, 1447 | "compileOnly": true 1448 | }, 1449 | "System.IO.MemoryMappedFiles/5.0.0.0": { 1450 | "compile": { 1451 | "System.IO.MemoryMappedFiles.dll": {} 1452 | }, 1453 | "compileOnly": true 1454 | }, 1455 | "System.IO.Pipelines/5.0.0.0": { 1456 | "compile": { 1457 | "System.IO.Pipelines.dll": {} 1458 | }, 1459 | "compileOnly": true 1460 | }, 1461 | "System.IO.Pipes/5.0.0.0": { 1462 | "compile": { 1463 | "System.IO.Pipes.dll": {} 1464 | }, 1465 | "compileOnly": true 1466 | }, 1467 | "System.IO.UnmanagedMemoryStream/5.0.0.0": { 1468 | "compile": { 1469 | "System.IO.UnmanagedMemoryStream.dll": {} 1470 | }, 1471 | "compileOnly": true 1472 | }, 1473 | "System.Linq/5.0.0.0": { 1474 | "compile": { 1475 | "System.Linq.dll": {} 1476 | }, 1477 | "compileOnly": true 1478 | }, 1479 | "System.Linq.Expressions/5.0.0.0": { 1480 | "compile": { 1481 | "System.Linq.Expressions.dll": {} 1482 | }, 1483 | "compileOnly": true 1484 | }, 1485 | "System.Linq.Parallel/5.0.0.0": { 1486 | "compile": { 1487 | "System.Linq.Parallel.dll": {} 1488 | }, 1489 | "compileOnly": true 1490 | }, 1491 | "System.Linq.Queryable/5.0.0.0": { 1492 | "compile": { 1493 | "System.Linq.Queryable.dll": {} 1494 | }, 1495 | "compileOnly": true 1496 | }, 1497 | "System.Memory/5.0.0.0": { 1498 | "compile": { 1499 | "System.Memory.dll": {} 1500 | }, 1501 | "compileOnly": true 1502 | }, 1503 | "System.Net/4.0.0.0": { 1504 | "compile": { 1505 | "System.Net.dll": {} 1506 | }, 1507 | "compileOnly": true 1508 | }, 1509 | "System.Net.Http/5.0.0.0": { 1510 | "compile": { 1511 | "System.Net.Http.dll": {} 1512 | }, 1513 | "compileOnly": true 1514 | }, 1515 | "System.Net.Http.Json/5.0.0.0": { 1516 | "compile": { 1517 | "System.Net.Http.Json.dll": {} 1518 | }, 1519 | "compileOnly": true 1520 | }, 1521 | "System.Net.HttpListener/5.0.0.0": { 1522 | "compile": { 1523 | "System.Net.HttpListener.dll": {} 1524 | }, 1525 | "compileOnly": true 1526 | }, 1527 | "System.Net.Mail/5.0.0.0": { 1528 | "compile": { 1529 | "System.Net.Mail.dll": {} 1530 | }, 1531 | "compileOnly": true 1532 | }, 1533 | "System.Net.NameResolution/5.0.0.0": { 1534 | "compile": { 1535 | "System.Net.NameResolution.dll": {} 1536 | }, 1537 | "compileOnly": true 1538 | }, 1539 | "System.Net.NetworkInformation/5.0.0.0": { 1540 | "compile": { 1541 | "System.Net.NetworkInformation.dll": {} 1542 | }, 1543 | "compileOnly": true 1544 | }, 1545 | "System.Net.Ping/5.0.0.0": { 1546 | "compile": { 1547 | "System.Net.Ping.dll": {} 1548 | }, 1549 | "compileOnly": true 1550 | }, 1551 | "System.Net.Primitives/5.0.0.0": { 1552 | "compile": { 1553 | "System.Net.Primitives.dll": {} 1554 | }, 1555 | "compileOnly": true 1556 | }, 1557 | "System.Net.Requests/5.0.0.0": { 1558 | "compile": { 1559 | "System.Net.Requests.dll": {} 1560 | }, 1561 | "compileOnly": true 1562 | }, 1563 | "System.Net.Security/5.0.0.0": { 1564 | "compile": { 1565 | "System.Net.Security.dll": {} 1566 | }, 1567 | "compileOnly": true 1568 | }, 1569 | "System.Net.ServicePoint/5.0.0.0": { 1570 | "compile": { 1571 | "System.Net.ServicePoint.dll": {} 1572 | }, 1573 | "compileOnly": true 1574 | }, 1575 | "System.Net.Sockets/5.0.0.0": { 1576 | "compile": { 1577 | "System.Net.Sockets.dll": {} 1578 | }, 1579 | "compileOnly": true 1580 | }, 1581 | "System.Net.WebClient/5.0.0.0": { 1582 | "compile": { 1583 | "System.Net.WebClient.dll": {} 1584 | }, 1585 | "compileOnly": true 1586 | }, 1587 | "System.Net.WebHeaderCollection/5.0.0.0": { 1588 | "compile": { 1589 | "System.Net.WebHeaderCollection.dll": {} 1590 | }, 1591 | "compileOnly": true 1592 | }, 1593 | "System.Net.WebProxy/5.0.0.0": { 1594 | "compile": { 1595 | "System.Net.WebProxy.dll": {} 1596 | }, 1597 | "compileOnly": true 1598 | }, 1599 | "System.Net.WebSockets.Client/5.0.0.0": { 1600 | "compile": { 1601 | "System.Net.WebSockets.Client.dll": {} 1602 | }, 1603 | "compileOnly": true 1604 | }, 1605 | "System.Net.WebSockets/5.0.0.0": { 1606 | "compile": { 1607 | "System.Net.WebSockets.dll": {} 1608 | }, 1609 | "compileOnly": true 1610 | }, 1611 | "System.Numerics/4.0.0.0": { 1612 | "compile": { 1613 | "System.Numerics.dll": {} 1614 | }, 1615 | "compileOnly": true 1616 | }, 1617 | "System.Numerics.Vectors/5.0.0.0": { 1618 | "compile": { 1619 | "System.Numerics.Vectors.dll": {} 1620 | }, 1621 | "compileOnly": true 1622 | }, 1623 | "System.ObjectModel/5.0.0.0": { 1624 | "compile": { 1625 | "System.ObjectModel.dll": {} 1626 | }, 1627 | "compileOnly": true 1628 | }, 1629 | "System.Reflection.DispatchProxy/5.0.0.0": { 1630 | "compile": { 1631 | "System.Reflection.DispatchProxy.dll": {} 1632 | }, 1633 | "compileOnly": true 1634 | }, 1635 | "System.Reflection/5.0.0.0": { 1636 | "compile": { 1637 | "System.Reflection.dll": {} 1638 | }, 1639 | "compileOnly": true 1640 | }, 1641 | "System.Reflection.Emit/5.0.0.0": { 1642 | "compile": { 1643 | "System.Reflection.Emit.dll": {} 1644 | }, 1645 | "compileOnly": true 1646 | }, 1647 | "System.Reflection.Emit.ILGeneration/5.0.0.0": { 1648 | "compile": { 1649 | "System.Reflection.Emit.ILGeneration.dll": {} 1650 | }, 1651 | "compileOnly": true 1652 | }, 1653 | "System.Reflection.Emit.Lightweight/5.0.0.0": { 1654 | "compile": { 1655 | "System.Reflection.Emit.Lightweight.dll": {} 1656 | }, 1657 | "compileOnly": true 1658 | }, 1659 | "System.Reflection.Extensions/5.0.0.0": { 1660 | "compile": { 1661 | "System.Reflection.Extensions.dll": {} 1662 | }, 1663 | "compileOnly": true 1664 | }, 1665 | "System.Reflection.Metadata/5.0.0.0": { 1666 | "compile": { 1667 | "System.Reflection.Metadata.dll": {} 1668 | }, 1669 | "compileOnly": true 1670 | }, 1671 | "System.Reflection.Primitives/5.0.0.0": { 1672 | "compile": { 1673 | "System.Reflection.Primitives.dll": {} 1674 | }, 1675 | "compileOnly": true 1676 | }, 1677 | "System.Reflection.TypeExtensions/5.0.0.0": { 1678 | "compile": { 1679 | "System.Reflection.TypeExtensions.dll": {} 1680 | }, 1681 | "compileOnly": true 1682 | }, 1683 | "System.Resources.Reader/5.0.0.0": { 1684 | "compile": { 1685 | "System.Resources.Reader.dll": {} 1686 | }, 1687 | "compileOnly": true 1688 | }, 1689 | "System.Resources.ResourceManager/5.0.0.0": { 1690 | "compile": { 1691 | "System.Resources.ResourceManager.dll": {} 1692 | }, 1693 | "compileOnly": true 1694 | }, 1695 | "System.Resources.Writer/5.0.0.0": { 1696 | "compile": { 1697 | "System.Resources.Writer.dll": {} 1698 | }, 1699 | "compileOnly": true 1700 | }, 1701 | "System.Runtime.CompilerServices.Unsafe/5.0.0.0": { 1702 | "compile": { 1703 | "System.Runtime.CompilerServices.Unsafe.dll": {} 1704 | }, 1705 | "compileOnly": true 1706 | }, 1707 | "System.Runtime.CompilerServices.VisualC/5.0.0.0": { 1708 | "compile": { 1709 | "System.Runtime.CompilerServices.VisualC.dll": {} 1710 | }, 1711 | "compileOnly": true 1712 | }, 1713 | "System.Runtime/5.0.0.0": { 1714 | "compile": { 1715 | "System.Runtime.dll": {} 1716 | }, 1717 | "compileOnly": true 1718 | }, 1719 | "System.Runtime.Extensions/5.0.0.0": { 1720 | "compile": { 1721 | "System.Runtime.Extensions.dll": {} 1722 | }, 1723 | "compileOnly": true 1724 | }, 1725 | "System.Runtime.Handles/5.0.0.0": { 1726 | "compile": { 1727 | "System.Runtime.Handles.dll": {} 1728 | }, 1729 | "compileOnly": true 1730 | }, 1731 | "System.Runtime.InteropServices/5.0.0.0": { 1732 | "compile": { 1733 | "System.Runtime.InteropServices.dll": {} 1734 | }, 1735 | "compileOnly": true 1736 | }, 1737 | "System.Runtime.InteropServices.RuntimeInformation/5.0.0.0": { 1738 | "compile": { 1739 | "System.Runtime.InteropServices.RuntimeInformation.dll": {} 1740 | }, 1741 | "compileOnly": true 1742 | }, 1743 | "System.Runtime.Intrinsics/5.0.0.0": { 1744 | "compile": { 1745 | "System.Runtime.Intrinsics.dll": {} 1746 | }, 1747 | "compileOnly": true 1748 | }, 1749 | "System.Runtime.Loader/5.0.0.0": { 1750 | "compile": { 1751 | "System.Runtime.Loader.dll": {} 1752 | }, 1753 | "compileOnly": true 1754 | }, 1755 | "System.Runtime.Numerics/5.0.0.0": { 1756 | "compile": { 1757 | "System.Runtime.Numerics.dll": {} 1758 | }, 1759 | "compileOnly": true 1760 | }, 1761 | "System.Runtime.Serialization/4.0.0.0": { 1762 | "compile": { 1763 | "System.Runtime.Serialization.dll": {} 1764 | }, 1765 | "compileOnly": true 1766 | }, 1767 | "System.Runtime.Serialization.Formatters/5.0.0.0": { 1768 | "compile": { 1769 | "System.Runtime.Serialization.Formatters.dll": {} 1770 | }, 1771 | "compileOnly": true 1772 | }, 1773 | "System.Runtime.Serialization.Json/5.0.0.0": { 1774 | "compile": { 1775 | "System.Runtime.Serialization.Json.dll": {} 1776 | }, 1777 | "compileOnly": true 1778 | }, 1779 | "System.Runtime.Serialization.Primitives/5.0.0.0": { 1780 | "compile": { 1781 | "System.Runtime.Serialization.Primitives.dll": {} 1782 | }, 1783 | "compileOnly": true 1784 | }, 1785 | "System.Runtime.Serialization.Xml/5.0.0.0": { 1786 | "compile": { 1787 | "System.Runtime.Serialization.Xml.dll": {} 1788 | }, 1789 | "compileOnly": true 1790 | }, 1791 | "System.Security.AccessControl/5.0.0.0": { 1792 | "compile": { 1793 | "System.Security.AccessControl.dll": {} 1794 | }, 1795 | "compileOnly": true 1796 | }, 1797 | "System.Security.Claims/5.0.0.0": { 1798 | "compile": { 1799 | "System.Security.Claims.dll": {} 1800 | }, 1801 | "compileOnly": true 1802 | }, 1803 | "System.Security.Cryptography.Algorithms/5.0.0.0": { 1804 | "compile": { 1805 | "System.Security.Cryptography.Algorithms.dll": {} 1806 | }, 1807 | "compileOnly": true 1808 | }, 1809 | "System.Security.Cryptography.Cng/5.0.0.0": { 1810 | "compile": { 1811 | "System.Security.Cryptography.Cng.dll": {} 1812 | }, 1813 | "compileOnly": true 1814 | }, 1815 | "System.Security.Cryptography.Csp/5.0.0.0": { 1816 | "compile": { 1817 | "System.Security.Cryptography.Csp.dll": {} 1818 | }, 1819 | "compileOnly": true 1820 | }, 1821 | "System.Security.Cryptography.Encoding/5.0.0.0": { 1822 | "compile": { 1823 | "System.Security.Cryptography.Encoding.dll": {} 1824 | }, 1825 | "compileOnly": true 1826 | }, 1827 | "System.Security.Cryptography.Primitives/5.0.0.0": { 1828 | "compile": { 1829 | "System.Security.Cryptography.Primitives.dll": {} 1830 | }, 1831 | "compileOnly": true 1832 | }, 1833 | "System.Security.Cryptography.X509Certificates/5.0.0.0": { 1834 | "compile": { 1835 | "System.Security.Cryptography.X509Certificates.dll": {} 1836 | }, 1837 | "compileOnly": true 1838 | }, 1839 | "System.Security.Cryptography.Xml/5.0.0.0": { 1840 | "compile": { 1841 | "System.Security.Cryptography.Xml.dll": {} 1842 | }, 1843 | "compileOnly": true 1844 | }, 1845 | "System.Security/4.0.0.0": { 1846 | "compile": { 1847 | "System.Security.dll": {} 1848 | }, 1849 | "compileOnly": true 1850 | }, 1851 | "System.Security.Permissions/5.0.0.0": { 1852 | "compile": { 1853 | "System.Security.Permissions.dll": {} 1854 | }, 1855 | "compileOnly": true 1856 | }, 1857 | "System.Security.Principal/5.0.0.0": { 1858 | "compile": { 1859 | "System.Security.Principal.dll": {} 1860 | }, 1861 | "compileOnly": true 1862 | }, 1863 | "System.Security.Principal.Windows/5.0.0.0": { 1864 | "compile": { 1865 | "System.Security.Principal.Windows.dll": {} 1866 | }, 1867 | "compileOnly": true 1868 | }, 1869 | "System.Security.SecureString/5.0.0.0": { 1870 | "compile": { 1871 | "System.Security.SecureString.dll": {} 1872 | }, 1873 | "compileOnly": true 1874 | }, 1875 | "System.ServiceModel.Web/4.0.0.0": { 1876 | "compile": { 1877 | "System.ServiceModel.Web.dll": {} 1878 | }, 1879 | "compileOnly": true 1880 | }, 1881 | "System.ServiceProcess/4.0.0.0": { 1882 | "compile": { 1883 | "System.ServiceProcess.dll": {} 1884 | }, 1885 | "compileOnly": true 1886 | }, 1887 | "System.Text.Encoding.CodePages/5.0.0.0": { 1888 | "compile": { 1889 | "System.Text.Encoding.CodePages.dll": {} 1890 | }, 1891 | "compileOnly": true 1892 | }, 1893 | "System.Text.Encoding/5.0.0.0": { 1894 | "compile": { 1895 | "System.Text.Encoding.dll": {} 1896 | }, 1897 | "compileOnly": true 1898 | }, 1899 | "System.Text.Encoding.Extensions/5.0.0.0": { 1900 | "compile": { 1901 | "System.Text.Encoding.Extensions.dll": {} 1902 | }, 1903 | "compileOnly": true 1904 | }, 1905 | "System.Text.Encodings.Web/5.0.0.0": { 1906 | "compile": { 1907 | "System.Text.Encodings.Web.dll": {} 1908 | }, 1909 | "compileOnly": true 1910 | }, 1911 | "System.Text.Json/5.0.0.0": { 1912 | "compile": { 1913 | "System.Text.Json.dll": {} 1914 | }, 1915 | "compileOnly": true 1916 | }, 1917 | "System.Text.RegularExpressions/5.0.0.0": { 1918 | "compile": { 1919 | "System.Text.RegularExpressions.dll": {} 1920 | }, 1921 | "compileOnly": true 1922 | }, 1923 | "System.Threading.Channels/5.0.0.0": { 1924 | "compile": { 1925 | "System.Threading.Channels.dll": {} 1926 | }, 1927 | "compileOnly": true 1928 | }, 1929 | "System.Threading/5.0.0.0": { 1930 | "compile": { 1931 | "System.Threading.dll": {} 1932 | }, 1933 | "compileOnly": true 1934 | }, 1935 | "System.Threading.Overlapped/5.0.0.0": { 1936 | "compile": { 1937 | "System.Threading.Overlapped.dll": {} 1938 | }, 1939 | "compileOnly": true 1940 | }, 1941 | "System.Threading.Tasks.Dataflow/5.0.0.0": { 1942 | "compile": { 1943 | "System.Threading.Tasks.Dataflow.dll": {} 1944 | }, 1945 | "compileOnly": true 1946 | }, 1947 | "System.Threading.Tasks/5.0.0.0": { 1948 | "compile": { 1949 | "System.Threading.Tasks.dll": {} 1950 | }, 1951 | "compileOnly": true 1952 | }, 1953 | "System.Threading.Tasks.Extensions/5.0.0.0": { 1954 | "compile": { 1955 | "System.Threading.Tasks.Extensions.dll": {} 1956 | }, 1957 | "compileOnly": true 1958 | }, 1959 | "System.Threading.Tasks.Parallel/5.0.0.0": { 1960 | "compile": { 1961 | "System.Threading.Tasks.Parallel.dll": {} 1962 | }, 1963 | "compileOnly": true 1964 | }, 1965 | "System.Threading.Thread/5.0.0.0": { 1966 | "compile": { 1967 | "System.Threading.Thread.dll": {} 1968 | }, 1969 | "compileOnly": true 1970 | }, 1971 | "System.Threading.ThreadPool/5.0.0.0": { 1972 | "compile": { 1973 | "System.Threading.ThreadPool.dll": {} 1974 | }, 1975 | "compileOnly": true 1976 | }, 1977 | "System.Threading.Timer/5.0.0.0": { 1978 | "compile": { 1979 | "System.Threading.Timer.dll": {} 1980 | }, 1981 | "compileOnly": true 1982 | }, 1983 | "System.Transactions/4.0.0.0": { 1984 | "compile": { 1985 | "System.Transactions.dll": {} 1986 | }, 1987 | "compileOnly": true 1988 | }, 1989 | "System.Transactions.Local/5.0.0.0": { 1990 | "compile": { 1991 | "System.Transactions.Local.dll": {} 1992 | }, 1993 | "compileOnly": true 1994 | }, 1995 | "System.ValueTuple/4.0.3.0": { 1996 | "compile": { 1997 | "System.ValueTuple.dll": {} 1998 | }, 1999 | "compileOnly": true 2000 | }, 2001 | "System.Web/4.0.0.0": { 2002 | "compile": { 2003 | "System.Web.dll": {} 2004 | }, 2005 | "compileOnly": true 2006 | }, 2007 | "System.Web.HttpUtility/5.0.0.0": { 2008 | "compile": { 2009 | "System.Web.HttpUtility.dll": {} 2010 | }, 2011 | "compileOnly": true 2012 | }, 2013 | "System.Windows/4.0.0.0": { 2014 | "compile": { 2015 | "System.Windows.dll": {} 2016 | }, 2017 | "compileOnly": true 2018 | }, 2019 | "System.Windows.Extensions/5.0.0.0": { 2020 | "compile": { 2021 | "System.Windows.Extensions.dll": {} 2022 | }, 2023 | "compileOnly": true 2024 | }, 2025 | "System.Xml/4.0.0.0": { 2026 | "compile": { 2027 | "System.Xml.dll": {} 2028 | }, 2029 | "compileOnly": true 2030 | }, 2031 | "System.Xml.Linq/4.0.0.0": { 2032 | "compile": { 2033 | "System.Xml.Linq.dll": {} 2034 | }, 2035 | "compileOnly": true 2036 | }, 2037 | "System.Xml.ReaderWriter/5.0.0.0": { 2038 | "compile": { 2039 | "System.Xml.ReaderWriter.dll": {} 2040 | }, 2041 | "compileOnly": true 2042 | }, 2043 | "System.Xml.Serialization/4.0.0.0": { 2044 | "compile": { 2045 | "System.Xml.Serialization.dll": {} 2046 | }, 2047 | "compileOnly": true 2048 | }, 2049 | "System.Xml.XDocument/5.0.0.0": { 2050 | "compile": { 2051 | "System.Xml.XDocument.dll": {} 2052 | }, 2053 | "compileOnly": true 2054 | }, 2055 | "System.Xml.XmlDocument/5.0.0.0": { 2056 | "compile": { 2057 | "System.Xml.XmlDocument.dll": {} 2058 | }, 2059 | "compileOnly": true 2060 | }, 2061 | "System.Xml.XmlSerializer/5.0.0.0": { 2062 | "compile": { 2063 | "System.Xml.XmlSerializer.dll": {} 2064 | }, 2065 | "compileOnly": true 2066 | }, 2067 | "System.Xml.XPath/5.0.0.0": { 2068 | "compile": { 2069 | "System.Xml.XPath.dll": {} 2070 | }, 2071 | "compileOnly": true 2072 | }, 2073 | "System.Xml.XPath.XDocument/5.0.0.0": { 2074 | "compile": { 2075 | "System.Xml.XPath.XDocument.dll": {} 2076 | }, 2077 | "compileOnly": true 2078 | }, 2079 | "WindowsBase/4.0.0.0": { 2080 | "compile": { 2081 | "WindowsBase.dll": {} 2082 | }, 2083 | "compileOnly": true 2084 | } 2085 | } 2086 | }, 2087 | "libraries": { 2088 | "ResponseService/1.0.0": { 2089 | "type": "project", 2090 | "serviceable": false, 2091 | "sha512": "" 2092 | }, 2093 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 2094 | "type": "package", 2095 | "serviceable": true, 2096 | "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", 2097 | "path": "microsoft.extensions.apidescription.server/3.0.0", 2098 | "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" 2099 | }, 2100 | "Microsoft.OpenApi/1.2.3": { 2101 | "type": "package", 2102 | "serviceable": true, 2103 | "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", 2104 | "path": "microsoft.openapi/1.2.3", 2105 | "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" 2106 | }, 2107 | "Swashbuckle.AspNetCore/5.6.3": { 2108 | "type": "package", 2109 | "serviceable": true, 2110 | "sha512": "sha512-UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==", 2111 | "path": "swashbuckle.aspnetcore/5.6.3", 2112 | "hashPath": "swashbuckle.aspnetcore.5.6.3.nupkg.sha512" 2113 | }, 2114 | "Swashbuckle.AspNetCore.Swagger/5.6.3": { 2115 | "type": "package", 2116 | "serviceable": true, 2117 | "sha512": "sha512-rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", 2118 | "path": "swashbuckle.aspnetcore.swagger/5.6.3", 2119 | "hashPath": "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512" 2120 | }, 2121 | "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { 2122 | "type": "package", 2123 | "serviceable": true, 2124 | "sha512": "sha512-CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", 2125 | "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", 2126 | "hashPath": "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512" 2127 | }, 2128 | "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { 2129 | "type": "package", 2130 | "serviceable": true, 2131 | "sha512": "sha512-BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==", 2132 | "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", 2133 | "hashPath": "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512" 2134 | }, 2135 | "Microsoft.AspNetCore.Antiforgery/5.0.0.0": { 2136 | "type": "referenceassembly", 2137 | "serviceable": false, 2138 | "sha512": "" 2139 | }, 2140 | "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": { 2141 | "type": "referenceassembly", 2142 | "serviceable": false, 2143 | "sha512": "" 2144 | }, 2145 | "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": { 2146 | "type": "referenceassembly", 2147 | "serviceable": false, 2148 | "sha512": "" 2149 | }, 2150 | "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": { 2151 | "type": "referenceassembly", 2152 | "serviceable": false, 2153 | "sha512": "" 2154 | }, 2155 | "Microsoft.AspNetCore.Authentication/5.0.0.0": { 2156 | "type": "referenceassembly", 2157 | "serviceable": false, 2158 | "sha512": "" 2159 | }, 2160 | "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": { 2161 | "type": "referenceassembly", 2162 | "serviceable": false, 2163 | "sha512": "" 2164 | }, 2165 | "Microsoft.AspNetCore.Authorization/5.0.0.0": { 2166 | "type": "referenceassembly", 2167 | "serviceable": false, 2168 | "sha512": "" 2169 | }, 2170 | "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": { 2171 | "type": "referenceassembly", 2172 | "serviceable": false, 2173 | "sha512": "" 2174 | }, 2175 | "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": { 2176 | "type": "referenceassembly", 2177 | "serviceable": false, 2178 | "sha512": "" 2179 | }, 2180 | "Microsoft.AspNetCore.Components/5.0.0.0": { 2181 | "type": "referenceassembly", 2182 | "serviceable": false, 2183 | "sha512": "" 2184 | }, 2185 | "Microsoft.AspNetCore.Components.Forms/5.0.0.0": { 2186 | "type": "referenceassembly", 2187 | "serviceable": false, 2188 | "sha512": "" 2189 | }, 2190 | "Microsoft.AspNetCore.Components.Server/5.0.0.0": { 2191 | "type": "referenceassembly", 2192 | "serviceable": false, 2193 | "sha512": "" 2194 | }, 2195 | "Microsoft.AspNetCore.Components.Web/5.0.0.0": { 2196 | "type": "referenceassembly", 2197 | "serviceable": false, 2198 | "sha512": "" 2199 | }, 2200 | "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": { 2201 | "type": "referenceassembly", 2202 | "serviceable": false, 2203 | "sha512": "" 2204 | }, 2205 | "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": { 2206 | "type": "referenceassembly", 2207 | "serviceable": false, 2208 | "sha512": "" 2209 | }, 2210 | "Microsoft.AspNetCore.Cors/5.0.0.0": { 2211 | "type": "referenceassembly", 2212 | "serviceable": false, 2213 | "sha512": "" 2214 | }, 2215 | "Microsoft.AspNetCore.Cryptography.Internal/5.0.0.0": { 2216 | "type": "referenceassembly", 2217 | "serviceable": false, 2218 | "sha512": "" 2219 | }, 2220 | "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.0.0": { 2221 | "type": "referenceassembly", 2222 | "serviceable": false, 2223 | "sha512": "" 2224 | }, 2225 | "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": { 2226 | "type": "referenceassembly", 2227 | "serviceable": false, 2228 | "sha512": "" 2229 | }, 2230 | "Microsoft.AspNetCore.DataProtection/5.0.0.0": { 2231 | "type": "referenceassembly", 2232 | "serviceable": false, 2233 | "sha512": "" 2234 | }, 2235 | "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": { 2236 | "type": "referenceassembly", 2237 | "serviceable": false, 2238 | "sha512": "" 2239 | }, 2240 | "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": { 2241 | "type": "referenceassembly", 2242 | "serviceable": false, 2243 | "sha512": "" 2244 | }, 2245 | "Microsoft.AspNetCore.Diagnostics/5.0.0.0": { 2246 | "type": "referenceassembly", 2247 | "serviceable": false, 2248 | "sha512": "" 2249 | }, 2250 | "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": { 2251 | "type": "referenceassembly", 2252 | "serviceable": false, 2253 | "sha512": "" 2254 | }, 2255 | "Microsoft.AspNetCore/5.0.0.0": { 2256 | "type": "referenceassembly", 2257 | "serviceable": false, 2258 | "sha512": "" 2259 | }, 2260 | "Microsoft.AspNetCore.HostFiltering/5.0.0.0": { 2261 | "type": "referenceassembly", 2262 | "serviceable": false, 2263 | "sha512": "" 2264 | }, 2265 | "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": { 2266 | "type": "referenceassembly", 2267 | "serviceable": false, 2268 | "sha512": "" 2269 | }, 2270 | "Microsoft.AspNetCore.Hosting/5.0.0.0": { 2271 | "type": "referenceassembly", 2272 | "serviceable": false, 2273 | "sha512": "" 2274 | }, 2275 | "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": { 2276 | "type": "referenceassembly", 2277 | "serviceable": false, 2278 | "sha512": "" 2279 | }, 2280 | "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": { 2281 | "type": "referenceassembly", 2282 | "serviceable": false, 2283 | "sha512": "" 2284 | }, 2285 | "Microsoft.AspNetCore.Http.Abstractions/5.0.0.0": { 2286 | "type": "referenceassembly", 2287 | "serviceable": false, 2288 | "sha512": "" 2289 | }, 2290 | "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": { 2291 | "type": "referenceassembly", 2292 | "serviceable": false, 2293 | "sha512": "" 2294 | }, 2295 | "Microsoft.AspNetCore.Http.Connections/5.0.0.0": { 2296 | "type": "referenceassembly", 2297 | "serviceable": false, 2298 | "sha512": "" 2299 | }, 2300 | "Microsoft.AspNetCore.Http/5.0.0.0": { 2301 | "type": "referenceassembly", 2302 | "serviceable": false, 2303 | "sha512": "" 2304 | }, 2305 | "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": { 2306 | "type": "referenceassembly", 2307 | "serviceable": false, 2308 | "sha512": "" 2309 | }, 2310 | "Microsoft.AspNetCore.Http.Features/5.0.0.0": { 2311 | "type": "referenceassembly", 2312 | "serviceable": false, 2313 | "sha512": "" 2314 | }, 2315 | "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": { 2316 | "type": "referenceassembly", 2317 | "serviceable": false, 2318 | "sha512": "" 2319 | }, 2320 | "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": { 2321 | "type": "referenceassembly", 2322 | "serviceable": false, 2323 | "sha512": "" 2324 | }, 2325 | "Microsoft.AspNetCore.Identity/5.0.0.0": { 2326 | "type": "referenceassembly", 2327 | "serviceable": false, 2328 | "sha512": "" 2329 | }, 2330 | "Microsoft.AspNetCore.Localization/5.0.0.0": { 2331 | "type": "referenceassembly", 2332 | "serviceable": false, 2333 | "sha512": "" 2334 | }, 2335 | "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": { 2336 | "type": "referenceassembly", 2337 | "serviceable": false, 2338 | "sha512": "" 2339 | }, 2340 | "Microsoft.AspNetCore.Metadata/5.0.0.0": { 2341 | "type": "referenceassembly", 2342 | "serviceable": false, 2343 | "sha512": "" 2344 | }, 2345 | "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": { 2346 | "type": "referenceassembly", 2347 | "serviceable": false, 2348 | "sha512": "" 2349 | }, 2350 | "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": { 2351 | "type": "referenceassembly", 2352 | "serviceable": false, 2353 | "sha512": "" 2354 | }, 2355 | "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": { 2356 | "type": "referenceassembly", 2357 | "serviceable": false, 2358 | "sha512": "" 2359 | }, 2360 | "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": { 2361 | "type": "referenceassembly", 2362 | "serviceable": false, 2363 | "sha512": "" 2364 | }, 2365 | "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": { 2366 | "type": "referenceassembly", 2367 | "serviceable": false, 2368 | "sha512": "" 2369 | }, 2370 | "Microsoft.AspNetCore.Mvc/5.0.0.0": { 2371 | "type": "referenceassembly", 2372 | "serviceable": false, 2373 | "sha512": "" 2374 | }, 2375 | "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": { 2376 | "type": "referenceassembly", 2377 | "serviceable": false, 2378 | "sha512": "" 2379 | }, 2380 | "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": { 2381 | "type": "referenceassembly", 2382 | "serviceable": false, 2383 | "sha512": "" 2384 | }, 2385 | "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": { 2386 | "type": "referenceassembly", 2387 | "serviceable": false, 2388 | "sha512": "" 2389 | }, 2390 | "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": { 2391 | "type": "referenceassembly", 2392 | "serviceable": false, 2393 | "sha512": "" 2394 | }, 2395 | "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": { 2396 | "type": "referenceassembly", 2397 | "serviceable": false, 2398 | "sha512": "" 2399 | }, 2400 | "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": { 2401 | "type": "referenceassembly", 2402 | "serviceable": false, 2403 | "sha512": "" 2404 | }, 2405 | "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": { 2406 | "type": "referenceassembly", 2407 | "serviceable": false, 2408 | "sha512": "" 2409 | }, 2410 | "Microsoft.AspNetCore.Razor/5.0.0.0": { 2411 | "type": "referenceassembly", 2412 | "serviceable": false, 2413 | "sha512": "" 2414 | }, 2415 | "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": { 2416 | "type": "referenceassembly", 2417 | "serviceable": false, 2418 | "sha512": "" 2419 | }, 2420 | "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": { 2421 | "type": "referenceassembly", 2422 | "serviceable": false, 2423 | "sha512": "" 2424 | }, 2425 | "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": { 2426 | "type": "referenceassembly", 2427 | "serviceable": false, 2428 | "sha512": "" 2429 | }, 2430 | "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": { 2431 | "type": "referenceassembly", 2432 | "serviceable": false, 2433 | "sha512": "" 2434 | }, 2435 | "Microsoft.AspNetCore.Rewrite/5.0.0.0": { 2436 | "type": "referenceassembly", 2437 | "serviceable": false, 2438 | "sha512": "" 2439 | }, 2440 | "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": { 2441 | "type": "referenceassembly", 2442 | "serviceable": false, 2443 | "sha512": "" 2444 | }, 2445 | "Microsoft.AspNetCore.Routing/5.0.0.0": { 2446 | "type": "referenceassembly", 2447 | "serviceable": false, 2448 | "sha512": "" 2449 | }, 2450 | "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": { 2451 | "type": "referenceassembly", 2452 | "serviceable": false, 2453 | "sha512": "" 2454 | }, 2455 | "Microsoft.AspNetCore.Server.IIS/5.0.0.0": { 2456 | "type": "referenceassembly", 2457 | "serviceable": false, 2458 | "sha512": "" 2459 | }, 2460 | "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": { 2461 | "type": "referenceassembly", 2462 | "serviceable": false, 2463 | "sha512": "" 2464 | }, 2465 | "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": { 2466 | "type": "referenceassembly", 2467 | "serviceable": false, 2468 | "sha512": "" 2469 | }, 2470 | "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": { 2471 | "type": "referenceassembly", 2472 | "serviceable": false, 2473 | "sha512": "" 2474 | }, 2475 | "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": { 2476 | "type": "referenceassembly", 2477 | "serviceable": false, 2478 | "sha512": "" 2479 | }, 2480 | "Microsoft.AspNetCore.Session/5.0.0.0": { 2481 | "type": "referenceassembly", 2482 | "serviceable": false, 2483 | "sha512": "" 2484 | }, 2485 | "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": { 2486 | "type": "referenceassembly", 2487 | "serviceable": false, 2488 | "sha512": "" 2489 | }, 2490 | "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": { 2491 | "type": "referenceassembly", 2492 | "serviceable": false, 2493 | "sha512": "" 2494 | }, 2495 | "Microsoft.AspNetCore.SignalR/5.0.0.0": { 2496 | "type": "referenceassembly", 2497 | "serviceable": false, 2498 | "sha512": "" 2499 | }, 2500 | "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": { 2501 | "type": "referenceassembly", 2502 | "serviceable": false, 2503 | "sha512": "" 2504 | }, 2505 | "Microsoft.AspNetCore.StaticFiles/5.0.0.0": { 2506 | "type": "referenceassembly", 2507 | "serviceable": false, 2508 | "sha512": "" 2509 | }, 2510 | "Microsoft.AspNetCore.WebSockets/5.0.0.0": { 2511 | "type": "referenceassembly", 2512 | "serviceable": false, 2513 | "sha512": "" 2514 | }, 2515 | "Microsoft.AspNetCore.WebUtilities/5.0.0.0": { 2516 | "type": "referenceassembly", 2517 | "serviceable": false, 2518 | "sha512": "" 2519 | }, 2520 | "Microsoft.CSharp/5.0.0.0": { 2521 | "type": "referenceassembly", 2522 | "serviceable": false, 2523 | "sha512": "" 2524 | }, 2525 | "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { 2526 | "type": "referenceassembly", 2527 | "serviceable": false, 2528 | "sha512": "" 2529 | }, 2530 | "Microsoft.Extensions.Caching.Memory/5.0.0.0": { 2531 | "type": "referenceassembly", 2532 | "serviceable": false, 2533 | "sha512": "" 2534 | }, 2535 | "Microsoft.Extensions.Configuration.Abstractions/5.0.0.0": { 2536 | "type": "referenceassembly", 2537 | "serviceable": false, 2538 | "sha512": "" 2539 | }, 2540 | "Microsoft.Extensions.Configuration.Binder/5.0.0.0": { 2541 | "type": "referenceassembly", 2542 | "serviceable": false, 2543 | "sha512": "" 2544 | }, 2545 | "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": { 2546 | "type": "referenceassembly", 2547 | "serviceable": false, 2548 | "sha512": "" 2549 | }, 2550 | "Microsoft.Extensions.Configuration/5.0.0.0": { 2551 | "type": "referenceassembly", 2552 | "serviceable": false, 2553 | "sha512": "" 2554 | }, 2555 | "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": { 2556 | "type": "referenceassembly", 2557 | "serviceable": false, 2558 | "sha512": "" 2559 | }, 2560 | "Microsoft.Extensions.Configuration.FileExtensions/5.0.0.0": { 2561 | "type": "referenceassembly", 2562 | "serviceable": false, 2563 | "sha512": "" 2564 | }, 2565 | "Microsoft.Extensions.Configuration.Ini/5.0.0.0": { 2566 | "type": "referenceassembly", 2567 | "serviceable": false, 2568 | "sha512": "" 2569 | }, 2570 | "Microsoft.Extensions.Configuration.Json/5.0.0.0": { 2571 | "type": "referenceassembly", 2572 | "serviceable": false, 2573 | "sha512": "" 2574 | }, 2575 | "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": { 2576 | "type": "referenceassembly", 2577 | "serviceable": false, 2578 | "sha512": "" 2579 | }, 2580 | "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": { 2581 | "type": "referenceassembly", 2582 | "serviceable": false, 2583 | "sha512": "" 2584 | }, 2585 | "Microsoft.Extensions.Configuration.Xml/5.0.0.0": { 2586 | "type": "referenceassembly", 2587 | "serviceable": false, 2588 | "sha512": "" 2589 | }, 2590 | "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { 2591 | "type": "referenceassembly", 2592 | "serviceable": false, 2593 | "sha512": "" 2594 | }, 2595 | "Microsoft.Extensions.DependencyInjection/5.0.0.0": { 2596 | "type": "referenceassembly", 2597 | "serviceable": false, 2598 | "sha512": "" 2599 | }, 2600 | "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": { 2601 | "type": "referenceassembly", 2602 | "serviceable": false, 2603 | "sha512": "" 2604 | }, 2605 | "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": { 2606 | "type": "referenceassembly", 2607 | "serviceable": false, 2608 | "sha512": "" 2609 | }, 2610 | "Microsoft.Extensions.FileProviders.Abstractions/5.0.0.0": { 2611 | "type": "referenceassembly", 2612 | "serviceable": false, 2613 | "sha512": "" 2614 | }, 2615 | "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": { 2616 | "type": "referenceassembly", 2617 | "serviceable": false, 2618 | "sha512": "" 2619 | }, 2620 | "Microsoft.Extensions.FileProviders.Embedded/5.0.0.0": { 2621 | "type": "referenceassembly", 2622 | "serviceable": false, 2623 | "sha512": "" 2624 | }, 2625 | "Microsoft.Extensions.FileProviders.Physical/5.0.0.0": { 2626 | "type": "referenceassembly", 2627 | "serviceable": false, 2628 | "sha512": "" 2629 | }, 2630 | "Microsoft.Extensions.FileSystemGlobbing/5.0.0.0": { 2631 | "type": "referenceassembly", 2632 | "serviceable": false, 2633 | "sha512": "" 2634 | }, 2635 | "Microsoft.Extensions.Hosting.Abstractions/5.0.0.0": { 2636 | "type": "referenceassembly", 2637 | "serviceable": false, 2638 | "sha512": "" 2639 | }, 2640 | "Microsoft.Extensions.Hosting/5.0.0.0": { 2641 | "type": "referenceassembly", 2642 | "serviceable": false, 2643 | "sha512": "" 2644 | }, 2645 | "Microsoft.Extensions.Http/5.0.0.0": { 2646 | "type": "referenceassembly", 2647 | "serviceable": false, 2648 | "sha512": "" 2649 | }, 2650 | "Microsoft.Extensions.Identity.Core/5.0.0.0": { 2651 | "type": "referenceassembly", 2652 | "serviceable": false, 2653 | "sha512": "" 2654 | }, 2655 | "Microsoft.Extensions.Identity.Stores/5.0.0.0": { 2656 | "type": "referenceassembly", 2657 | "serviceable": false, 2658 | "sha512": "" 2659 | }, 2660 | "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": { 2661 | "type": "referenceassembly", 2662 | "serviceable": false, 2663 | "sha512": "" 2664 | }, 2665 | "Microsoft.Extensions.Localization/5.0.0.0": { 2666 | "type": "referenceassembly", 2667 | "serviceable": false, 2668 | "sha512": "" 2669 | }, 2670 | "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { 2671 | "type": "referenceassembly", 2672 | "serviceable": false, 2673 | "sha512": "" 2674 | }, 2675 | "Microsoft.Extensions.Logging.Configuration/5.0.0.0": { 2676 | "type": "referenceassembly", 2677 | "serviceable": false, 2678 | "sha512": "" 2679 | }, 2680 | "Microsoft.Extensions.Logging.Console/5.0.0.0": { 2681 | "type": "referenceassembly", 2682 | "serviceable": false, 2683 | "sha512": "" 2684 | }, 2685 | "Microsoft.Extensions.Logging.Debug/5.0.0.0": { 2686 | "type": "referenceassembly", 2687 | "serviceable": false, 2688 | "sha512": "" 2689 | }, 2690 | "Microsoft.Extensions.Logging/5.0.0.0": { 2691 | "type": "referenceassembly", 2692 | "serviceable": false, 2693 | "sha512": "" 2694 | }, 2695 | "Microsoft.Extensions.Logging.EventLog/5.0.0.0": { 2696 | "type": "referenceassembly", 2697 | "serviceable": false, 2698 | "sha512": "" 2699 | }, 2700 | "Microsoft.Extensions.Logging.EventSource/5.0.0.0": { 2701 | "type": "referenceassembly", 2702 | "serviceable": false, 2703 | "sha512": "" 2704 | }, 2705 | "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": { 2706 | "type": "referenceassembly", 2707 | "serviceable": false, 2708 | "sha512": "" 2709 | }, 2710 | "Microsoft.Extensions.ObjectPool/5.0.0.0": { 2711 | "type": "referenceassembly", 2712 | "serviceable": false, 2713 | "sha512": "" 2714 | }, 2715 | "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0.0": { 2716 | "type": "referenceassembly", 2717 | "serviceable": false, 2718 | "sha512": "" 2719 | }, 2720 | "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": { 2721 | "type": "referenceassembly", 2722 | "serviceable": false, 2723 | "sha512": "" 2724 | }, 2725 | "Microsoft.Extensions.Options/5.0.0.0": { 2726 | "type": "referenceassembly", 2727 | "serviceable": false, 2728 | "sha512": "" 2729 | }, 2730 | "Microsoft.Extensions.Primitives/5.0.0.0": { 2731 | "type": "referenceassembly", 2732 | "serviceable": false, 2733 | "sha512": "" 2734 | }, 2735 | "Microsoft.Extensions.WebEncoders/5.0.0.0": { 2736 | "type": "referenceassembly", 2737 | "serviceable": false, 2738 | "sha512": "" 2739 | }, 2740 | "Microsoft.JSInterop/5.0.0.0": { 2741 | "type": "referenceassembly", 2742 | "serviceable": false, 2743 | "sha512": "" 2744 | }, 2745 | "Microsoft.Net.Http.Headers/5.0.0.0": { 2746 | "type": "referenceassembly", 2747 | "serviceable": false, 2748 | "sha512": "" 2749 | }, 2750 | "Microsoft.VisualBasic.Core/10.0.6.0": { 2751 | "type": "referenceassembly", 2752 | "serviceable": false, 2753 | "sha512": "" 2754 | }, 2755 | "Microsoft.VisualBasic/10.0.0.0": { 2756 | "type": "referenceassembly", 2757 | "serviceable": false, 2758 | "sha512": "" 2759 | }, 2760 | "Microsoft.Win32.Primitives/5.0.0.0": { 2761 | "type": "referenceassembly", 2762 | "serviceable": false, 2763 | "sha512": "" 2764 | }, 2765 | "Microsoft.Win32.Registry/5.0.0.0": { 2766 | "type": "referenceassembly", 2767 | "serviceable": false, 2768 | "sha512": "" 2769 | }, 2770 | "mscorlib/4.0.0.0": { 2771 | "type": "referenceassembly", 2772 | "serviceable": false, 2773 | "sha512": "" 2774 | }, 2775 | "netstandard/2.1.0.0": { 2776 | "type": "referenceassembly", 2777 | "serviceable": false, 2778 | "sha512": "" 2779 | }, 2780 | "System.AppContext/5.0.0.0": { 2781 | "type": "referenceassembly", 2782 | "serviceable": false, 2783 | "sha512": "" 2784 | }, 2785 | "System.Buffers/5.0.0.0": { 2786 | "type": "referenceassembly", 2787 | "serviceable": false, 2788 | "sha512": "" 2789 | }, 2790 | "System.Collections.Concurrent/5.0.0.0": { 2791 | "type": "referenceassembly", 2792 | "serviceable": false, 2793 | "sha512": "" 2794 | }, 2795 | "System.Collections/5.0.0.0": { 2796 | "type": "referenceassembly", 2797 | "serviceable": false, 2798 | "sha512": "" 2799 | }, 2800 | "System.Collections.Immutable/5.0.0.0": { 2801 | "type": "referenceassembly", 2802 | "serviceable": false, 2803 | "sha512": "" 2804 | }, 2805 | "System.Collections.NonGeneric/5.0.0.0": { 2806 | "type": "referenceassembly", 2807 | "serviceable": false, 2808 | "sha512": "" 2809 | }, 2810 | "System.Collections.Specialized/5.0.0.0": { 2811 | "type": "referenceassembly", 2812 | "serviceable": false, 2813 | "sha512": "" 2814 | }, 2815 | "System.ComponentModel.Annotations/5.0.0.0": { 2816 | "type": "referenceassembly", 2817 | "serviceable": false, 2818 | "sha512": "" 2819 | }, 2820 | "System.ComponentModel.DataAnnotations/4.0.0.0": { 2821 | "type": "referenceassembly", 2822 | "serviceable": false, 2823 | "sha512": "" 2824 | }, 2825 | "System.ComponentModel/5.0.0.0": { 2826 | "type": "referenceassembly", 2827 | "serviceable": false, 2828 | "sha512": "" 2829 | }, 2830 | "System.ComponentModel.EventBasedAsync/5.0.0.0": { 2831 | "type": "referenceassembly", 2832 | "serviceable": false, 2833 | "sha512": "" 2834 | }, 2835 | "System.ComponentModel.Primitives/5.0.0.0": { 2836 | "type": "referenceassembly", 2837 | "serviceable": false, 2838 | "sha512": "" 2839 | }, 2840 | "System.ComponentModel.TypeConverter/5.0.0.0": { 2841 | "type": "referenceassembly", 2842 | "serviceable": false, 2843 | "sha512": "" 2844 | }, 2845 | "System.Configuration/4.0.0.0": { 2846 | "type": "referenceassembly", 2847 | "serviceable": false, 2848 | "sha512": "" 2849 | }, 2850 | "System.Console/5.0.0.0": { 2851 | "type": "referenceassembly", 2852 | "serviceable": false, 2853 | "sha512": "" 2854 | }, 2855 | "System.Core/4.0.0.0": { 2856 | "type": "referenceassembly", 2857 | "serviceable": false, 2858 | "sha512": "" 2859 | }, 2860 | "System.Data.Common/5.0.0.0": { 2861 | "type": "referenceassembly", 2862 | "serviceable": false, 2863 | "sha512": "" 2864 | }, 2865 | "System.Data.DataSetExtensions/4.0.0.0": { 2866 | "type": "referenceassembly", 2867 | "serviceable": false, 2868 | "sha512": "" 2869 | }, 2870 | "System.Data/4.0.0.0": { 2871 | "type": "referenceassembly", 2872 | "serviceable": false, 2873 | "sha512": "" 2874 | }, 2875 | "System.Diagnostics.Contracts/5.0.0.0": { 2876 | "type": "referenceassembly", 2877 | "serviceable": false, 2878 | "sha512": "" 2879 | }, 2880 | "System.Diagnostics.Debug/5.0.0.0": { 2881 | "type": "referenceassembly", 2882 | "serviceable": false, 2883 | "sha512": "" 2884 | }, 2885 | "System.Diagnostics.DiagnosticSource/5.0.0.0": { 2886 | "type": "referenceassembly", 2887 | "serviceable": false, 2888 | "sha512": "" 2889 | }, 2890 | "System.Diagnostics.EventLog/5.0.0.0": { 2891 | "type": "referenceassembly", 2892 | "serviceable": false, 2893 | "sha512": "" 2894 | }, 2895 | "System.Diagnostics.FileVersionInfo/5.0.0.0": { 2896 | "type": "referenceassembly", 2897 | "serviceable": false, 2898 | "sha512": "" 2899 | }, 2900 | "System.Diagnostics.Process/5.0.0.0": { 2901 | "type": "referenceassembly", 2902 | "serviceable": false, 2903 | "sha512": "" 2904 | }, 2905 | "System.Diagnostics.StackTrace/5.0.0.0": { 2906 | "type": "referenceassembly", 2907 | "serviceable": false, 2908 | "sha512": "" 2909 | }, 2910 | "System.Diagnostics.TextWriterTraceListener/5.0.0.0": { 2911 | "type": "referenceassembly", 2912 | "serviceable": false, 2913 | "sha512": "" 2914 | }, 2915 | "System.Diagnostics.Tools/5.0.0.0": { 2916 | "type": "referenceassembly", 2917 | "serviceable": false, 2918 | "sha512": "" 2919 | }, 2920 | "System.Diagnostics.TraceSource/5.0.0.0": { 2921 | "type": "referenceassembly", 2922 | "serviceable": false, 2923 | "sha512": "" 2924 | }, 2925 | "System.Diagnostics.Tracing/5.0.0.0": { 2926 | "type": "referenceassembly", 2927 | "serviceable": false, 2928 | "sha512": "" 2929 | }, 2930 | "System/4.0.0.0": { 2931 | "type": "referenceassembly", 2932 | "serviceable": false, 2933 | "sha512": "" 2934 | }, 2935 | "System.Drawing/4.0.0.0": { 2936 | "type": "referenceassembly", 2937 | "serviceable": false, 2938 | "sha512": "" 2939 | }, 2940 | "System.Drawing.Primitives/5.0.0.0": { 2941 | "type": "referenceassembly", 2942 | "serviceable": false, 2943 | "sha512": "" 2944 | }, 2945 | "System.Dynamic.Runtime/5.0.0.0": { 2946 | "type": "referenceassembly", 2947 | "serviceable": false, 2948 | "sha512": "" 2949 | }, 2950 | "System.Formats.Asn1/5.0.0.0": { 2951 | "type": "referenceassembly", 2952 | "serviceable": false, 2953 | "sha512": "" 2954 | }, 2955 | "System.Globalization.Calendars/5.0.0.0": { 2956 | "type": "referenceassembly", 2957 | "serviceable": false, 2958 | "sha512": "" 2959 | }, 2960 | "System.Globalization/5.0.0.0": { 2961 | "type": "referenceassembly", 2962 | "serviceable": false, 2963 | "sha512": "" 2964 | }, 2965 | "System.Globalization.Extensions/5.0.0.0": { 2966 | "type": "referenceassembly", 2967 | "serviceable": false, 2968 | "sha512": "" 2969 | }, 2970 | "System.IO.Compression.Brotli/5.0.0.0": { 2971 | "type": "referenceassembly", 2972 | "serviceable": false, 2973 | "sha512": "" 2974 | }, 2975 | "System.IO.Compression/5.0.0.0": { 2976 | "type": "referenceassembly", 2977 | "serviceable": false, 2978 | "sha512": "" 2979 | }, 2980 | "System.IO.Compression.FileSystem/4.0.0.0": { 2981 | "type": "referenceassembly", 2982 | "serviceable": false, 2983 | "sha512": "" 2984 | }, 2985 | "System.IO.Compression.ZipFile/5.0.0.0": { 2986 | "type": "referenceassembly", 2987 | "serviceable": false, 2988 | "sha512": "" 2989 | }, 2990 | "System.IO/5.0.0.0": { 2991 | "type": "referenceassembly", 2992 | "serviceable": false, 2993 | "sha512": "" 2994 | }, 2995 | "System.IO.FileSystem/5.0.0.0": { 2996 | "type": "referenceassembly", 2997 | "serviceable": false, 2998 | "sha512": "" 2999 | }, 3000 | "System.IO.FileSystem.DriveInfo/5.0.0.0": { 3001 | "type": "referenceassembly", 3002 | "serviceable": false, 3003 | "sha512": "" 3004 | }, 3005 | "System.IO.FileSystem.Primitives/5.0.0.0": { 3006 | "type": "referenceassembly", 3007 | "serviceable": false, 3008 | "sha512": "" 3009 | }, 3010 | "System.IO.FileSystem.Watcher/5.0.0.0": { 3011 | "type": "referenceassembly", 3012 | "serviceable": false, 3013 | "sha512": "" 3014 | }, 3015 | "System.IO.IsolatedStorage/5.0.0.0": { 3016 | "type": "referenceassembly", 3017 | "serviceable": false, 3018 | "sha512": "" 3019 | }, 3020 | "System.IO.MemoryMappedFiles/5.0.0.0": { 3021 | "type": "referenceassembly", 3022 | "serviceable": false, 3023 | "sha512": "" 3024 | }, 3025 | "System.IO.Pipelines/5.0.0.0": { 3026 | "type": "referenceassembly", 3027 | "serviceable": false, 3028 | "sha512": "" 3029 | }, 3030 | "System.IO.Pipes/5.0.0.0": { 3031 | "type": "referenceassembly", 3032 | "serviceable": false, 3033 | "sha512": "" 3034 | }, 3035 | "System.IO.UnmanagedMemoryStream/5.0.0.0": { 3036 | "type": "referenceassembly", 3037 | "serviceable": false, 3038 | "sha512": "" 3039 | }, 3040 | "System.Linq/5.0.0.0": { 3041 | "type": "referenceassembly", 3042 | "serviceable": false, 3043 | "sha512": "" 3044 | }, 3045 | "System.Linq.Expressions/5.0.0.0": { 3046 | "type": "referenceassembly", 3047 | "serviceable": false, 3048 | "sha512": "" 3049 | }, 3050 | "System.Linq.Parallel/5.0.0.0": { 3051 | "type": "referenceassembly", 3052 | "serviceable": false, 3053 | "sha512": "" 3054 | }, 3055 | "System.Linq.Queryable/5.0.0.0": { 3056 | "type": "referenceassembly", 3057 | "serviceable": false, 3058 | "sha512": "" 3059 | }, 3060 | "System.Memory/5.0.0.0": { 3061 | "type": "referenceassembly", 3062 | "serviceable": false, 3063 | "sha512": "" 3064 | }, 3065 | "System.Net/4.0.0.0": { 3066 | "type": "referenceassembly", 3067 | "serviceable": false, 3068 | "sha512": "" 3069 | }, 3070 | "System.Net.Http/5.0.0.0": { 3071 | "type": "referenceassembly", 3072 | "serviceable": false, 3073 | "sha512": "" 3074 | }, 3075 | "System.Net.Http.Json/5.0.0.0": { 3076 | "type": "referenceassembly", 3077 | "serviceable": false, 3078 | "sha512": "" 3079 | }, 3080 | "System.Net.HttpListener/5.0.0.0": { 3081 | "type": "referenceassembly", 3082 | "serviceable": false, 3083 | "sha512": "" 3084 | }, 3085 | "System.Net.Mail/5.0.0.0": { 3086 | "type": "referenceassembly", 3087 | "serviceable": false, 3088 | "sha512": "" 3089 | }, 3090 | "System.Net.NameResolution/5.0.0.0": { 3091 | "type": "referenceassembly", 3092 | "serviceable": false, 3093 | "sha512": "" 3094 | }, 3095 | "System.Net.NetworkInformation/5.0.0.0": { 3096 | "type": "referenceassembly", 3097 | "serviceable": false, 3098 | "sha512": "" 3099 | }, 3100 | "System.Net.Ping/5.0.0.0": { 3101 | "type": "referenceassembly", 3102 | "serviceable": false, 3103 | "sha512": "" 3104 | }, 3105 | "System.Net.Primitives/5.0.0.0": { 3106 | "type": "referenceassembly", 3107 | "serviceable": false, 3108 | "sha512": "" 3109 | }, 3110 | "System.Net.Requests/5.0.0.0": { 3111 | "type": "referenceassembly", 3112 | "serviceable": false, 3113 | "sha512": "" 3114 | }, 3115 | "System.Net.Security/5.0.0.0": { 3116 | "type": "referenceassembly", 3117 | "serviceable": false, 3118 | "sha512": "" 3119 | }, 3120 | "System.Net.ServicePoint/5.0.0.0": { 3121 | "type": "referenceassembly", 3122 | "serviceable": false, 3123 | "sha512": "" 3124 | }, 3125 | "System.Net.Sockets/5.0.0.0": { 3126 | "type": "referenceassembly", 3127 | "serviceable": false, 3128 | "sha512": "" 3129 | }, 3130 | "System.Net.WebClient/5.0.0.0": { 3131 | "type": "referenceassembly", 3132 | "serviceable": false, 3133 | "sha512": "" 3134 | }, 3135 | "System.Net.WebHeaderCollection/5.0.0.0": { 3136 | "type": "referenceassembly", 3137 | "serviceable": false, 3138 | "sha512": "" 3139 | }, 3140 | "System.Net.WebProxy/5.0.0.0": { 3141 | "type": "referenceassembly", 3142 | "serviceable": false, 3143 | "sha512": "" 3144 | }, 3145 | "System.Net.WebSockets.Client/5.0.0.0": { 3146 | "type": "referenceassembly", 3147 | "serviceable": false, 3148 | "sha512": "" 3149 | }, 3150 | "System.Net.WebSockets/5.0.0.0": { 3151 | "type": "referenceassembly", 3152 | "serviceable": false, 3153 | "sha512": "" 3154 | }, 3155 | "System.Numerics/4.0.0.0": { 3156 | "type": "referenceassembly", 3157 | "serviceable": false, 3158 | "sha512": "" 3159 | }, 3160 | "System.Numerics.Vectors/5.0.0.0": { 3161 | "type": "referenceassembly", 3162 | "serviceable": false, 3163 | "sha512": "" 3164 | }, 3165 | "System.ObjectModel/5.0.0.0": { 3166 | "type": "referenceassembly", 3167 | "serviceable": false, 3168 | "sha512": "" 3169 | }, 3170 | "System.Reflection.DispatchProxy/5.0.0.0": { 3171 | "type": "referenceassembly", 3172 | "serviceable": false, 3173 | "sha512": "" 3174 | }, 3175 | "System.Reflection/5.0.0.0": { 3176 | "type": "referenceassembly", 3177 | "serviceable": false, 3178 | "sha512": "" 3179 | }, 3180 | "System.Reflection.Emit/5.0.0.0": { 3181 | "type": "referenceassembly", 3182 | "serviceable": false, 3183 | "sha512": "" 3184 | }, 3185 | "System.Reflection.Emit.ILGeneration/5.0.0.0": { 3186 | "type": "referenceassembly", 3187 | "serviceable": false, 3188 | "sha512": "" 3189 | }, 3190 | "System.Reflection.Emit.Lightweight/5.0.0.0": { 3191 | "type": "referenceassembly", 3192 | "serviceable": false, 3193 | "sha512": "" 3194 | }, 3195 | "System.Reflection.Extensions/5.0.0.0": { 3196 | "type": "referenceassembly", 3197 | "serviceable": false, 3198 | "sha512": "" 3199 | }, 3200 | "System.Reflection.Metadata/5.0.0.0": { 3201 | "type": "referenceassembly", 3202 | "serviceable": false, 3203 | "sha512": "" 3204 | }, 3205 | "System.Reflection.Primitives/5.0.0.0": { 3206 | "type": "referenceassembly", 3207 | "serviceable": false, 3208 | "sha512": "" 3209 | }, 3210 | "System.Reflection.TypeExtensions/5.0.0.0": { 3211 | "type": "referenceassembly", 3212 | "serviceable": false, 3213 | "sha512": "" 3214 | }, 3215 | "System.Resources.Reader/5.0.0.0": { 3216 | "type": "referenceassembly", 3217 | "serviceable": false, 3218 | "sha512": "" 3219 | }, 3220 | "System.Resources.ResourceManager/5.0.0.0": { 3221 | "type": "referenceassembly", 3222 | "serviceable": false, 3223 | "sha512": "" 3224 | }, 3225 | "System.Resources.Writer/5.0.0.0": { 3226 | "type": "referenceassembly", 3227 | "serviceable": false, 3228 | "sha512": "" 3229 | }, 3230 | "System.Runtime.CompilerServices.Unsafe/5.0.0.0": { 3231 | "type": "referenceassembly", 3232 | "serviceable": false, 3233 | "sha512": "" 3234 | }, 3235 | "System.Runtime.CompilerServices.VisualC/5.0.0.0": { 3236 | "type": "referenceassembly", 3237 | "serviceable": false, 3238 | "sha512": "" 3239 | }, 3240 | "System.Runtime/5.0.0.0": { 3241 | "type": "referenceassembly", 3242 | "serviceable": false, 3243 | "sha512": "" 3244 | }, 3245 | "System.Runtime.Extensions/5.0.0.0": { 3246 | "type": "referenceassembly", 3247 | "serviceable": false, 3248 | "sha512": "" 3249 | }, 3250 | "System.Runtime.Handles/5.0.0.0": { 3251 | "type": "referenceassembly", 3252 | "serviceable": false, 3253 | "sha512": "" 3254 | }, 3255 | "System.Runtime.InteropServices/5.0.0.0": { 3256 | "type": "referenceassembly", 3257 | "serviceable": false, 3258 | "sha512": "" 3259 | }, 3260 | "System.Runtime.InteropServices.RuntimeInformation/5.0.0.0": { 3261 | "type": "referenceassembly", 3262 | "serviceable": false, 3263 | "sha512": "" 3264 | }, 3265 | "System.Runtime.Intrinsics/5.0.0.0": { 3266 | "type": "referenceassembly", 3267 | "serviceable": false, 3268 | "sha512": "" 3269 | }, 3270 | "System.Runtime.Loader/5.0.0.0": { 3271 | "type": "referenceassembly", 3272 | "serviceable": false, 3273 | "sha512": "" 3274 | }, 3275 | "System.Runtime.Numerics/5.0.0.0": { 3276 | "type": "referenceassembly", 3277 | "serviceable": false, 3278 | "sha512": "" 3279 | }, 3280 | "System.Runtime.Serialization/4.0.0.0": { 3281 | "type": "referenceassembly", 3282 | "serviceable": false, 3283 | "sha512": "" 3284 | }, 3285 | "System.Runtime.Serialization.Formatters/5.0.0.0": { 3286 | "type": "referenceassembly", 3287 | "serviceable": false, 3288 | "sha512": "" 3289 | }, 3290 | "System.Runtime.Serialization.Json/5.0.0.0": { 3291 | "type": "referenceassembly", 3292 | "serviceable": false, 3293 | "sha512": "" 3294 | }, 3295 | "System.Runtime.Serialization.Primitives/5.0.0.0": { 3296 | "type": "referenceassembly", 3297 | "serviceable": false, 3298 | "sha512": "" 3299 | }, 3300 | "System.Runtime.Serialization.Xml/5.0.0.0": { 3301 | "type": "referenceassembly", 3302 | "serviceable": false, 3303 | "sha512": "" 3304 | }, 3305 | "System.Security.AccessControl/5.0.0.0": { 3306 | "type": "referenceassembly", 3307 | "serviceable": false, 3308 | "sha512": "" 3309 | }, 3310 | "System.Security.Claims/5.0.0.0": { 3311 | "type": "referenceassembly", 3312 | "serviceable": false, 3313 | "sha512": "" 3314 | }, 3315 | "System.Security.Cryptography.Algorithms/5.0.0.0": { 3316 | "type": "referenceassembly", 3317 | "serviceable": false, 3318 | "sha512": "" 3319 | }, 3320 | "System.Security.Cryptography.Cng/5.0.0.0": { 3321 | "type": "referenceassembly", 3322 | "serviceable": false, 3323 | "sha512": "" 3324 | }, 3325 | "System.Security.Cryptography.Csp/5.0.0.0": { 3326 | "type": "referenceassembly", 3327 | "serviceable": false, 3328 | "sha512": "" 3329 | }, 3330 | "System.Security.Cryptography.Encoding/5.0.0.0": { 3331 | "type": "referenceassembly", 3332 | "serviceable": false, 3333 | "sha512": "" 3334 | }, 3335 | "System.Security.Cryptography.Primitives/5.0.0.0": { 3336 | "type": "referenceassembly", 3337 | "serviceable": false, 3338 | "sha512": "" 3339 | }, 3340 | "System.Security.Cryptography.X509Certificates/5.0.0.0": { 3341 | "type": "referenceassembly", 3342 | "serviceable": false, 3343 | "sha512": "" 3344 | }, 3345 | "System.Security.Cryptography.Xml/5.0.0.0": { 3346 | "type": "referenceassembly", 3347 | "serviceable": false, 3348 | "sha512": "" 3349 | }, 3350 | "System.Security/4.0.0.0": { 3351 | "type": "referenceassembly", 3352 | "serviceable": false, 3353 | "sha512": "" 3354 | }, 3355 | "System.Security.Permissions/5.0.0.0": { 3356 | "type": "referenceassembly", 3357 | "serviceable": false, 3358 | "sha512": "" 3359 | }, 3360 | "System.Security.Principal/5.0.0.0": { 3361 | "type": "referenceassembly", 3362 | "serviceable": false, 3363 | "sha512": "" 3364 | }, 3365 | "System.Security.Principal.Windows/5.0.0.0": { 3366 | "type": "referenceassembly", 3367 | "serviceable": false, 3368 | "sha512": "" 3369 | }, 3370 | "System.Security.SecureString/5.0.0.0": { 3371 | "type": "referenceassembly", 3372 | "serviceable": false, 3373 | "sha512": "" 3374 | }, 3375 | "System.ServiceModel.Web/4.0.0.0": { 3376 | "type": "referenceassembly", 3377 | "serviceable": false, 3378 | "sha512": "" 3379 | }, 3380 | "System.ServiceProcess/4.0.0.0": { 3381 | "type": "referenceassembly", 3382 | "serviceable": false, 3383 | "sha512": "" 3384 | }, 3385 | "System.Text.Encoding.CodePages/5.0.0.0": { 3386 | "type": "referenceassembly", 3387 | "serviceable": false, 3388 | "sha512": "" 3389 | }, 3390 | "System.Text.Encoding/5.0.0.0": { 3391 | "type": "referenceassembly", 3392 | "serviceable": false, 3393 | "sha512": "" 3394 | }, 3395 | "System.Text.Encoding.Extensions/5.0.0.0": { 3396 | "type": "referenceassembly", 3397 | "serviceable": false, 3398 | "sha512": "" 3399 | }, 3400 | "System.Text.Encodings.Web/5.0.0.0": { 3401 | "type": "referenceassembly", 3402 | "serviceable": false, 3403 | "sha512": "" 3404 | }, 3405 | "System.Text.Json/5.0.0.0": { 3406 | "type": "referenceassembly", 3407 | "serviceable": false, 3408 | "sha512": "" 3409 | }, 3410 | "System.Text.RegularExpressions/5.0.0.0": { 3411 | "type": "referenceassembly", 3412 | "serviceable": false, 3413 | "sha512": "" 3414 | }, 3415 | "System.Threading.Channels/5.0.0.0": { 3416 | "type": "referenceassembly", 3417 | "serviceable": false, 3418 | "sha512": "" 3419 | }, 3420 | "System.Threading/5.0.0.0": { 3421 | "type": "referenceassembly", 3422 | "serviceable": false, 3423 | "sha512": "" 3424 | }, 3425 | "System.Threading.Overlapped/5.0.0.0": { 3426 | "type": "referenceassembly", 3427 | "serviceable": false, 3428 | "sha512": "" 3429 | }, 3430 | "System.Threading.Tasks.Dataflow/5.0.0.0": { 3431 | "type": "referenceassembly", 3432 | "serviceable": false, 3433 | "sha512": "" 3434 | }, 3435 | "System.Threading.Tasks/5.0.0.0": { 3436 | "type": "referenceassembly", 3437 | "serviceable": false, 3438 | "sha512": "" 3439 | }, 3440 | "System.Threading.Tasks.Extensions/5.0.0.0": { 3441 | "type": "referenceassembly", 3442 | "serviceable": false, 3443 | "sha512": "" 3444 | }, 3445 | "System.Threading.Tasks.Parallel/5.0.0.0": { 3446 | "type": "referenceassembly", 3447 | "serviceable": false, 3448 | "sha512": "" 3449 | }, 3450 | "System.Threading.Thread/5.0.0.0": { 3451 | "type": "referenceassembly", 3452 | "serviceable": false, 3453 | "sha512": "" 3454 | }, 3455 | "System.Threading.ThreadPool/5.0.0.0": { 3456 | "type": "referenceassembly", 3457 | "serviceable": false, 3458 | "sha512": "" 3459 | }, 3460 | "System.Threading.Timer/5.0.0.0": { 3461 | "type": "referenceassembly", 3462 | "serviceable": false, 3463 | "sha512": "" 3464 | }, 3465 | "System.Transactions/4.0.0.0": { 3466 | "type": "referenceassembly", 3467 | "serviceable": false, 3468 | "sha512": "" 3469 | }, 3470 | "System.Transactions.Local/5.0.0.0": { 3471 | "type": "referenceassembly", 3472 | "serviceable": false, 3473 | "sha512": "" 3474 | }, 3475 | "System.ValueTuple/4.0.3.0": { 3476 | "type": "referenceassembly", 3477 | "serviceable": false, 3478 | "sha512": "" 3479 | }, 3480 | "System.Web/4.0.0.0": { 3481 | "type": "referenceassembly", 3482 | "serviceable": false, 3483 | "sha512": "" 3484 | }, 3485 | "System.Web.HttpUtility/5.0.0.0": { 3486 | "type": "referenceassembly", 3487 | "serviceable": false, 3488 | "sha512": "" 3489 | }, 3490 | "System.Windows/4.0.0.0": { 3491 | "type": "referenceassembly", 3492 | "serviceable": false, 3493 | "sha512": "" 3494 | }, 3495 | "System.Windows.Extensions/5.0.0.0": { 3496 | "type": "referenceassembly", 3497 | "serviceable": false, 3498 | "sha512": "" 3499 | }, 3500 | "System.Xml/4.0.0.0": { 3501 | "type": "referenceassembly", 3502 | "serviceable": false, 3503 | "sha512": "" 3504 | }, 3505 | "System.Xml.Linq/4.0.0.0": { 3506 | "type": "referenceassembly", 3507 | "serviceable": false, 3508 | "sha512": "" 3509 | }, 3510 | "System.Xml.ReaderWriter/5.0.0.0": { 3511 | "type": "referenceassembly", 3512 | "serviceable": false, 3513 | "sha512": "" 3514 | }, 3515 | "System.Xml.Serialization/4.0.0.0": { 3516 | "type": "referenceassembly", 3517 | "serviceable": false, 3518 | "sha512": "" 3519 | }, 3520 | "System.Xml.XDocument/5.0.0.0": { 3521 | "type": "referenceassembly", 3522 | "serviceable": false, 3523 | "sha512": "" 3524 | }, 3525 | "System.Xml.XmlDocument/5.0.0.0": { 3526 | "type": "referenceassembly", 3527 | "serviceable": false, 3528 | "sha512": "" 3529 | }, 3530 | "System.Xml.XmlSerializer/5.0.0.0": { 3531 | "type": "referenceassembly", 3532 | "serviceable": false, 3533 | "sha512": "" 3534 | }, 3535 | "System.Xml.XPath/5.0.0.0": { 3536 | "type": "referenceassembly", 3537 | "serviceable": false, 3538 | "sha512": "" 3539 | }, 3540 | "System.Xml.XPath.XDocument/5.0.0.0": { 3541 | "type": "referenceassembly", 3542 | "serviceable": false, 3543 | "sha512": "" 3544 | }, 3545 | "WindowsBase/4.0.0.0": { 3546 | "type": "referenceassembly", 3547 | "serviceable": false, 3548 | "sha512": "" 3549 | } 3550 | } 3551 | } -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ResponseService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/ResponseService.dll -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ResponseService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/ResponseService.exe -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ResponseService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/ResponseService.pdb -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ResponseService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\lesja\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\lesja\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 7 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ResponseService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "5.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true, 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /ResponseService/bin/Debug/net5.0/ref/ResponseService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/bin/Debug/net5.0/ref/ResponseService.dll -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("ResponseService")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("ResponseService")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("ResponseService")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 88dd16716c69dc39eb33624f355db2b22d963556 2 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net5.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.PublishSingleFile = 7 | build_property.IncludeAllContentForSelfExtract = 8 | build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 9 | build_property.RootNamespace = ResponseService 10 | build_property.ProjectDir = D:\Polly\ResponseService\ 11 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/ResponseService.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 14 | 15 | // Generated by the MSBuild WriteCodeFragment class. 16 | 17 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 6a951ed926d8dab707f77c06cf6bdaa9b52955fe 2 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/ResponseService.assets.cache -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/ResponseService.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4087521c5070f1f6b16deff4df2ee1a92b2b0a86 2 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Polly\ResponseService\bin\Debug\net5.0\appsettings.Development.json 2 | D:\Polly\ResponseService\bin\Debug\net5.0\appsettings.json 3 | D:\Polly\ResponseService\bin\Debug\net5.0\ResponseService.exe 4 | D:\Polly\ResponseService\bin\Debug\net5.0\ResponseService.deps.json 5 | D:\Polly\ResponseService\bin\Debug\net5.0\ResponseService.runtimeconfig.json 6 | D:\Polly\ResponseService\bin\Debug\net5.0\ResponseService.runtimeconfig.dev.json 7 | D:\Polly\ResponseService\bin\Debug\net5.0\ResponseService.dll 8 | D:\Polly\ResponseService\bin\Debug\net5.0\ref\ResponseService.dll 9 | D:\Polly\ResponseService\bin\Debug\net5.0\ResponseService.pdb 10 | D:\Polly\ResponseService\bin\Debug\net5.0\Microsoft.OpenApi.dll 11 | D:\Polly\ResponseService\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll 12 | D:\Polly\ResponseService\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll 13 | D:\Polly\ResponseService\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll 14 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.csproj.AssemblyReference.cache 15 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.GeneratedMSBuildEditorConfig.editorconfig 16 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.AssemblyInfoInputs.cache 17 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.AssemblyInfo.cs 18 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.csproj.CoreCompileInputs.cache 19 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.MvcApplicationPartsAssemblyInfo.cs 20 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.MvcApplicationPartsAssemblyInfo.cache 21 | D:\Polly\ResponseService\obj\Debug\net5.0\staticwebassets\ResponseService.StaticWebAssets.Manifest.cache 22 | D:\Polly\ResponseService\obj\Debug\net5.0\staticwebassets\ResponseService.StaticWebAssets.xml 23 | D:\Polly\ResponseService\obj\Debug\net5.0\scopedcss\bundle\ResponseService.styles.css 24 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.RazorTargetAssemblyInfo.cache 25 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.dll 26 | D:\Polly\ResponseService\obj\Debug\net5.0\ref\ResponseService.dll 27 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.pdb 28 | D:\Polly\ResponseService\obj\Debug\net5.0\ResponseService.genruntimeconfig.cache 29 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/ResponseService.dll -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | a073e6a4e61f630f823fea5b3a4cd192dde68f19 2 | -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ResponseService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/ResponseService.pdb -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/ref/ResponseService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/ref/ResponseService.dll -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/staticwebassets/ResponseService.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/Polly-Beginners-Guide/cc3f858552e2aa51d2fe19d0fbed7ccb6068c73c/ResponseService/obj/Debug/net5.0/staticwebassets/ResponseService.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /ResponseService/obj/Debug/net5.0/staticwebassets/ResponseService.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ResponseService/obj/ResponseService.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "D:\\Polly\\ResponseService\\ResponseService.csproj": {} 5 | }, 6 | "projects": { 7 | "D:\\Polly\\ResponseService\\ResponseService.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "D:\\Polly\\ResponseService\\ResponseService.csproj", 11 | "projectName": "ResponseService", 12 | "projectPath": "D:\\Polly\\ResponseService\\ResponseService.csproj", 13 | "packagesPath": "C:\\Users\\lesja\\.nuget\\packages\\", 14 | "outputPath": "D:\\Polly\\ResponseService\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 18 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 19 | ], 20 | "configFilePaths": [ 21 | "C:\\Users\\lesja\\AppData\\Roaming\\NuGet\\NuGet.Config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 23 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "net5.0" 27 | ], 28 | "sources": { 29 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "net5.0": { 34 | "targetAlias": "net5.0", 35 | "projectReferences": {} 36 | } 37 | }, 38 | "warningProperties": { 39 | "warnAsError": [ 40 | "NU1605" 41 | ] 42 | } 43 | }, 44 | "frameworks": { 45 | "net5.0": { 46 | "targetAlias": "net5.0", 47 | "dependencies": { 48 | "Swashbuckle.AspNetCore": { 49 | "target": "Package", 50 | "version": "[5.6.3, )" 51 | } 52 | }, 53 | "imports": [ 54 | "net461", 55 | "net462", 56 | "net47", 57 | "net471", 58 | "net472", 59 | "net48" 60 | ], 61 | "assetTargetFallback": true, 62 | "warn": true, 63 | "frameworkReferences": { 64 | "Microsoft.AspNetCore.App": { 65 | "privateAssets": "none" 66 | }, 67 | "Microsoft.NETCore.App": { 68 | "privateAssets": "all" 69 | } 70 | }, 71 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.402\\RuntimeIdentifierGraph.json" 72 | } 73 | } 74 | } 75 | } 76 | } -------------------------------------------------------------------------------- /ResponseService/obj/ResponseService.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\lesja\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.11.1 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 19 | 20 | 21 | 22 | 23 | 24 | 25 | C:\Users\lesja\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 26 | 27 | -------------------------------------------------------------------------------- /ResponseService/obj/ResponseService.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ResponseService/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net5.0": { 5 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 6 | "type": "package", 7 | "build": { 8 | "build/Microsoft.Extensions.ApiDescription.Server.props": {}, 9 | "build/Microsoft.Extensions.ApiDescription.Server.targets": {} 10 | }, 11 | "buildMultiTargeting": { 12 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, 13 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} 14 | } 15 | }, 16 | "Microsoft.OpenApi/1.2.3": { 17 | "type": "package", 18 | "compile": { 19 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 20 | }, 21 | "runtime": { 22 | "lib/netstandard2.0/Microsoft.OpenApi.dll": {} 23 | } 24 | }, 25 | "Swashbuckle.AspNetCore/5.6.3": { 26 | "type": "package", 27 | "dependencies": { 28 | "Microsoft.Extensions.ApiDescription.Server": "3.0.0", 29 | "Swashbuckle.AspNetCore.Swagger": "5.6.3", 30 | "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3", 31 | "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3" 32 | }, 33 | "build": { 34 | "build/Swashbuckle.AspNetCore.props": {} 35 | } 36 | }, 37 | "Swashbuckle.AspNetCore.Swagger/5.6.3": { 38 | "type": "package", 39 | "dependencies": { 40 | "Microsoft.OpenApi": "1.2.3" 41 | }, 42 | "compile": { 43 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} 44 | }, 45 | "runtime": { 46 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} 47 | }, 48 | "frameworkReferences": [ 49 | "Microsoft.AspNetCore.App" 50 | ] 51 | }, 52 | "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { 53 | "type": "package", 54 | "dependencies": { 55 | "Swashbuckle.AspNetCore.Swagger": "5.6.3" 56 | }, 57 | "compile": { 58 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 59 | }, 60 | "runtime": { 61 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} 62 | }, 63 | "frameworkReferences": [ 64 | "Microsoft.AspNetCore.App" 65 | ] 66 | }, 67 | "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { 68 | "type": "package", 69 | "compile": { 70 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 71 | }, 72 | "runtime": { 73 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} 74 | }, 75 | "frameworkReferences": [ 76 | "Microsoft.AspNetCore.App" 77 | ] 78 | } 79 | } 80 | }, 81 | "libraries": { 82 | "Microsoft.Extensions.ApiDescription.Server/3.0.0": { 83 | "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", 84 | "type": "package", 85 | "path": "microsoft.extensions.apidescription.server/3.0.0", 86 | "hasTools": true, 87 | "files": [ 88 | ".nupkg.metadata", 89 | ".signature.p7s", 90 | "build/Microsoft.Extensions.ApiDescription.Server.props", 91 | "build/Microsoft.Extensions.ApiDescription.Server.targets", 92 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", 93 | "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", 94 | "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 95 | "microsoft.extensions.apidescription.server.nuspec", 96 | "tools/Newtonsoft.Json.dll", 97 | "tools/dotnet-getdocument.deps.json", 98 | "tools/dotnet-getdocument.dll", 99 | "tools/dotnet-getdocument.runtimeconfig.json", 100 | "tools/net461-x86/GetDocument.Insider.exe", 101 | "tools/net461-x86/GetDocument.Insider.exe.config", 102 | "tools/net461/GetDocument.Insider.exe", 103 | "tools/net461/GetDocument.Insider.exe.config", 104 | "tools/netcoreapp2.1/GetDocument.Insider.deps.json", 105 | "tools/netcoreapp2.1/GetDocument.Insider.dll", 106 | "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" 107 | ] 108 | }, 109 | "Microsoft.OpenApi/1.2.3": { 110 | "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", 111 | "type": "package", 112 | "path": "microsoft.openapi/1.2.3", 113 | "files": [ 114 | ".nupkg.metadata", 115 | ".signature.p7s", 116 | "lib/net46/Microsoft.OpenApi.dll", 117 | "lib/net46/Microsoft.OpenApi.pdb", 118 | "lib/net46/Microsoft.OpenApi.xml", 119 | "lib/netstandard2.0/Microsoft.OpenApi.dll", 120 | "lib/netstandard2.0/Microsoft.OpenApi.pdb", 121 | "lib/netstandard2.0/Microsoft.OpenApi.xml", 122 | "microsoft.openapi.1.2.3.nupkg.sha512", 123 | "microsoft.openapi.nuspec" 124 | ] 125 | }, 126 | "Swashbuckle.AspNetCore/5.6.3": { 127 | "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==", 128 | "type": "package", 129 | "path": "swashbuckle.aspnetcore/5.6.3", 130 | "files": [ 131 | ".nupkg.metadata", 132 | ".signature.p7s", 133 | "build/Swashbuckle.AspNetCore.props", 134 | "swashbuckle.aspnetcore.5.6.3.nupkg.sha512", 135 | "swashbuckle.aspnetcore.nuspec" 136 | ] 137 | }, 138 | "Swashbuckle.AspNetCore.Swagger/5.6.3": { 139 | "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", 140 | "type": "package", 141 | "path": "swashbuckle.aspnetcore.swagger/5.6.3", 142 | "files": [ 143 | ".nupkg.metadata", 144 | ".signature.p7s", 145 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", 146 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", 147 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", 148 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", 149 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", 150 | "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", 151 | "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", 152 | "swashbuckle.aspnetcore.swagger.nuspec" 153 | ] 154 | }, 155 | "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { 156 | "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", 157 | "type": "package", 158 | "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", 159 | "files": [ 160 | ".nupkg.metadata", 161 | ".signature.p7s", 162 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 163 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 164 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 165 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", 166 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", 167 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", 168 | "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", 169 | "swashbuckle.aspnetcore.swaggergen.nuspec" 170 | ] 171 | }, 172 | "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { 173 | "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==", 174 | "type": "package", 175 | "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", 176 | "files": [ 177 | ".nupkg.metadata", 178 | ".signature.p7s", 179 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 180 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 181 | "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 182 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", 183 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", 184 | "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", 185 | "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", 186 | "swashbuckle.aspnetcore.swaggerui.nuspec" 187 | ] 188 | } 189 | }, 190 | "projectFileDependencyGroups": { 191 | "net5.0": [ 192 | "Swashbuckle.AspNetCore >= 5.6.3" 193 | ] 194 | }, 195 | "packageFolders": { 196 | "C:\\Users\\lesja\\.nuget\\packages\\": {}, 197 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, 198 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} 199 | }, 200 | "project": { 201 | "version": "1.0.0", 202 | "restore": { 203 | "projectUniqueName": "D:\\Polly\\ResponseService\\ResponseService.csproj", 204 | "projectName": "ResponseService", 205 | "projectPath": "D:\\Polly\\ResponseService\\ResponseService.csproj", 206 | "packagesPath": "C:\\Users\\lesja\\.nuget\\packages\\", 207 | "outputPath": "D:\\Polly\\ResponseService\\obj\\", 208 | "projectStyle": "PackageReference", 209 | "fallbackFolders": [ 210 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", 211 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 212 | ], 213 | "configFilePaths": [ 214 | "C:\\Users\\lesja\\AppData\\Roaming\\NuGet\\NuGet.Config", 215 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 216 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 217 | ], 218 | "originalTargetFrameworks": [ 219 | "net5.0" 220 | ], 221 | "sources": { 222 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 223 | "https://api.nuget.org/v3/index.json": {} 224 | }, 225 | "frameworks": { 226 | "net5.0": { 227 | "targetAlias": "net5.0", 228 | "projectReferences": {} 229 | } 230 | }, 231 | "warningProperties": { 232 | "warnAsError": [ 233 | "NU1605" 234 | ] 235 | } 236 | }, 237 | "frameworks": { 238 | "net5.0": { 239 | "targetAlias": "net5.0", 240 | "dependencies": { 241 | "Swashbuckle.AspNetCore": { 242 | "target": "Package", 243 | "version": "[5.6.3, )" 244 | } 245 | }, 246 | "imports": [ 247 | "net461", 248 | "net462", 249 | "net47", 250 | "net471", 251 | "net472", 252 | "net48" 253 | ], 254 | "assetTargetFallback": true, 255 | "warn": true, 256 | "frameworkReferences": { 257 | "Microsoft.AspNetCore.App": { 258 | "privateAssets": "none" 259 | }, 260 | "Microsoft.NETCore.App": { 261 | "privateAssets": "all" 262 | } 263 | }, 264 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.402\\RuntimeIdentifierGraph.json" 265 | } 266 | } 267 | } 268 | } -------------------------------------------------------------------------------- /ResponseService/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "qRKTpUymtMoZ8J6qTnxu/ARqYiT0rUuLB5XI9rIu38HaoLKPWYT+gaxZLUAel7PYlprDir7BdPyswGlko2kCCA==", 4 | "success": true, 5 | "projectFilePath": "D:\\Polly\\ResponseService\\ResponseService.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 8 | "C:\\Users\\lesja\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", 9 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", 10 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", 11 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", 12 | "C:\\Users\\lesja\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512" 13 | ], 14 | "logs": [] 15 | } --------------------------------------------------------------------------------