diff --git a/Controllers/Personnel.Controller.cs b/Controllers/Personnel.Controller.cs new file mode 100644 index 0000000..61c39f1 --- /dev/null +++ b/Controllers/Personnel.Controller.cs @@ -0,0 +1,125 @@ +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Linq; +using FastReport; +using FastReport.Export.Csv; +using FastReport.Export.Mht; +using FastReport.Export.OoXML; +using FastReport.Export.Pdf; +using Microsoft.AspNetCore.Mvc; +using rmutr_report.Models; +using rmutr_report.Models.Hr; + +namespace rmutr_report.Controllers +{ + + public class PersonnelController : Controller + { + readonly Setting _setting; + + public PersonnelController(Setting setting) + { + this._setting = setting; + } + + [HttpPost, Route("reports/personnel_summary/{type}")] + [ApiExplorerSettings(GroupName = "reports")] + public IActionResult GetHrReport([FromRoute] string type, [FromBody] personnel_summary personnel_summarys) + { + foreach (var v in personnel_summarys.personnel_types) + { + if (v.count != null) + { + var total = personnel_summarys.personnel_types.Select(r => r.count).Sum(t=>t.Value); + personnel_summarys.total_pertype = total; + } + else + { + return null; + } + } + var personnel_summaryss = new List() { personnel_summarys }; + + Report report = new Report(); + report.Load(_setting.report_path + "personnel_summary.frx"); + report.RegisterData(personnel_summaryss, "personnel_summary"); + report.Prepare(); + + MemoryStream stream = new MemoryStream(); + switch (type) + { + case "pdf": + PDFExport pdf = new PDFExport(); + report.Export(pdf, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "application/pdf"); + + case "xls": + Excel2007Export excel = new Excel2007Export(); + report.Export(excel, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "application/vnd.ms-excel"); + break; + case "mht": + MHTExport mht = new MHTExport(); + report.Export(mht, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "multipart/related"); + break; + case "csv": + CSVExport csv = new CSVExport(); + report.Export(csv, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "text/csv"); + break; + } + + return Ok(); + } +[HttpPost, Route("reports/man_power/{type}")] + [ApiExplorerSettings(GroupName = "reports")] + public IActionResult GetManReport([FromRoute] string type, [FromBody] List man_powers) + { + + //var personnel_summaryss = new List() { personnel_summarys }; + + Report report = new Report(); + report.Load(_setting.report_path + "man_power.frx"); + report.RegisterData(man_powers, "man_power"); + report.Prepare(); + + MemoryStream stream = new MemoryStream(); + switch (type) + { + case "pdf": + PDFExport pdf = new PDFExport(); + report.Export(pdf, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "application/pdf"); + + case "xls": + Excel2007Export excel = new Excel2007Export(); + report.Export(excel, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "application/vnd.ms-excel"); + break; + case "mht": + MHTExport mht = new MHTExport(); + report.Export(mht, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "multipart/related"); + break; + case "csv": + CSVExport csv = new CSVExport(); + report.Export(csv, stream); + stream.Seek(0, SeekOrigin.Begin); + return File(stream, "text/csv"); + break; + } + + return Ok(); + } + + } +} \ No newline at end of file diff --git a/Dockerfile.dev b/Dockerfile.dev new file mode 100644 index 0000000..1ea2140 --- /dev/null +++ b/Dockerfile.dev @@ -0,0 +1,23 @@ +FROM mcr.microsoft.com/dotnet/sdk:5.0 as build-env +WORKDIR /source +COPY . . +RUN dotnet restore --configfile nuget.config +RUN dotnet build +RUN dotnet publish -o /publish --configuration Release; + +FROM mcr.microsoft.com/dotnet/sdk:5.0 +COPY . . +RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends apt-utils +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y fontconfig +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libc6-dev +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libgdiplus +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated libx11-dev +RUN DEBIAN_FRONTEND=noninteractive rm -rf /var/lib/apt/lists/* +RUN mkdir -p /usr/local/share/fonts/fonts/sarabun +COPY Fonts/* /usr/local/share/fonts/sarabun/ +RUN chmod 644 /usr/local/share/fonts/sarabun/* +RUN fc-cache -fv +WORKDIR /app +COPY --from=build-env /publish . +ENV ASPNETCORE_URLS http://*:8080 +ENTRYPOINT ["dotnet", "rmutr-report.dll"] diff --git a/Fonts/THSarabunNew Bold.ttf b/Fonts/THSarabunNew Bold.ttf new file mode 100644 index 0000000..a059996 Binary files /dev/null and b/Fonts/THSarabunNew Bold.ttf differ diff --git a/Fonts/THSarabunNew BoldItalic.ttf b/Fonts/THSarabunNew BoldItalic.ttf new file mode 100644 index 0000000..e38f6d2 Binary files /dev/null and b/Fonts/THSarabunNew BoldItalic.ttf differ diff --git a/Fonts/THSarabunNew Italic.ttf b/Fonts/THSarabunNew Italic.ttf new file mode 100644 index 0000000..15312bc Binary files /dev/null and b/Fonts/THSarabunNew Italic.ttf differ diff --git a/Fonts/THSarabunNew.ttf b/Fonts/THSarabunNew.ttf new file mode 100644 index 0000000..13c55ae Binary files /dev/null and b/Fonts/THSarabunNew.ttf differ diff --git a/Fonts/THSarabunPSK Bold Italic.ttf b/Fonts/THSarabunPSK Bold Italic.ttf new file mode 100644 index 0000000..f286d7b Binary files /dev/null and b/Fonts/THSarabunPSK Bold Italic.ttf differ diff --git a/Fonts/THSarabunPSK Bold.ttf b/Fonts/THSarabunPSK Bold.ttf new file mode 100644 index 0000000..4366b43 Binary files /dev/null and b/Fonts/THSarabunPSK Bold.ttf differ diff --git a/Fonts/THSarabunPSK Italic.ttf b/Fonts/THSarabunPSK Italic.ttf new file mode 100644 index 0000000..4be8ad8 Binary files /dev/null and b/Fonts/THSarabunPSK Italic.ttf differ diff --git a/Fonts/THSarabunPSK.ttf b/Fonts/THSarabunPSK.ttf new file mode 100644 index 0000000..23dd82b Binary files /dev/null and b/Fonts/THSarabunPSK.ttf differ diff --git a/Models/Hr/man_power.cs b/Models/Hr/man_power.cs new file mode 100644 index 0000000..582ae97 --- /dev/null +++ b/Models/Hr/man_power.cs @@ -0,0 +1,37 @@ +namespace rmutr_report.Models.Hr +{ + public class man_power + { + public string no { get; set; } + public string agency_name { get; set; } + public int? rate { get; set; } + public int? government_officer_totalrate { get; set; } + public int? government_officer_packing { get; set; } + public int? government_officer_rate { get; set; } + public int? university_staff_totalrate{ get; set; } + public int? university_staff_packing { get; set; } + public int? university_staff_rate { get; set; } + public int? government_employee_totalrate{ get; set; } + public int? government_employee_packing { get; set; } + public int? government_employee_rate { get; set; } + public int? permanent_employee_totalrate{ get; set; } + public int? permanent_employee_support_packing { get; set; } + public int? permanent_employee_support_rate { get; set; } + public int? permanent_employee_field_packing { get; set; } + public int? permanent_employee_field_rate { get; set; } + public int? temporary_worker_land_totalrate { get; set; } + public int? temporary_worker_land_packing { get; set; } + public int? temporary_worker_land_rate { get; set; } + public int? temporary_worker_income_totalrate { get; set; } + public int? temporary_worker_income_support_packing { get; set; } + public int? temporary_worker_income_support_rate { get; set; } + public int? temporary_worker_income_field_packing { get; set; } + public int? temporary_worker_income_field_rate { get; set; } + public int? total_personnel_totalrate { get; set; } + public int? total_personnel_support_packing { get; set; } + public int? total_personnel_support_rate { get; set; } + public int? total_personnel_field_packing { get; set; } + public int? total_personnel_field_rate { get; set; } + public string status { get; set; } + } +} \ No newline at end of file diff --git a/Models/Hr/personnel_summary.cs b/Models/Hr/personnel_summary.cs new file mode 100644 index 0000000..71ff450 --- /dev/null +++ b/Models/Hr/personnel_summary.cs @@ -0,0 +1,44 @@ +using System.Collections.Generic; + +namespace rmutr_report.Models.Hr +{ + public class personnel_summary + { + public string data_date {get; set; } + public int? total_pertype {get; set; } + public List personnel_types {get; set; } + public List lineofworks {get; set; } + public List positions {get; set; } + public List areas {get; set; } + public List qualifications {get; set; } + } + + public class personnel_type + { + public string type_name { get; set; } + public int? count { get; set; } + } + + public class lineofwork + { + public string work_name { get; set; } + public int? count { get; set; } + } + public class position + { + public string position_name { get; set; } + public int? count { get; set; } + } + + public class area + { + public string area_name { get; set; } + public int? count { get; set; } + } + + public class qualification + { + public string qualification_name { get; set; } + public int? count { get; set; } + } +} \ No newline at end of file diff --git a/Models/Setting.cs b/Models/Setting.cs new file mode 100644 index 0000000..0bae47d --- /dev/null +++ b/Models/Setting.cs @@ -0,0 +1,8 @@ +namespace rmutr_report.Models +{ + public class Setting + { + public string report_path { get; set; } + + } +} \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..f5001ba --- /dev/null +++ b/Program.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; + +namespace rmutr_report +{ + public class Program + { + public static void Main(string[] args) + { + CreateHostBuilder(args).Build().Run(); + } + + public static IHostBuilder CreateHostBuilder(string[] args) => + Host.CreateDefaultBuilder(args) + .ConfigureWebHostDefaults(webBuilder => + { + webBuilder.UseStartup(); + }); + } +} diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..195aec2 --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,31 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:33423", + "sslPort": 44365 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "rmutr_report": { + "commandName": "Project", + "dotnetRunMessages": "true", + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:5001;http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/Startup.cs b/Startup.cs new file mode 100644 index 0000000..8c13533 --- /dev/null +++ b/Startup.cs @@ -0,0 +1,106 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Reflection; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.HttpOverrides; +using Microsoft.AspNetCore.HttpsPolicy; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using Microsoft.OpenApi.Models; +using rmutr_report.Models; + +namespace rmutr_report +{ + public class Startup + { + public Startup(IConfiguration configuration) + { + Configuration = configuration; + } + + public IConfiguration Configuration { get; } + + public void ConfigureServices(IServiceCollection services) + { + var _setting = new Setting() + { + report_path = Configuration["Settings:ReportPath"] + + }; + services.AddSingleton(_setting); + services.AddControllers(); + services.AddSwaggerGen(c => + { + c.SwaggerDoc("reports", new OpenApiInfo {Title = "Reports API", Version = "v1"}); + + var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml"; + var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile); + c.IncludeXmlComments(xmlPath); + + // c.MapType(typeof(TimeSpan?), () => new OpenApiSchema + // { + // Type = "string", + // Example = new OpenApiString("09:30:00") + // }); + }); + + services.AddCors(options => + { + options.AddPolicy(name: "AllowAllOrigins", + builder => + { + builder.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod(); + }); + }); + } + + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) + { + app.UseForwardedHeaders(new ForwardedHeadersOptions + { + ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto, + KnownNetworks = + { + new IPNetwork(IPAddress.Any, 0) + } + }); + app.UseSwagger(c => { + c.RouteTemplate = "swagger/{documentName}/swagger.json"; + c.PreSerializeFilters.Add((swaggerDoc, httpReq) => + { + if (!httpReq.Headers.ContainsKey("X-Forwarded-Host")) return; + + var serverUrl = $"{httpReq.Headers["X-Scheme"]}://" + + $"{httpReq.Headers["X-Forwarded-Host"]}" + + $"{httpReq.Headers["X-Forwarded-Prefix"]}"; + swaggerDoc.Servers = new List { new OpenApiServer { Url =serverUrl}};// $"{httpReq.Scheme}://{httpReq.Host.Value}{swaggerBasePath}" } }; + }); + }); + + //Swagger interface + app.UseSwaggerUI(c => + { + c.SwaggerEndpoint("reports/swagger.json", "Reports API v1"); + + c.DefaultModelExpandDepth(0); + c.DefaultModelsExpandDepth(-1); + }); + + app.UseRouting(); + + app.UseAuthorization(); + + app.UseCors("AllowAllOrigins"); + + app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); + } + } +} diff --git a/appsettings.Development.json b/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..7d5ac97 --- /dev/null +++ b/appsettings.json @@ -0,0 +1,14 @@ +{ + "Settings":{ + "ReportPath":"wwwroot/reports/" + + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +} diff --git a/bin/Debug/net5.0/appsettings.Development.json b/bin/Debug/net5.0/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/bin/Debug/net5.0/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/bin/Debug/net5.0/appsettings.json b/bin/Debug/net5.0/appsettings.json new file mode 100644 index 0000000..7d5ac97 --- /dev/null +++ b/bin/Debug/net5.0/appsettings.json @@ -0,0 +1,14 @@ +{ + "Settings":{ + "ReportPath":"wwwroot/reports/" + + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +} diff --git a/bin/Debug/net5.0/font2021.3.0.list b/bin/Debug/net5.0/font2021.3.0.list new file mode 100644 index 0000000..3b8a853 --- /dev/null +++ b/bin/Debug/net5.0/font2021.3.0.list @@ -0,0 +1,488 @@ +JS Chanok C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\JS Chanok Normal.ttf +JS Chulee C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\JS Chulee Regular.ttf +TF Arluck Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TFArluck.ttf +TF Arluck C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TFArluck.ttf +TH Baijam Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Bold Italic.ttf +TH Baijam-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Bold Italic.ttf +TH Baijam Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Italic.ttf +TH Baijam C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam Italic.ttf +TH Baijam Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Baijam.ttf +TH Chakra Petch Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Bold Italic.ttf +TH Chakra Petch-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Bold Italic.ttf +TH Chakra Petch Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Italic.ttf +TH Chakra Petch C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch Italic.ttf +TH Chakra Petch Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Chakra Petch.ttf +TH Charm of AU Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charm of AU.ttf +TH Charm of AU C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charm of AU.ttf +TH Charmonman-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charmonman Bold.ttf +TH Charmonman Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charmonman.ttf +TH Charmonman C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Charmonman.ttf +TH Fah kwang Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Bold Italic.ttf +TH Fah kwang-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Bold Italic.ttf +TH Fah kwang Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Italic.ttf +TH Fah kwang C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang Italic.ttf +TH Fah kwang Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Fahkwang.ttf +TH K2D July8 Bold-B-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold Italic.ttf +TH K2D July8-B-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold Italic.ttf +TH K2D July8 Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold.ttf +TH K2D July8-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Bold.ttf +TH K2D July8 Italic-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Italic.ttf +TH K2D July8-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8 Italic.ttf +TH K2D July8 Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8.ttf +TH K2D July8 C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH K2D July8.ttf +TH Kodchasal Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Bold Italic.ttf +TH Kodchasal-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Bold Italic.ttf +TH Kodchasal Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Italic.ttf +TH Kodchasal C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal Italic.ttf +TH Kodchasal Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Kodchasal.ttf +TH KoHo Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Bold Italic.ttf +TH KoHo-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Bold Italic.ttf +TH KoHo Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Italic.ttf +TH KoHo C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo Italic.ttf +TH KoHo Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH KoHo.ttf +TH Krub Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Bold Italic.ttf +TH Krub-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Bold Italic.ttf +TH Krub Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Italic.ttf +TH Krub C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub Italic.ttf +TH Krub Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Krub.ttf +TH Mali Grade 6 Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Bold Italic.ttf +TH Mali Grade 6-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Bold Italic.ttf +TH Mali Grade 6 Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Italic.ttf +TH Mali Grade 6 C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6 Italic.ttf +TH Mali Grade 6 Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Mali Grade6.ttf +TH Niramit AS Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Bold Italic.ttf +TH Niramit AS-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Bold Italic.ttf +TH Niramit AS Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Italic.ttf +TH Niramit AS C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS Italic.ttf +TH Niramit AS Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Niramit AS.ttf +TH Srisakdi Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi Bold.ttf +TH Srisakdi-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi Bold.ttf +TH Srisakdi Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi.ttf +TH Srisakdi C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\TH Srisakdi.ttf +TH SarabunPSK Bold-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Bold Italic.ttf +TH SarabunPSK-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Bold Italic.ttf +TH SarabunPSK Italic C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Italic.ttf +TH SarabunPSK C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun Italic.ttf +TH SarabunPSK Regular C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabun.ttf +TH Sarabun New-B C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew Bold.ttf +TH Sarabun New-B-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew BoldItalic.ttf +TH Sarabun New-I C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew Italic.ttf +TH Sarabun New C:\Users\Mercedes Benz\AppData\Local\Microsoft\Windows\Fonts\THSarabunNew.ttf +Agency FB-B C:\WINDOWS\Fonts\AGENCYB.TTF +Agency FB C:\WINDOWS\Fonts\AGENCYR.TTF +Algerian C:\WINDOWS\Fonts\ALGER.TTF +Angsana New C:\WINDOWS\Fonts\angsana.ttc +Angsana New-B C:\WINDOWS\Fonts\angsana.ttc +Angsana New-B-I C:\WINDOWS\Fonts\angsana.ttc +Angsana New-I C:\WINDOWS\Fonts\angsana.ttc +AngsanaUPC C:\WINDOWS\Fonts\angsana.ttc +AngsanaUPC-B C:\WINDOWS\Fonts\angsana.ttc +AngsanaUPC-B-I C:\WINDOWS\Fonts\angsana.ttc +AngsanaUPC-I C:\WINDOWS\Fonts\angsana.ttc +Book Antiqua-B C:\WINDOWS\Fonts\ANTQUAB.TTF +Book Antiqua-B-I C:\WINDOWS\Fonts\ANTQUABI.TTF +Book Antiqua-I C:\WINDOWS\Fonts\ANTQUAI.TTF +Arial C:\WINDOWS\Fonts\arial.ttf +Arial-B C:\WINDOWS\Fonts\arialbd.ttf +Arial-B-I C:\WINDOWS\Fonts\arialbi.ttf +Arial-I C:\WINDOWS\Fonts\ariali.ttf +Arial Narrow C:\WINDOWS\Fonts\ARIALN.TTF +Arial Narrow-B C:\WINDOWS\Fonts\ARIALNB.TTF +Arial Narrow-B-I C:\WINDOWS\Fonts\ARIALNBI.TTF +Arial Narrow-I C:\WINDOWS\Fonts\ARIALNI.TTF +Arial Black-B C:\WINDOWS\Fonts\ariblk.ttf +Arial Rounded MT Bold C:\WINDOWS\Fonts\ARLRDBD.TTF +Bahnschrift C:\WINDOWS\Fonts\bahnschrift.ttf +Baskerville Old Face C:\WINDOWS\Fonts\BASKVILL.TTF +Bauhaus 93 C:\WINDOWS\Fonts\BAUHS93.TTF +Bell MT C:\WINDOWS\Fonts\BELL.TTF +Bell MT-B C:\WINDOWS\Fonts\BELLB.TTF +Bell MT-I C:\WINDOWS\Fonts\BELLI.TTF +Bernard MT Condensed C:\WINDOWS\Fonts\BERNHC.TTF +Book Antiqua C:\WINDOWS\Fonts\BKANT.TTF +Bodoni MT-B C:\WINDOWS\Fonts\BOD_B.TTF +Bodoni MT-B-I C:\WINDOWS\Fonts\BOD_BI.TTF +Bodoni MT Black-B-I C:\WINDOWS\Fonts\BOD_BLAI.TTF +Bodoni MT Black-B C:\WINDOWS\Fonts\BOD_BLAR.TTF +Bodoni MT Condensed-B C:\WINDOWS\Fonts\BOD_CB.TTF +Bodoni MT Condensed-B-I C:\WINDOWS\Fonts\BOD_CBI.TTF +Bodoni MT Condensed-I C:\WINDOWS\Fonts\BOD_CI.TTF +Bodoni MT Condensed C:\WINDOWS\Fonts\BOD_CR.TTF +Bodoni MT-I C:\WINDOWS\Fonts\BOD_I.TTF +Bodoni MT Poster C:\WINDOWS\Fonts\BOD_PSTC.TTF +Bodoni MT Poster Compressed C:\WINDOWS\Fonts\BOD_PSTC.TTF +Bodoni MT C:\WINDOWS\Fonts\BOD_R.TTF +Bookman Old Style C:\WINDOWS\Fonts\BOOKOS.TTF +Bookman Old Style-B C:\WINDOWS\Fonts\BOOKOSB.TTF +Bookman Old Style-B-I C:\WINDOWS\Fonts\BOOKOSBI.TTF +Bookman Old Style-I C:\WINDOWS\Fonts\BOOKOSI.TTF +Bradley Hand ITC C:\WINDOWS\Fonts\BRADHITC.TTF +Britannic Bold C:\WINDOWS\Fonts\BRITANIC.TTF +Berlin Sans FB-B C:\WINDOWS\Fonts\BRLNSB.TTF +Berlin Sans FB Demi-B C:\WINDOWS\Fonts\BRLNSDB.TTF +Berlin Sans FB C:\WINDOWS\Fonts\BRLNSR.TTF +Broadway C:\WINDOWS\Fonts\BROADW.TTF +Browallia New C:\WINDOWS\Fonts\browalia.ttc +Browallia New-B C:\WINDOWS\Fonts\browalia.ttc +Browallia New-B-I C:\WINDOWS\Fonts\browalia.ttc +Browallia New-I C:\WINDOWS\Fonts\browalia.ttc +BrowalliaUPC C:\WINDOWS\Fonts\browalia.ttc +BrowalliaUPC-B C:\WINDOWS\Fonts\browalia.ttc +BrowalliaUPC-B-I C:\WINDOWS\Fonts\browalia.ttc +BrowalliaUPC-I C:\WINDOWS\Fonts\browalia.ttc +Brush Script MT-I C:\WINDOWS\Fonts\BRUSHSCI.TTF +Bookshelf Symbol 7 C:\WINDOWS\Fonts\BSSYM7.TTF +Calibri C:\WINDOWS\Fonts\calibri.ttf +Calibri-B C:\WINDOWS\Fonts\calibrib.ttf +Calibri-I C:\WINDOWS\Fonts\calibrii.ttf +Calibri Light C:\WINDOWS\Fonts\calibril.ttf +Calibri Light-I C:\WINDOWS\Fonts\calibrili.ttf +Calibri-B-I C:\WINDOWS\Fonts\calibriz.ttf +Californian FB-B C:\WINDOWS\Fonts\CALIFB.TTF +Californian FB-I C:\WINDOWS\Fonts\CALIFI.TTF +Californian FB C:\WINDOWS\Fonts\CALIFR.TTF +Calisto MT C:\WINDOWS\Fonts\CALIST.TTF +Calisto MT-B C:\WINDOWS\Fonts\CALISTB.TTF +Calisto MT-B-I C:\WINDOWS\Fonts\CALISTBI.TTF +Calisto MT-I C:\WINDOWS\Fonts\CALISTI.TTF +Cambria C:\WINDOWS\Fonts\cambria.ttc +Cambria Math C:\WINDOWS\Fonts\cambria.ttc +Cambria-B C:\WINDOWS\Fonts\cambriab.ttf +Cambria-I C:\WINDOWS\Fonts\cambriai.ttf +Cambria-B-I C:\WINDOWS\Fonts\cambriaz.ttf +Candara C:\WINDOWS\Fonts\Candara.ttf +Candara-B C:\WINDOWS\Fonts\Candarab.ttf +Candara-I C:\WINDOWS\Fonts\Candarai.ttf +Candara Light C:\WINDOWS\Fonts\Candaral.ttf +Candara Light-I C:\WINDOWS\Fonts\Candarali.ttf +Candara-B-I C:\WINDOWS\Fonts\Candaraz.ttf +Castellar C:\WINDOWS\Fonts\CASTELAR.TTF +Century Schoolbook C:\WINDOWS\Fonts\CENSCBK.TTF +Centaur C:\WINDOWS\Fonts\CENTAUR.TTF +Century C:\WINDOWS\Fonts\CENTURY.TTF +Chiller C:\WINDOWS\Fonts\CHILLER.TTF +Colonna MT C:\WINDOWS\Fonts\COLONNA.TTF +Comic Sans MS C:\WINDOWS\Fonts\comic.ttf +Comic Sans MS-B C:\WINDOWS\Fonts\comicbd.ttf +Comic Sans MS-I C:\WINDOWS\Fonts\comici.ttf +Comic Sans MS-B-I C:\WINDOWS\Fonts\comicz.ttf +Consolas C:\WINDOWS\Fonts\consola.ttf +Consolas-B C:\WINDOWS\Fonts\consolab.ttf +Consolas-I C:\WINDOWS\Fonts\consolai.ttf +Consolas-B-I C:\WINDOWS\Fonts\consolaz.ttf +Constantia C:\WINDOWS\Fonts\constan.ttf +Constantia-B C:\WINDOWS\Fonts\constanb.ttf +Constantia-I C:\WINDOWS\Fonts\constani.ttf +Constantia-B-I C:\WINDOWS\Fonts\constanz.ttf +Cooper Black C:\WINDOWS\Fonts\COOPBL.TTF +Copperplate Gothic Bold C:\WINDOWS\Fonts\COPRGTB.TTF +Copperplate Gothic Light C:\WINDOWS\Fonts\COPRGTL.TTF +Corbel C:\WINDOWS\Fonts\corbel.ttf +Corbel-B C:\WINDOWS\Fonts\corbelb.ttf +Corbel-I C:\WINDOWS\Fonts\corbeli.ttf +Corbel Light C:\WINDOWS\Fonts\corbell.ttf +Corbel Light-I C:\WINDOWS\Fonts\corbelli.ttf +Corbel-B-I C:\WINDOWS\Fonts\corbelz.ttf +Cordia New C:\WINDOWS\Fonts\cordia.ttc +Cordia New-B C:\WINDOWS\Fonts\cordia.ttc +Cordia New-B-I C:\WINDOWS\Fonts\cordia.ttc +Cordia New-I C:\WINDOWS\Fonts\cordia.ttc +CordiaUPC C:\WINDOWS\Fonts\cordia.ttc +CordiaUPC-B C:\WINDOWS\Fonts\cordia.ttc +CordiaUPC-B-I C:\WINDOWS\Fonts\cordia.ttc +CordiaUPC-I C:\WINDOWS\Fonts\cordia.ttc +Courier New C:\WINDOWS\Fonts\cour.ttf +Courier New-B C:\WINDOWS\Fonts\courbd.ttf +Courier New-B-I C:\WINDOWS\Fonts\courbi.ttf +Courier New-I C:\WINDOWS\Fonts\couri.ttf +Curlz MT C:\WINDOWS\Fonts\CURLZ___.TTF +Dubai Bold-B C:\WINDOWS\Fonts\DUBAI-BOLD.TTF +Dubai-B C:\WINDOWS\Fonts\DUBAI-BOLD.TTF +Dubai Light C:\WINDOWS\Fonts\DUBAI-LIGHT.TTF +Dubai Medium C:\WINDOWS\Fonts\DUBAI-MEDIUM.TTF +Dubai Regular C:\WINDOWS\Fonts\DUBAI-REGULAR.TTF +Dubai C:\WINDOWS\Fonts\DUBAI-REGULAR.TTF +Ebrima C:\WINDOWS\Fonts\ebrima.ttf +Ebrima-B C:\WINDOWS\Fonts\ebrimabd.ttf +Elephant C:\WINDOWS\Fonts\ELEPHNT.TTF +Elephant-I C:\WINDOWS\Fonts\ELEPHNTI.TTF +Engravers MT C:\WINDOWS\Fonts\ENGR.TTF +Eras Bold ITC C:\WINDOWS\Fonts\ERASBD.TTF +Eras Demi ITC C:\WINDOWS\Fonts\ERASDEMI.TTF +Eras Light ITC C:\WINDOWS\Fonts\ERASLGHT.TTF +Eras Medium ITC C:\WINDOWS\Fonts\ERASMD.TTF +Felix Titling C:\WINDOWS\Fonts\FELIXTI.TTF +Forte-I C:\WINDOWS\Fonts\FORTE.TTF +Franklin Gothic Book C:\WINDOWS\Fonts\FRABK.TTF +Franklin Gothic Book-I C:\WINDOWS\Fonts\FRABKIT.TTF +Franklin Gothic Demi C:\WINDOWS\Fonts\FRADM.TTF +Franklin Gothic Demi Cond C:\WINDOWS\Fonts\FRADMCN.TTF +Franklin Gothic Demi-I C:\WINDOWS\Fonts\FRADMIT.TTF +Franklin Gothic Heavy C:\WINDOWS\Fonts\FRAHV.TTF +Franklin Gothic Heavy-I C:\WINDOWS\Fonts\FRAHVIT.TTF +Franklin Gothic Medium C:\WINDOWS\Fonts\framd.ttf +Franklin Gothic Medium Cond C:\WINDOWS\Fonts\FRAMDCN.TTF +Franklin Gothic Medium-I C:\WINDOWS\Fonts\framdit.ttf +Freestyle Script C:\WINDOWS\Fonts\FREESCPT.TTF +French Script MT C:\WINDOWS\Fonts\FRSCRIPT.TTF +Footlight MT Light C:\WINDOWS\Fonts\FTLTLT.TTF +Gabriola C:\WINDOWS\Fonts\Gabriola.ttf +Gadugi C:\WINDOWS\Fonts\gadugi.ttf +Gadugi-B C:\WINDOWS\Fonts\gadugib.ttf +Garamond C:\WINDOWS\Fonts\GARA.TTF +Garamond-B C:\WINDOWS\Fonts\GARABD.TTF +Garamond-I C:\WINDOWS\Fonts\GARAIT.TTF +Georgia C:\WINDOWS\Fonts\georgia.ttf +Georgia-B C:\WINDOWS\Fonts\georgiab.ttf +Georgia-I C:\WINDOWS\Fonts\georgiai.ttf +Georgia-B-I C:\WINDOWS\Fonts\georgiaz.ttf +Gigi C:\WINDOWS\Fonts\GIGI.TTF +Gill Sans MT-B-I C:\WINDOWS\Fonts\GILBI___.TTF +Gill Sans MT-B C:\WINDOWS\Fonts\GILB____.TTF +Gill Sans MT Condensed C:\WINDOWS\Fonts\GILC____.TTF +Gill Sans MT-I C:\WINDOWS\Fonts\GILI____.TTF +Gill Sans Ultra Bold Condensed C:\WINDOWS\Fonts\GILLUBCD.TTF +Gill Sans Ultra Bold C:\WINDOWS\Fonts\GILSANUB.TTF +Gill Sans MT C:\WINDOWS\Fonts\GIL_____.TTF +Gloucester MT Extra Condensed C:\WINDOWS\Fonts\GLECB.TTF +Gill Sans MT Ext Condensed Bold C:\WINDOWS\Fonts\GLSNECB.TTF +Century Gothic C:\WINDOWS\Fonts\GOTHIC.TTF +Century Gothic-B C:\WINDOWS\Fonts\GOTHICB.TTF +Century Gothic-B-I C:\WINDOWS\Fonts\GOTHICBI.TTF +Century Gothic-I C:\WINDOWS\Fonts\GOTHICI.TTF +Goudy Old Style C:\WINDOWS\Fonts\GOUDOS.TTF +Goudy Old Style-B C:\WINDOWS\Fonts\GOUDOSB.TTF +Goudy Old Style-I C:\WINDOWS\Fonts\GOUDOSI.TTF +Goudy Stout C:\WINDOWS\Fonts\GOUDYSTO.TTF +Harlow Solid Italic-I C:\WINDOWS\Fonts\HARLOWSI.TTF +Harrington C:\WINDOWS\Fonts\HARNGTON.TTF +Haettenschweiler C:\WINDOWS\Fonts\HATTEN.TTF +Microsoft Himalaya C:\WINDOWS\Fonts\himalaya.ttf +HoloLens MDL2 Assets C:\WINDOWS\Fonts\holomdl2.ttf +High Tower Text C:\WINDOWS\Fonts\HTOWERT.TTF +High Tower Text-I C:\WINDOWS\Fonts\HTOWERTI.TTF +Impact C:\WINDOWS\Fonts\impact.ttf +Imprint MT Shadow C:\WINDOWS\Fonts\IMPRISHA.TTF +Informal Roman C:\WINDOWS\Fonts\INFROMAN.TTF +Ink Free C:\WINDOWS\Fonts\Inkfree.ttf +Blackadder ITC C:\WINDOWS\Fonts\ITCBLKAD.TTF +Edwardian Script ITC C:\WINDOWS\Fonts\ITCEDSCR.TTF +Kristen ITC C:\WINDOWS\Fonts\ITCKRIST.TTF +Javanese Text C:\WINDOWS\Fonts\javatext.ttf +Jokerman C:\WINDOWS\Fonts\JOKERMAN.TTF +Juice ITC C:\WINDOWS\Fonts\JUICE___.TTF +Kunstler Script C:\WINDOWS\Fonts\KUNSTLER.TTF +Wide Latin C:\WINDOWS\Fonts\LATINWD.TTF +Lucida Bright C:\WINDOWS\Fonts\LBRITE.TTF +Lucida Bright-B C:\WINDOWS\Fonts\LBRITED.TTF +Lucida Bright-B-I C:\WINDOWS\Fonts\LBRITEDI.TTF +Lucida Bright-I C:\WINDOWS\Fonts\LBRITEI.TTF +Lucida Calligraphy-I C:\WINDOWS\Fonts\LCALLIG.TTF +Leelawadee UI-B C:\WINDOWS\Fonts\LeelaUIb.ttf +Leelawadee C:\WINDOWS\Fonts\leelawad.ttf +Leelawadee-B C:\WINDOWS\Fonts\leelawdb.ttf +Leelawadee UI C:\WINDOWS\Fonts\LeelawUI.ttf +Leelawadee UI Semilight C:\WINDOWS\Fonts\LeelUIsl.ttf +Lucida Fax C:\WINDOWS\Fonts\LFAX.TTF +Lucida Fax-B C:\WINDOWS\Fonts\LFAXD.TTF +Lucida Fax-B-I C:\WINDOWS\Fonts\LFAXDI.TTF +Lucida Fax-I C:\WINDOWS\Fonts\LFAXI.TTF +Lucida Handwriting-I C:\WINDOWS\Fonts\LHANDW.TTF +Lucida Sans C:\WINDOWS\Fonts\LSANS.TTF +Lucida Sans-B C:\WINDOWS\Fonts\LSANSD.TTF +Lucida Sans-B-I C:\WINDOWS\Fonts\LSANSDI.TTF +Lucida Sans-I C:\WINDOWS\Fonts\LSANSI.TTF +Lucida Sans Typewriter C:\WINDOWS\Fonts\LTYPE.TTF +Lucida Sans Typewriter-B C:\WINDOWS\Fonts\LTYPEB.TTF +Lucida Sans Typewriter-B-I C:\WINDOWS\Fonts\LTYPEBO.TTF +Lucida Sans Typewriter-I C:\WINDOWS\Fonts\LTYPEO.TTF +Lucida Console C:\WINDOWS\Fonts\lucon.ttf +Lucida Sans Unicode C:\WINDOWS\Fonts\l_10646.ttf +Magneto-B C:\WINDOWS\Fonts\MAGNETOB.TTF +Maiandra GD C:\WINDOWS\Fonts\MAIAN.TTF +Malgun Gothic C:\WINDOWS\Fonts\malgun.ttf +맑은 고딕 C:\WINDOWS\Fonts\malgun.ttf +Malgun Gothic-B C:\WINDOWS\Fonts\malgunbd.ttf +맑은 고딕-B C:\WINDOWS\Fonts\malgunbd.ttf +Malgun Gothic Semilight C:\WINDOWS\Fonts\malgunsl.ttf +맑은 고딕 Semilight C:\WINDOWS\Fonts\malgunsl.ttf +Marlett C:\WINDOWS\Fonts\marlett.ttf +Matura MT Script Capitals C:\WINDOWS\Fonts\MATURASC.TTF +Microsoft Sans Serif C:\WINDOWS\Fonts\micross.ttf +MingLiU-ExtB C:\WINDOWS\Fonts\mingliub.ttc +細明體-ExtB C:\WINDOWS\Fonts\mingliub.ttc +PMingLiU-ExtB C:\WINDOWS\Fonts\mingliub.ttc +新細明體-ExtB C:\WINDOWS\Fonts\mingliub.ttc +MingLiU_HKSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc +細明體_HKSCS-ExtB C:\WINDOWS\Fonts\mingliub.ttc +Mistral C:\WINDOWS\Fonts\MISTRAL.TTF +Myanmar Text C:\WINDOWS\Fonts\mmrtext.ttf +Myanmar Text-B C:\WINDOWS\Fonts\mmrtextb.ttf +Modern No. 20 C:\WINDOWS\Fonts\MOD20.TTF +Mongolian Baiti C:\WINDOWS\Fonts\monbaiti.ttf +MS Gothic C:\WINDOWS\Fonts\msgothic.ttc +MS ゴシック C:\WINDOWS\Fonts\msgothic.ttc +MS UI Gothic C:\WINDOWS\Fonts\msgothic.ttc +MS PGothic C:\WINDOWS\Fonts\msgothic.ttc +MS Pゴシック C:\WINDOWS\Fonts\msgothic.ttc +微軟正黑體 C:\WINDOWS\Fonts\msjh.ttc +Microsoft JhengHei C:\WINDOWS\Fonts\msjh.ttc +Microsoft JhengHei UI C:\WINDOWS\Fonts\msjh.ttc +微軟正黑體-B C:\WINDOWS\Fonts\msjhbd.ttc +Microsoft JhengHei-B C:\WINDOWS\Fonts\msjhbd.ttc +Microsoft JhengHei UI-B C:\WINDOWS\Fonts\msjhbd.ttc +微軟正黑體 Light C:\WINDOWS\Fonts\msjhl.ttc +Microsoft JhengHei Light C:\WINDOWS\Fonts\msjhl.ttc +Microsoft JhengHei UI Light C:\WINDOWS\Fonts\msjhl.ttc +Microsoft YaHei C:\WINDOWS\Fonts\msyh.ttc +微软雅黑 C:\WINDOWS\Fonts\msyh.ttc +Microsoft YaHei UI C:\WINDOWS\Fonts\msyh.ttc +Microsoft YaHei-B C:\WINDOWS\Fonts\msyhbd.ttc +微软雅黑-B C:\WINDOWS\Fonts\msyhbd.ttc +Microsoft YaHei UI-B C:\WINDOWS\Fonts\msyhbd.ttc +Microsoft YaHei Light C:\WINDOWS\Fonts\msyhl.ttc +微软雅黑 Light C:\WINDOWS\Fonts\msyhl.ttc +Microsoft YaHei UI Light C:\WINDOWS\Fonts\msyhl.ttc +Microsoft Yi Baiti C:\WINDOWS\Fonts\msyi.ttf +Monotype Corsiva-I C:\WINDOWS\Fonts\MTCORSVA.TTF +MT Extra C:\WINDOWS\Fonts\MTEXTRA.TTF +MV Boli-I C:\WINDOWS\Fonts\mvboli.ttf +Niagara Engraved C:\WINDOWS\Fonts\NIAGENG.TTF +Niagara Solid C:\WINDOWS\Fonts\NIAGSOL.TTF +Nirmala UI C:\WINDOWS\Fonts\Nirmala.ttf +Nirmala UI-B C:\WINDOWS\Fonts\NirmalaB.ttf +Nirmala UI Semilight C:\WINDOWS\Fonts\NirmalaS.ttf +Microsoft New Tai Lue C:\WINDOWS\Fonts\ntailu.ttf +Microsoft New Tai Lue-B C:\WINDOWS\Fonts\ntailub.ttf +OCR A Extended C:\WINDOWS\Fonts\OCRAEXT.TTF +Old English Text MT C:\WINDOWS\Fonts\OLDENGL.TTF +Onyx C:\WINDOWS\Fonts\ONYX.TTF +MS Outlook C:\WINDOWS\Fonts\OUTLOOK.TTF +Palatino Linotype C:\WINDOWS\Fonts\pala.ttf +Palatino Linotype-B C:\WINDOWS\Fonts\palab.ttf +Palatino Linotype-B-I C:\WINDOWS\Fonts\palabi.ttf +Palatino Linotype-I C:\WINDOWS\Fonts\palai.ttf +Palace Script MT-I C:\WINDOWS\Fonts\PALSCRI.TTF +Papyrus C:\WINDOWS\Fonts\PAPYRUS.TTF +Parchment C:\WINDOWS\Fonts\PARCHM.TTF +Perpetua-B-I C:\WINDOWS\Fonts\PERBI___.TTF +Perpetua-B C:\WINDOWS\Fonts\PERB____.TTF +Perpetua-I C:\WINDOWS\Fonts\PERI____.TTF +Perpetua Titling MT-B C:\WINDOWS\Fonts\PERTIBD.TTF +Perpetua Titling MT C:\WINDOWS\Fonts\PERTILI.TTF +Perpetua C:\WINDOWS\Fonts\PER_____.TTF +Microsoft PhagsPa C:\WINDOWS\Fonts\phagspa.ttf +Microsoft PhagsPa-B C:\WINDOWS\Fonts\phagspab.ttf +Playbill C:\WINDOWS\Fonts\PLAYBILL.TTF +Poor Richard C:\WINDOWS\Fonts\POORICH.TTF +Pristina C:\WINDOWS\Fonts\PRISTINA.TTF +Rage Italic C:\WINDOWS\Fonts\RAGE.TTF +Ravie C:\WINDOWS\Fonts\RAVIE.TTF +MS Reference Sans Serif C:\WINDOWS\Fonts\REFSAN.TTF +MS Reference Specialty C:\WINDOWS\Fonts\REFSPCL.TTF +Rockwell Condensed-B C:\WINDOWS\Fonts\ROCCB___.TTF +Rockwell Condensed C:\WINDOWS\Fonts\ROCC____.TTF +Rockwell C:\WINDOWS\Fonts\ROCK.TTF +Rockwell-B C:\WINDOWS\Fonts\ROCKB.TTF +Rockwell-B-I C:\WINDOWS\Fonts\ROCKBI.TTF +Rockwell Extra Bold-B C:\WINDOWS\Fonts\ROCKEB.TTF +Rockwell-I C:\WINDOWS\Fonts\ROCKI.TTF +Century Schoolbook-B C:\WINDOWS\Fonts\SCHLBKB.TTF +Century Schoolbook-B-I C:\WINDOWS\Fonts\SCHLBKBI.TTF +Century Schoolbook-I C:\WINDOWS\Fonts\SCHLBKI.TTF +Script MT Bold-B C:\WINDOWS\Fonts\SCRIPTBL.TTF +Segoe MDL2 Assets C:\WINDOWS\Fonts\segmdl2.ttf +Segoe Fluent Icons C:\WINDOWS\Fonts\SegoeIcons.ttf +Segoe Print C:\WINDOWS\Fonts\segoepr.ttf +Segoe Print-B C:\WINDOWS\Fonts\segoeprb.ttf +Segoe Script C:\WINDOWS\Fonts\segoesc.ttf +Segoe Script-B C:\WINDOWS\Fonts\segoescb.ttf +Segoe UI C:\WINDOWS\Fonts\segoeui.ttf +Segoe UI-B C:\WINDOWS\Fonts\segoeuib.ttf +Segoe UI-I C:\WINDOWS\Fonts\segoeuii.ttf +Segoe UI Light C:\WINDOWS\Fonts\segoeuil.ttf +Segoe UI Semilight C:\WINDOWS\Fonts\segoeuisl.ttf +Segoe UI-B-I C:\WINDOWS\Fonts\segoeuiz.ttf +Segoe UI Black-B C:\WINDOWS\Fonts\seguibl.ttf +Segoe UI Black-B-I C:\WINDOWS\Fonts\seguibli.ttf +Segoe UI Emoji C:\WINDOWS\Fonts\seguiemj.ttf +Segoe UI Historic C:\WINDOWS\Fonts\seguihis.ttf +Segoe UI Light-I C:\WINDOWS\Fonts\seguili.ttf +Segoe UI Semibold-B C:\WINDOWS\Fonts\seguisb.ttf +Segoe UI Semibold-B-I C:\WINDOWS\Fonts\seguisbi.ttf +Segoe UI Semilight-I C:\WINDOWS\Fonts\seguisli.ttf +Segoe UI Symbol C:\WINDOWS\Fonts\seguisym.ttf +Segoe UI Variable Regular C:\WINDOWS\Fonts\SegUIVar.ttf +Segoe UI Variable C:\WINDOWS\Fonts\SegUIVar.ttf +Showcard Gothic C:\WINDOWS\Fonts\SHOWG.TTF +SimSun C:\WINDOWS\Fonts\simsun.ttc +宋体 C:\WINDOWS\Fonts\simsun.ttc +NSimSun C:\WINDOWS\Fonts\simsun.ttc +新宋体 C:\WINDOWS\Fonts\simsun.ttc +SimSun-ExtB C:\WINDOWS\Fonts\simsunb.ttf +Sitka Text-I C:\WINDOWS\Fonts\SitkaVF-Italic.ttf +Sitka Text C:\WINDOWS\Fonts\SitkaVF.ttf +Snap ITC C:\WINDOWS\Fonts\SNAP____.TTF +Stencil C:\WINDOWS\Fonts\STENCIL.TTF +Sylfaen C:\WINDOWS\Fonts\sylfaen.ttf +Symbol C:\WINDOWS\Fonts\symbol.ttf +Tahoma C:\WINDOWS\Fonts\tahoma.ttf +Tahoma-B C:\WINDOWS\Fonts\tahomabd.ttf +Microsoft Tai Le C:\WINDOWS\Fonts\taile.ttf +Microsoft Tai Le-B C:\WINDOWS\Fonts\taileb.ttf +Tw Cen MT-B-I C:\WINDOWS\Fonts\TCBI____.TTF +Tw Cen MT-B C:\WINDOWS\Fonts\TCB_____.TTF +Tw Cen MT Condensed-B C:\WINDOWS\Fonts\TCCB____.TTF +Tw Cen MT Condensed Extra Bold C:\WINDOWS\Fonts\TCCEB.TTF +Tw Cen MT Condensed C:\WINDOWS\Fonts\TCCM____.TTF +Tw Cen MT-I C:\WINDOWS\Fonts\TCMI____.TTF +Tw Cen MT C:\WINDOWS\Fonts\TCM_____.TTF +TeamViewer15 C:\WINDOWS\Fonts\teamviewer15.otf +Tempus Sans ITC C:\WINDOWS\Fonts\TEMPSITC.TTF +Times New Roman C:\WINDOWS\Fonts\times.ttf +Times New Roman-B C:\WINDOWS\Fonts\timesbd.ttf +Times New Roman-B-I C:\WINDOWS\Fonts\timesbi.ttf +Times New Roman-I C:\WINDOWS\Fonts\timesi.ttf +Trebuchet MS C:\WINDOWS\Fonts\trebuc.ttf +Trebuchet MS-B C:\WINDOWS\Fonts\trebucbd.ttf +Trebuchet MS-B-I C:\WINDOWS\Fonts\trebucbi.ttf +Trebuchet MS-I C:\WINDOWS\Fonts\trebucit.ttf +DilleniaUPC-B C:\WINDOWS\Fonts\upcdb.ttf +DilleniaUPC C:\WINDOWS\Fonts\upcdi.ttf +EucrosiaUPC-B C:\WINDOWS\Fonts\upceb.ttf +EucrosiaUPC C:\WINDOWS\Fonts\upcei.ttf +FreesiaUPC-B C:\WINDOWS\Fonts\upcfb.ttf +FreesiaUPC C:\WINDOWS\Fonts\upcfi.ttf +IrisUPC-B C:\WINDOWS\Fonts\upcib.ttf +IrisUPC C:\WINDOWS\Fonts\upcii.ttf +JasmineUPC-B C:\WINDOWS\Fonts\upcjb.ttf +JasmineUPC C:\WINDOWS\Fonts\upcji.ttf +KodchiangUPC-B C:\WINDOWS\Fonts\upckb.ttf +KodchiangUPC C:\WINDOWS\Fonts\upcki.ttf +LilyUPC-B C:\WINDOWS\Fonts\upclb.ttf +LilyUPC-B-I C:\WINDOWS\Fonts\upclbi.ttf +LilyUPC C:\WINDOWS\Fonts\upcli.ttf +Verdana C:\WINDOWS\Fonts\verdana.ttf +Verdana-B C:\WINDOWS\Fonts\verdanab.ttf +Verdana-I C:\WINDOWS\Fonts\verdanai.ttf +Verdana-B-I C:\WINDOWS\Fonts\verdanaz.ttf +Viner Hand ITC C:\WINDOWS\Fonts\VINERITC.TTF +Vivaldi-I C:\WINDOWS\Fonts\VIVALDII.TTF +Vladimir Script C:\WINDOWS\Fonts\VLADIMIR.TTF +Webdings C:\WINDOWS\Fonts\webdings.ttf +Wingdings C:\WINDOWS\Fonts\wingding.ttf +Wingdings 2 C:\WINDOWS\Fonts\WINGDNG2.TTF +Wingdings 3 C:\WINDOWS\Fonts\WINGDNG3.TTF +Yu Gothic-B C:\WINDOWS\Fonts\YuGothB.ttc +游ゴシック-B C:\WINDOWS\Fonts\YuGothB.ttc +Yu Gothic UI-B C:\WINDOWS\Fonts\YuGothB.ttc +Yu Gothic UI Semibold-B C:\WINDOWS\Fonts\YuGothB.ttc +Yu Gothic Light C:\WINDOWS\Fonts\YuGothL.ttc +游ゴシック Light C:\WINDOWS\Fonts\YuGothL.ttc +Yu Gothic UI Light C:\WINDOWS\Fonts\YuGothL.ttc +Yu Gothic Medium C:\WINDOWS\Fonts\YuGothM.ttc +游ゴシック Medium C:\WINDOWS\Fonts\YuGothM.ttc +Yu Gothic UI C:\WINDOWS\Fonts\YuGothM.ttc +Yu Gothic C:\WINDOWS\Fonts\YuGothR.ttc +游ゴシック C:\WINDOWS\Fonts\YuGothR.ttc +Yu Gothic UI Semilight C:\WINDOWS\Fonts\YuGothR.ttc diff --git a/bin/Debug/net5.0/nuget.config b/bin/Debug/net5.0/nuget.config new file mode 100644 index 0000000..7ec2d29 --- /dev/null +++ b/bin/Debug/net5.0/nuget.config @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bin/Debug/net5.0/rmutr-report.deps.json b/bin/Debug/net5.0/rmutr-report.deps.json new file mode 100644 index 0000000..03aaa52 --- /dev/null +++ b/bin/Debug/net5.0/rmutr-report.deps.json @@ -0,0 +1,4098 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET5_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "9.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": true, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v5.0": { + "rmutr-report/1.0.0": { + "dependencies": { + "FastReport.Core": "2021.3.0", + "Swashbuckle.AspNetCore": "5.6.3", + "Microsoft.AspNetCore.Antiforgery": "5.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "5.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "5.0.0.0", + "Microsoft.AspNetCore.Authentication": "5.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "5.0.0.0", + "Microsoft.AspNetCore.Authorization": "5.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "5.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "5.0.0.0", + "Microsoft.AspNetCore.Components": "5.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "5.0.0.0", + "Microsoft.AspNetCore.Components.Server": "5.0.0.0", + "Microsoft.AspNetCore.Components.Web": "5.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "5.0.0.0", + "Microsoft.AspNetCore.Cors": "5.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "5.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.DataProtection": "5.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "5.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "5.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "5.0.0.0", + "Microsoft.AspNetCore": "5.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "5.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Hosting": "5.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "5.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "5.0.0.0", + "Microsoft.AspNetCore.Http": "5.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "5.0.0.0", + "Microsoft.AspNetCore.Http.Features": "5.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "5.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "5.0.0.0", + "Microsoft.AspNetCore.Identity": "5.0.0.0", + "Microsoft.AspNetCore.Localization": "5.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "5.0.0.0", + "Microsoft.AspNetCore.Metadata": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "5.0.0.0", + "Microsoft.AspNetCore.Mvc": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "5.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "5.0.0.0", + "Microsoft.AspNetCore.Razor": "5.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "5.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "5.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "5.0.0.0", + "Microsoft.AspNetCore.Rewrite": "5.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Routing": "5.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "5.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "5.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "5.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "5.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "5.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "5.0.0.0", + "Microsoft.AspNetCore.Session": "5.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "5.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "5.0.0.0", + "Microsoft.AspNetCore.SignalR": "5.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "5.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "5.0.0.0", + "Microsoft.AspNetCore.WebSockets": "5.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "5.0.0.0", + "Microsoft.CSharp": "5.0.0.0", + "Microsoft.Extensions.Caching.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Caching.Memory": "5.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Configuration.Binder": "5.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "5.0.0.0", + "Microsoft.Extensions.Configuration": "5.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "5.0.0.0", + "Microsoft.Extensions.Configuration.Json": "5.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "5.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "5.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "5.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "5.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "5.0.0.0", + "Microsoft.Extensions.FileProviders.Physical": "5.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "5.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Hosting": "5.0.0.0", + "Microsoft.Extensions.Http": "5.0.0.0", + "Microsoft.Extensions.Identity.Core": "5.0.0.0", + "Microsoft.Extensions.Identity.Stores": "5.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Localization": "5.0.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Logging.Configuration": "5.0.0.0", + "Microsoft.Extensions.Logging.Console": "5.0.0.0", + "Microsoft.Extensions.Logging.Debug": "5.0.0.0", + "Microsoft.Extensions.Logging": "5.0.0.0", + "Microsoft.Extensions.Logging.EventLog": "5.0.0.0", + "Microsoft.Extensions.Logging.EventSource": "5.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "5.0.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "5.0.0.0", + "Microsoft.Extensions.Options": "5.0.0.0", + "Microsoft.Extensions.Primitives": "5.0.0.0", + "Microsoft.Extensions.WebEncoders": "5.0.0.0", + "Microsoft.JSInterop": "5.0.0.0", + "Microsoft.Net.Http.Headers": "5.0.0.0", + "Microsoft.VisualBasic.Core": "10.0.6.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "5.0.0.0", + "Microsoft.Win32.Registry.Reference": "5.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "5.0.0.0", + "System.Buffers": "5.0.0.0", + "System.Collections.Concurrent": "5.0.0.0", + "System.Collections": "5.0.0.0", + "System.Collections.Immutable.Reference": "5.0.0.0", + "System.Collections.NonGeneric": "5.0.0.0", + "System.Collections.Specialized": "5.0.0.0", + "System.ComponentModel.Annotations": "5.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "5.0.0.0", + "System.ComponentModel.EventBasedAsync": "5.0.0.0", + "System.ComponentModel.Primitives": "5.0.0.0", + "System.ComponentModel.TypeConverter": "5.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console": "5.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "5.0.0.0", + "System.Data.DataSetExtensions": "4.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "5.0.0.0", + "System.Diagnostics.Debug": "5.0.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0.0", + "System.Diagnostics.EventLog": "5.0.0.0", + "System.Diagnostics.FileVersionInfo": "5.0.0.0", + "System.Diagnostics.Process": "5.0.0.0", + "System.Diagnostics.StackTrace": "5.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "5.0.0.0", + "System.Diagnostics.Tools": "5.0.0.0", + "System.Diagnostics.TraceSource": "5.0.0.0", + "System.Diagnostics.Tracing": "5.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "5.0.0.0", + "System.Dynamic.Runtime": "5.0.0.0", + "System.Formats.Asn1": "5.0.0.0", + "System.Globalization.Calendars": "5.0.0.0", + "System.Globalization": "5.0.0.0", + "System.Globalization.Extensions": "5.0.0.0", + "System.IO.Compression.Brotli": "5.0.0.0", + "System.IO.Compression": "5.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "5.0.0.0", + "System.IO": "5.0.0.0", + "System.IO.FileSystem": "5.0.0.0", + "System.IO.FileSystem.DriveInfo": "5.0.0.0", + "System.IO.FileSystem.Primitives": "5.0.0.0", + "System.IO.FileSystem.Watcher": "5.0.0.0", + "System.IO.IsolatedStorage": "5.0.0.0", + "System.IO.MemoryMappedFiles": "5.0.0.0", + "System.IO.Pipelines": "5.0.0.0", + "System.IO.Pipes": "5.0.0.0", + "System.IO.UnmanagedMemoryStream": "5.0.0.0", + "System.Linq": "5.0.0.0", + "System.Linq.Expressions": "5.0.0.0", + "System.Linq.Parallel": "5.0.0.0", + "System.Linq.Queryable": "5.0.0.0", + "System.Memory.Reference": "5.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "5.0.0.0", + "System.Net.Http.Json": "5.0.0.0", + "System.Net.HttpListener": "5.0.0.0", + "System.Net.Mail": "5.0.0.0", + "System.Net.NameResolution": "5.0.0.0", + "System.Net.NetworkInformation": "5.0.0.0", + "System.Net.Ping": "5.0.0.0", + "System.Net.Primitives": "5.0.0.0", + "System.Net.Requests": "5.0.0.0", + "System.Net.Security": "5.0.0.0", + "System.Net.ServicePoint": "5.0.0.0", + "System.Net.Sockets": "5.0.0.0", + "System.Net.WebClient": "5.0.0.0", + "System.Net.WebHeaderCollection": "5.0.0.0", + "System.Net.WebProxy": "5.0.0.0", + "System.Net.WebSockets.Client": "5.0.0.0", + "System.Net.WebSockets": "5.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "5.0.0.0", + "System.ObjectModel": "5.0.0.0", + "System.Reflection.DispatchProxy": "5.0.0.0", + "System.Reflection": "5.0.0.0", + "System.Reflection.Emit": "5.0.0.0", + "System.Reflection.Emit.ILGeneration": "5.0.0.0", + "System.Reflection.Emit.Lightweight": "5.0.0.0", + "System.Reflection.Extensions": "5.0.0.0", + "System.Reflection.Metadata.Reference": "5.0.0.0", + "System.Reflection.Primitives": "5.0.0.0", + "System.Reflection.TypeExtensions": "5.0.0.0", + "System.Resources.Reader": "5.0.0.0", + "System.Resources.ResourceManager": "5.0.0.0", + "System.Resources.Writer": "5.0.0.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "5.0.0.0", + "System.Runtime.CompilerServices.VisualC": "5.0.0.0", + "System.Runtime": "5.0.0.0", + "System.Runtime.Extensions": "5.0.0.0", + "System.Runtime.Handles": "5.0.0.0", + "System.Runtime.InteropServices": "5.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "5.0.0.0", + "System.Runtime.Intrinsics": "5.0.0.0", + "System.Runtime.Loader": "5.0.0.0", + "System.Runtime.Numerics": "5.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "5.0.0.0", + "System.Runtime.Serialization.Json": "5.0.0.0", + "System.Runtime.Serialization.Primitives": "5.0.0.0", + "System.Runtime.Serialization.Xml": "5.0.0.0", + "System.Security.AccessControl.Reference": "5.0.0.0", + "System.Security.Claims": "5.0.0.0", + "System.Security.Cryptography.Algorithms": "5.0.0.0", + "System.Security.Cryptography.Cng.Reference": "5.0.0.0", + "System.Security.Cryptography.Csp": "5.0.0.0", + "System.Security.Cryptography.Encoding": "5.0.0.0", + "System.Security.Cryptography.Primitives": "5.0.0.0", + "System.Security.Cryptography.X509Certificates": "5.0.0.0", + "System.Security.Cryptography.Xml": "5.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Permissions.Reference": "5.0.0.0", + "System.Security.Principal": "5.0.0.0", + "System.Security.Principal.Windows.Reference": "5.0.0.0", + "System.Security.SecureString": "5.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages.Reference": "5.0.0.0", + "System.Text.Encoding": "5.0.0.0", + "System.Text.Encoding.Extensions": "5.0.0.0", + "System.Text.Encodings.Web": "5.0.0.0", + "System.Text.Json": "5.0.0.0", + "System.Text.RegularExpressions": "5.0.0.0", + "System.Threading.Channels": "5.0.0.0", + "System.Threading": "5.0.0.0", + "System.Threading.Overlapped": "5.0.0.0", + "System.Threading.Tasks.Dataflow": "5.0.0.0", + "System.Threading.Tasks": "5.0.0.0", + "System.Threading.Tasks.Extensions.Reference": "5.0.0.0", + "System.Threading.Tasks.Parallel": "5.0.0.0", + "System.Threading.Thread": "5.0.0.0", + "System.Threading.ThreadPool": "5.0.0.0", + "System.Threading.Timer": "5.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "5.0.0.0", + "System.ValueTuple": "4.0.3.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "5.0.0.0", + "System.Windows": "4.0.0.0", + "System.Windows.Extensions.Reference": "5.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "5.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "5.0.0.0", + "System.Xml.XmlDocument": "5.0.0.0", + "System.Xml.XmlSerializer": "5.0.0.0", + "System.Xml.XPath": "5.0.0.0", + "System.Xml.XPath.XDocument": "5.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "rmutr-report.dll": {} + }, + "compile": { + "rmutr-report.dll": {} + } + }, + "FastReport.Compat/2021.2.0": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "3.3.1", + "Microsoft.CodeAnalysis.VisualBasic": "3.3.1", + "System.Drawing.Common": "4.6.1", + "System.Windows.Extensions": "4.6.0" + }, + "runtimeTargets": { + "runtimes/any/lib/netcoreapp3.0/FastReport.Compat.dll": { + "rid": "any", + "assetType": "runtime", + "assemblyVersion": "2021.2.0.0", + "fileVersion": "2021.2.0.0" + } + } + }, + "FastReport.Core/2021.3.0": { + "dependencies": { + "FastReport.Compat": "2021.2.0", + "FastReport.DataVisualization": "2021.2.0", + "System.Drawing.Common": "4.6.1", + "System.Security.Cryptography.Pkcs": "4.5.2", + "System.Security.Permissions": "4.4.0", + "System.Text.Encoding.CodePages": "4.5.1" + }, + "runtime": { + "lib/netstandard2.1/FastReport.dll": { + "assemblyVersion": "2021.3.0.0", + "fileVersion": "2021.3.0.0" + } + }, + "compile": { + "lib/netstandard2.1/FastReport.dll": {} + } + }, + "FastReport.DataVisualization/2021.2.0": { + "dependencies": { + "FastReport.Compat": "2021.2.0", + "System.Data.SqlClient": "4.4.3", + "System.Drawing.Common": "4.6.1" + }, + "runtimeTargets": { + "runtimes/any/lib/netcoreapp3.0/FastReport.DataVisualization.dll": { + "rid": "any", + "assetType": "runtime", + "assemblyVersion": "2021.2.0.0", + "fileVersion": "2021.2.0.0" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.4": {}, + "Microsoft.CodeAnalysis.Common/3.3.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.4", + "System.Collections.Immutable": "1.5.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.119.46211" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.119.46211" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.VisualBasic/3.3.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.3.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.119.46211" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.NETCore.Platforms/3.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0", + "System.Security.AccessControl": "4.4.0", + "System.Security.Principal.Windows": "4.4.0" + } + }, + "Microsoft.Win32.SystemEvents/4.6.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "Swashbuckle.AspNetCore/5.6.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "5.6.3", + "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3", + "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3" + } + }, + "Swashbuckle.AspNetCore.Swagger/5.6.3": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "5.6.3.0", + "fileVersion": "5.6.3.0" + } + }, + "compile": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "5.6.3" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "5.6.3.0", + "fileVersion": "5.6.3.0" + } + }, + "compile": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "5.6.3.0", + "fileVersion": "5.6.3.0" + } + }, + "compile": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + } + }, + "System.Collections.Immutable/1.5.0": {}, + "System.Data.SqlClient/4.4.3": { + "dependencies": { + "Microsoft.Win32.Registry": "4.4.0", + "System.Security.Principal.Windows": "4.4.0", + "System.Text.Encoding.CodePages": "4.5.1", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/System.Data.SqlClient.dll": { + "assemblyVersion": "4.2.0.2", + "fileVersion": "4.6.26212.1" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.2.0.2", + "fileVersion": "4.6.26212.1" + }, + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.2.0.2", + "fileVersion": "4.6.26212.1" + } + }, + "compile": { + "ref/netstandard2.0/System.Data.SqlClient.dll": {} + } + }, + "System.Drawing.Common/4.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0", + "Microsoft.Win32.SystemEvents": "4.6.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + } + }, + "System.Memory/4.5.3": {}, + "System.Reflection.Metadata/1.6.0": {}, + "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, + "System.Security.AccessControl/4.4.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0", + "System.Security.Principal.Windows": "4.4.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Pkcs/4.5.2": { + "dependencies": { + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} + } + }, + "System.Security.Permissions/4.4.0": { + "dependencies": { + "System.Security.AccessControl": "4.4.0" + } + }, + "System.Security.Principal.Windows/4.4.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0" + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + } + }, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Windows.Extensions/4.6.0": { + "dependencies": { + "System.Drawing.Common": "4.6.1" + } + }, + "Microsoft.AspNetCore.Antiforgery/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/5.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/5.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection/5.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/5.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/5.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives/5.0.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/5.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/5.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/5.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/10.0.6.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/5.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry.Reference/5.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/5.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/5.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/5.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/5.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable.Reference/5.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/5.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/5.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/5.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/5.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/5.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/5.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/5.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/5.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/5.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/4.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/5.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/5.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/5.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/5.0.0.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/5.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/5.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/5.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/5.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/5.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/5.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/5.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/5.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/5.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1/5.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/5.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/5.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/5.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/5.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/5.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/5.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/5.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/5.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/5.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/5.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/5.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/5.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/5.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/5.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/5.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/5.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq/5.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/5.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/5.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/5.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory.Reference/5.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/5.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/5.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/5.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/5.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/5.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/5.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/5.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/5.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/5.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/5.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/5.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/5.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/5.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/5.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/5.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/5.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/5.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/5.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/5.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/5.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/5.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/5.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/5.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/5.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/5.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/5.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/5.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/5.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/5.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/5.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/5.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/5.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/5.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/5.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/5.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/5.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/5.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/5.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/5.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/5.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/5.0.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/5.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/5.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/5.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl.Reference/5.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/5.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/5.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng.Reference/5.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/5.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/5.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/5.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/5.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/5.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Permissions.Reference/5.0.0.0": { + "compile": { + "System.Security.Permissions.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/5.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows.Reference/5.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/5.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages.Reference/5.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/5.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/5.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/5.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json/5.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/5.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/5.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/5.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/5.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/5.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/5.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions.Reference/5.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/5.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/5.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/5.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/5.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/5.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/4.0.3.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/5.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Windows.Extensions.Reference/5.0.0.0": { + "compile": { + "System.Windows.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/5.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/5.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/5.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/5.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/5.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/5.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "rmutr-report/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "FastReport.Compat/2021.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BcHoqU3Bw/99fZ3OtiMPM1qChgFgtfyDYaszDNEB56s92yyu0JpPA/4DUjhjoI1m56Vcl5K3acwnzQ8sXz3HrA==", + "path": "fastreport.compat/2021.2.0", + "hashPath": "fastreport.compat.2021.2.0.nupkg.sha512" + }, + "FastReport.Core/2021.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRTL8X6LVvLsl96bzbYrB2bNFlr4n55G9ye4qCjcgvlcAi6KtDnG3b1TP1Bn05f94Ydxo/2/xENRSNe23bK3kg==", + "path": "fastreport.core/2021.3.0", + "hashPath": "fastreport.core.2021.3.0.nupkg.sha512" + }, + "FastReport.DataVisualization/2021.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LN19UDFkn6Sq5ahmonAsnnHNUn64IcO6ZLFrJ1DEC6qS7Qq+X9Ekq5d7zCb6fzINxFxRgJHquhNI3QCZxo+8Sg==", + "path": "fastreport.datavisualization/2021.2.0", + "hashPath": "fastreport.datavisualization.2021.2.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg==", + "path": "microsoft.codeanalysis.analyzers/2.9.4", + "hashPath": "microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N5yQdGy+M4kimVG7hwCeGTCfgYjK2o5b/Shumkb/rCC+/SAkvP1HUAYK+vxPFS7dLJNtXLRsmPHKj3fnyNWnrw==", + "path": "microsoft.codeanalysis.common/3.3.1", + "hashPath": "microsoft.codeanalysis.common.3.3.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WDUIhTHem38H6VJ98x2Ssq0fweakJHnHYl7vbG8ARnsAwLoJKCQCy78EeY1oRrCKG42j0v6JVljKkeqSDA28UA==", + "path": "microsoft.codeanalysis.csharp/3.3.1", + "hashPath": "microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.VisualBasic/3.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F7fc/G+0ocOYkKSCJ7Y8Q7eAEkAdG5RYODI9FtSl2Hm8zIDBVA3NccCm98gaOvCamLfMHYqeOjpb3yJnnw3m/w==", + "path": "microsoft.codeanalysis.visualbasic/3.3.1", + "hashPath": "microsoft.codeanalysis.visualbasic.3.3.1.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TsETIgVJb/AKoYfSP+iCxkuly5d3inZjTdx/ItZLk2CxY85v8083OBS3uai84kK3/baLnS5/b5XGs6zR7SuuHQ==", + "path": "microsoft.netcore.platforms/3.0.0", + "hashPath": "microsoft.netcore.platforms.3.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==", + "path": "microsoft.win32.registry/4.4.0", + "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Edg+pFW5C8WJb680Za2kTV8TqUi6Ahl/WldRVoOVJ23UQLpDHFspa+umgFjkWZw24ETsU99Cg+ErZz683M4chg==", + "path": "microsoft.win32.systemevents/4.6.0", + "hashPath": "microsoft.win32.systemevents.4.6.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/5.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==", + "path": "swashbuckle.aspnetcore/5.6.3", + "hashPath": "swashbuckle.aspnetcore.5.6.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/5.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", + "path": "swashbuckle.aspnetcore.swagger/5.6.3", + "hashPath": "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", + "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==", + "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512" + }, + "System.Collections.Immutable/1.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "path": "system.collections.immutable/1.5.0", + "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D1hEOS1oPLJ6WcGCzpTWe8SauWVxnDoDTUWhv5XCNdRm/QeSUk4BQ3ZDe7BH+zNVHDBkPYjVzpVjnCl43eOSGg==", + "path": "system.data.sqlclient/4.4.3", + "hashPath": "system.data.sqlclient.4.4.3.nupkg.sha512" + }, + "System.Drawing.Common/4.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TFAADvBEUhdDb2Lteq/BUeG0J1y7a0GyFdpB8yE/eAcbiN0R5MII1nXExXsrtRZiO8C/L9SozL2wGqkRlhiv6A==", + "path": "system.drawing.common/4.6.1", + "hashPath": "system.drawing.common.4.6.1.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512" + }, + "System.Security.AccessControl/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==", + "path": "system.security.accesscontrol/4.4.0", + "hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==", + "path": "system.security.cryptography.pkcs/4.5.2", + "hashPath": "system.security.cryptography.pkcs.4.5.2.nupkg.sha512" + }, + "System.Security.Permissions/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ArK+Kh7BSqWhspqO3qe8R25MeUzBm3ZdWbYiN6Q0kLO3nR4dLeZzS03C0QUI/470w7pGRm7lUZ9sjfDQKJjRcQ==", + "path": "system.security.permissions/4.4.0", + "hashPath": "system.security.permissions.4.4.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==", + "path": "system.security.principal.windows/4.4.0", + "hashPath": "system.security.principal.windows.4.4.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "path": "system.text.encoding.codepages/4.5.1", + "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "System.Windows.Extensions/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GL4izk0KgeyXklUOHViAk7y1IOYVYcn8nDpJZgcCqNzTGv2xd+8rgGgMKMo8G9nvfEuRCrNxWnGc74EiuYH2YA==", + "path": "system.windows.extensions/4.6.0", + "hashPath": "system.windows.extensions.4.6.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Antiforgery/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/10.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Permissions.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows.Extensions.Reference/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/5.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/rmutr-report.runtimeconfig.dev.json b/bin/Debug/net5.0/rmutr-report.runtimeconfig.dev.json new file mode 100644 index 0000000..3dbc57f --- /dev/null +++ b/bin/Debug/net5.0/rmutr-report.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Mercedes Benz\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Mercedes Benz\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/rmutr-report.runtimeconfig.json b/bin/Debug/net5.0/rmutr-report.runtimeconfig.json new file mode 100644 index 0000000..93e2b02 --- /dev/null +++ b/bin/Debug/net5.0/rmutr-report.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.AspNetCore.App", + "version": "5.0.0" + }, + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/rmutr-report.xml b/bin/Debug/net5.0/rmutr-report.xml new file mode 100644 index 0000000..3a8fd64 --- /dev/null +++ b/bin/Debug/net5.0/rmutr-report.xml @@ -0,0 +1,8 @@ + + + + rmutr-report + + + + diff --git a/nuget.config b/nuget.config new file mode 100644 index 0000000..7ec2d29 --- /dev/null +++ b/nuget.config @@ -0,0 +1,7 @@ + + + + + + + diff --git a/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net5.0/rmutr-report.AssemblyInfo.cs b/obj/Debug/net5.0/rmutr-report.AssemblyInfo.cs new file mode 100644 index 0000000..f9c2842 --- /dev/null +++ b/obj/Debug/net5.0/rmutr-report.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("rmutr-report")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("rmutr-report")] +[assembly: System.Reflection.AssemblyTitleAttribute("rmutr-report")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net5.0/rmutr-report.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net5.0/rmutr-report.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2fd9133 --- /dev/null +++ b/obj/Debug/net5.0/rmutr-report.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows +build_property.RootNamespace = rmutr_report +build_property.ProjectDir = C:\Users\Mercedes Benz\Documents\rmutr_report\ diff --git a/obj/Debug/net5.0/rmutr-report.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net5.0/rmutr-report.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..5c337f8 --- /dev/null +++ b/obj/Debug/net5.0/rmutr-report.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net5.0/rmutr-report.csproj.CopyComplete b/obj/Debug/net5.0/rmutr-report.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt b/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..63e83d4 --- /dev/null +++ b/obj/Debug/net5.0/rmutr-report.csproj.FileListAbsolute.txt @@ -0,0 +1,166 @@ +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\nuget.config +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\appsettings.Development.json +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\appsettings.json +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.exe +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.deps.json +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.runtimeconfig.json +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.runtimeconfig.dev.json +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ref\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.pdb +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\FastReport.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.CodeAnalysis.VisualBasic.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Microsoft.OpenApi.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\System.Data.SqlClient.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.Compat.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.DataVisualization.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win-arm64\native\sni.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win-x64\native\sni.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win-x86\native\sni.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.csproj.AssemblyReference.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.AssemblyInfoInputs.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.AssemblyInfo.cs +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.csproj.CoreCompileInputs.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cs +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.Manifest.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.xml +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\scopedcss\bundle\rmutr-report.styles.css +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.RazorTargetAssemblyInfo.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.csproj.CopyComplete +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\ref\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.pdb +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.genruntimeconfig.cache +C:\Users\Mercedes Benz\Documents\rmutr-report\bin\Debug\net5.0\rmutr-report.xml +C:\Users\Mercedes Benz\Documents\rmutr-report\obj\Debug\net5.0\rmutr-report.xml +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\nuget.config +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\appsettings.Development.json +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\appsettings.json +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.exe +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.deps.json +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.runtimeconfig.json +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.runtimeconfig.dev.json +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ref\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.pdb +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\rmutr-report.xml +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\FastReport.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.CodeAnalysis.VisualBasic.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Microsoft.OpenApi.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\System.Data.SqlClient.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.VisualBasic.resources.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.Compat.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\any\lib\netcoreapp3.0\FastReport.DataVisualization.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win-arm64\native\sni.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win-x64\native\sni.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win-x86\native\sni.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.csproj.AssemblyReference.cache +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.AssemblyInfoInputs.cache +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.AssemblyInfo.cs +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.csproj.CoreCompileInputs.cache +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cs +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.MvcApplicationPartsAssemblyInfo.cache +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.Manifest.cache +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\staticwebassets\rmutr-report.StaticWebAssets.xml +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\scopedcss\bundle\rmutr-report.styles.css +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.RazorTargetAssemblyInfo.cache +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.csproj.CopyComplete +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\ref\rmutr-report.dll +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.xml +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.pdb +C:\Users\Mercedes Benz\Documents\rmutr_report\obj\Debug\net5.0\rmutr-report.genruntimeconfig.cache diff --git a/obj/Debug/net5.0/rmutr-report.xml b/obj/Debug/net5.0/rmutr-report.xml new file mode 100644 index 0000000..3a8fd64 --- /dev/null +++ b/obj/Debug/net5.0/rmutr-report.xml @@ -0,0 +1,8 @@ + + + + rmutr-report + + + + diff --git a/obj/Debug/net5.0/staticwebassets/rmutr-report.StaticWebAssets.xml b/obj/Debug/net5.0/staticwebassets/rmutr-report.StaticWebAssets.xml new file mode 100644 index 0000000..7b21d22 --- /dev/null +++ b/obj/Debug/net5.0/staticwebassets/rmutr-report.StaticWebAssets.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..09e5ece --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,1663 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "FastReport.Compat/2021.2.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "3.3.1", + "Microsoft.CodeAnalysis.VisualBasic": "3.3.1", + "System.Drawing.Common": "4.6.0", + "System.Windows.Extensions": "4.6.0" + }, + "compile": { + "lib/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netcoreapp3.0/_._": {} + }, + "build": { + "build/netcoreapp3.0/_._": {} + }, + "runtimeTargets": { + "runtimes/any/lib/netcoreapp3.0/FastReport.Compat.dll": { + "assetType": "runtime", + "rid": "any" + } + } + }, + "FastReport.Core/2021.3.0": { + "type": "package", + "dependencies": { + "FastReport.Compat": "2021.2.0", + "FastReport.DataVisualization": "2021.2.0", + "System.Drawing.Common": "4.6.1", + "System.Security.Cryptography.Pkcs": "4.5.2", + "System.Security.Permissions": "4.4.0", + "System.Text.Encoding.CodePages": "4.5.1" + }, + "compile": { + "lib/netstandard2.1/FastReport.dll": {} + }, + "runtime": { + "lib/netstandard2.1/FastReport.dll": {} + }, + "build": { + "buildTransitive/FastReport.Core.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/FastReport.Core.props": {} + } + }, + "FastReport.DataVisualization/2021.2.0": { + "type": "package", + "dependencies": { + "FastReport.Compat": "2021.2.0", + "System.Data.SqlClient": "4.4.3", + "System.Drawing.Common": "4.6.0" + }, + "compile": { + "lib/netcoreapp3.0/_._": {} + }, + "runtime": { + "lib/netcoreapp3.0/_._": {} + }, + "build": { + "build/netcoreapp3.0/_._": {} + }, + "runtimeTargets": { + "runtimes/any/lib/netcoreapp3.0/FastReport.DataVisualization.dll": { + "assetType": "runtime", + "rid": "any" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.4": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/3.3.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.4", + "System.Collections.Immutable": "1.5.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[3.3.1]" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.VisualBasic/3.3.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[3.3.1]" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.NETCore.Platforms/3.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.AccessControl": "4.4.0", + "System.Security.Principal.Windows": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.6.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Swashbuckle.AspNetCore/5.6.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "5.6.3", + "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3", + "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/5.6.3": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "5.6.3" + }, + "compile": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.Collections.Immutable/1.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Data.SqlClient/4.4.3": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.4.0", + "System.Security.Principal.Windows": "4.4.0", + "System.Text.Encoding.CodePages": "4.4.0", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/4.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.0.0", + "Microsoft.Win32.SystemEvents": "4.6.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Security.AccessControl/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/4.5.2": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.4.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/4.6.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.6.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "FastReport.Compat/2021.2.0": { + "sha512": "BcHoqU3Bw/99fZ3OtiMPM1qChgFgtfyDYaszDNEB56s92yyu0JpPA/4DUjhjoI1m56Vcl5K3acwnzQ8sXz3HrA==", + "type": "package", + "path": "fastreport.compat/2021.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "build/netcoreapp3.0/FastReport.Compat.targets", + "build/netcoreapp3.0/lib/Any/FastReport.Compat.dll", + "build/netcoreapp3.0/lib/Win/FastReport.Compat.dll", + "fastreport.compat.2021.2.0.nupkg.sha512", + "fastreport.compat.nuspec", + "frlogo-big.png", + "lib/net40/FastReport.Compat.dll", + "lib/net5.0-windows7.0/FastReport.Compat.dll", + "lib/netcoreapp3.0/_._", + "lib/netstandard2.0/FastReport.Compat.dll", + "lib/netstandard2.1/FastReport.Compat.dll", + "runtimes/any/lib/netcoreapp3.0/FastReport.Compat.dll" + ] + }, + "FastReport.Core/2021.3.0": { + "sha512": "zRTL8X6LVvLsl96bzbYrB2bNFlr4n55G9ye4qCjcgvlcAi6KtDnG3b1TP1Bn05f94Ydxo/2/xENRSNe23bK3kg==", + "type": "package", + "path": "fastreport.core/2021.3.0", + "files": [ + ".nupkg.metadata", + "build/FastReport.Core.props", + "buildMultiTargeting/FastReport.Core.props", + "buildTransitive/FastReport.Core.props", + "fastreport.core.2021.3.0.nupkg.sha512", + "fastreport.core.nuspec", + "frlogo-big.png", + "lib/net40/FastReport.dll", + "lib/netstandard2.0/FastReport.dll", + "lib/netstandard2.1/FastReport.dll" + ] + }, + "FastReport.DataVisualization/2021.2.0": { + "sha512": "LN19UDFkn6Sq5ahmonAsnnHNUn64IcO6ZLFrJ1DEC6qS7Qq+X9Ekq5d7zCb6fzINxFxRgJHquhNI3QCZxo+8Sg==", + "type": "package", + "path": "fastreport.datavisualization/2021.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "build/netcoreapp3.0/FastReport.DataVisualization.targets", + "build/netcoreapp3.0/lib/Any/FastReport.DataVisualization.dll", + "build/netcoreapp3.0/lib/Win/FastReport.DataVisualization.dll", + "fastreport.datavisualization.2021.2.0.nupkg.sha512", + "fastreport.datavisualization.nuspec", + "frlogo-big.png", + "lib/net40/FastReport.DataVisualization.dll", + "lib/net5.0-windows7.0/FastReport.DataVisualization.dll", + "lib/netcoreapp3.0/_._", + "lib/netstandard2.0/FastReport.DataVisualization.dll", + "runtimes/any/lib/netcoreapp3.0/FastReport.DataVisualization.dll" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.4": { + "sha512": "alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/2.9.4", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/3.3.1": { + "sha512": "N5yQdGy+M4kimVG7hwCeGTCfgYjK2o5b/Shumkb/rCC+/SAkvP1HUAYK+vxPFS7dLJNtXLRsmPHKj3fnyNWnrw==", + "type": "package", + "path": "microsoft.codeanalysis.common/3.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.3.3.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/3.3.1": { + "sha512": "WDUIhTHem38H6VJ98x2Ssq0fweakJHnHYl7vbG8ARnsAwLoJKCQCy78EeY1oRrCKG42j0v6JVljKkeqSDA28UA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/3.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.VisualBasic/3.3.1": { + "sha512": "F7fc/G+0ocOYkKSCJ7Y8Q7eAEkAdG5RYODI9FtSl2Hm8zIDBVA3NccCm98gaOvCamLfMHYqeOjpb3yJnnw3m/w==", + "type": "package", + "path": "microsoft.codeanalysis.visualbasic/3.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll", + "microsoft.codeanalysis.visualbasic.3.3.1.nupkg.sha512", + "microsoft.codeanalysis.visualbasic.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json" + ] + }, + "Microsoft.NETCore.Platforms/3.0.0": { + "sha512": "TsETIgVJb/AKoYfSP+iCxkuly5d3inZjTdx/ItZLk2CxY85v8083OBS3uai84kK3/baLnS5/b5XGs6zR7SuuHQ==", + "type": "package", + "path": "microsoft.netcore.platforms/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.4.0": { + "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.6.0": { + "sha512": "Edg+pFW5C8WJb680Za2kTV8TqUi6Ahl/WldRVoOVJ23UQLpDHFspa+umgFjkWZw24ETsU99Cg+ErZz683M4chg==", + "type": "package", + "path": "microsoft.win32.systemevents/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.6.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Swashbuckle.AspNetCore/5.6.3": { + "sha512": "UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==", + "type": "package", + "path": "swashbuckle.aspnetcore/5.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.5.6.3.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/5.6.3": { + "sha512": "rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/5.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": { + "sha512": "CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/5.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": { + "sha512": "BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.Collections.Immutable/1.5.0": { + "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "type": "package", + "path": "system.collections.immutable/1.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.5.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.SqlClient/4.4.3": { + "sha512": "D1hEOS1oPLJ6WcGCzpTWe8SauWVxnDoDTUWhv5XCNdRm/QeSUk4BQ3ZDe7BH+zNVHDBkPYjVzpVjnCl43eOSGg==", + "type": "package", + "path": "system.data.sqlclient/4.4.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "system.data.sqlclient.4.4.3.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/4.6.1": { + "sha512": "TFAADvBEUhdDb2Lteq/BUeG0J1y7a0GyFdpB8yE/eAcbiN0R5MII1nXExXsrtRZiO8C/L9SozL2wGqkRlhiv6A==", + "type": "package", + "path": "system.drawing.common/4.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.6.1.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": { + "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/4.4.0": { + "sha512": "2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==", + "type": "package", + "path": "system.security.accesscontrol/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "system.security.accesscontrol.4.4.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/4.5.2": { + "sha512": "lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==", + "type": "package", + "path": "system.security.cryptography.pkcs/4.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/net46/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "system.security.cryptography.pkcs.4.5.2.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.4.0": { + "sha512": "ArK+Kh7BSqWhspqO3qe8R25MeUzBm3ZdWbYiN6Q0kLO3nR4dLeZzS03C0QUI/470w7pGRm7lUZ9sjfDQKJjRcQ==", + "type": "package", + "path": "system.security.permissions/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.4.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.4.0": { + "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==", + "type": "package", + "path": "system.security.principal.windows/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.4.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.CodePages/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/4.6.0": { + "sha512": "GL4izk0KgeyXklUOHViAk7y1IOYVYcn8nDpJZgcCqNzTGv2xd+8rgGgMKMo8G9nvfEuRCrNxWnGc74EiuYH2YA==", + "type": "package", + "path": "system.windows.extensions/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.6.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "FastReport.Core >= 2021.3.0", + "Swashbuckle.AspNetCore >= 5.6.3" + ] + }, + "packageFolders": { + "C:\\Users\\Mercedes Benz\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj", + "projectName": "rmutr-report", + "projectPath": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj", + "packagesPath": "C:\\Users\\Mercedes Benz\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\NuGet.Config", + "C:\\Users\\Mercedes Benz\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.71dev.com/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "FastReport.Core": { + "target": "Package", + "version": "[2021.3.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[5.6.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json new file mode 100644 index 0000000..6cfac77 --- /dev/null +++ b/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","projectName":"rmutr-report","projectPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj","outputPath":"C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.71dev.com/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","dependencies":{"FastReport.Core":{"target":"Package","version":"[2021.3.0, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[5.6.3, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info new file mode 100644 index 0000000..e827981 --- /dev/null +++ b/obj/rider.project.restore.info @@ -0,0 +1 @@ +16537372830755350 \ No newline at end of file diff --git a/obj/rmutr-report.csproj.nuget.dgspec.json b/obj/rmutr-report.csproj.nuget.dgspec.json new file mode 100644 index 0000000..cf7f761 --- /dev/null +++ b/obj/rmutr-report.csproj.nuget.dgspec.json @@ -0,0 +1,77 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj": {} + }, + "projects": { + "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj", + "projectName": "rmutr-report", + "projectPath": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\rmutr-report.csproj", + "packagesPath": "C:\\Users\\Mercedes Benz\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Mercedes Benz\\Documents\\rmutr_report\\NuGet.Config", + "C:\\Users\\Mercedes Benz\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.71dev.com/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "FastReport.Core": { + "target": "Package", + "version": "[2021.3.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[5.6.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.403\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/rmutr-report.csproj.nuget.g.props b/obj/rmutr-report.csproj.nuget.g.props new file mode 100644 index 0000000..6784dbd --- /dev/null +++ b/obj/rmutr-report.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Mercedes Benz\.nuget\packages\ + PackageReference + 6.0.0 + + + + + + + + + + + C:\Users\Mercedes Benz\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + C:\Users\Mercedes Benz\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.4 + + \ No newline at end of file diff --git a/obj/rmutr-report.csproj.nuget.g.targets b/obj/rmutr-report.csproj.nuget.g.targets new file mode 100644 index 0000000..a03b337 --- /dev/null +++ b/obj/rmutr-report.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/rmutr-report.csproj b/rmutr-report.csproj new file mode 100644 index 0000000..c6cdef0 --- /dev/null +++ b/rmutr-report.csproj @@ -0,0 +1,16 @@ + + + + net5.0 + rmutr_report + + + true + $(NoWarn);1591 + + + + + + + diff --git a/wwwroot/Logo-RMUTR.png b/wwwroot/Logo-RMUTR.png new file mode 100644 index 0000000..c8fa0da Binary files /dev/null and b/wwwroot/Logo-RMUTR.png differ diff --git a/wwwroot/reports/man_power.frx b/wwwroot/reports/man_power.frx new file mode 100644 index 0000000..f53a429 --- /dev/null +++ b/wwwroot/reports/man_power.frx @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wwwroot/reports/personnel_summary.frx b/wwwroot/reports/personnel_summary.frx new file mode 100644 index 0000000..1b72691 --- /dev/null +++ b/wwwroot/reports/personnel_summary.frx @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +