diff --git a/APICycleVDP.sln b/APICycleVDP.sln
new file mode 100644
index 0000000..2329781
--- /dev/null
+++ b/APICycleVDP.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.11.35303.130
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "APICycleVDP", "APICycleVDP\APICycleVDP.csproj", "{EE827F72-C902-4E67-B4E7-A1B869310349}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenCycleVDP", "GenCycleVDP\GenCycleVDP.csproj", "{CEFFBDBE-DDBA-421D-80FA-A730914A5BDD}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {EE827F72-C902-4E67-B4E7-A1B869310349}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {EE827F72-C902-4E67-B4E7-A1B869310349}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {EE827F72-C902-4E67-B4E7-A1B869310349}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {EE827F72-C902-4E67-B4E7-A1B869310349}.Release|Any CPU.Build.0 = Release|Any CPU
+ {CEFFBDBE-DDBA-421D-80FA-A730914A5BDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CEFFBDBE-DDBA-421D-80FA-A730914A5BDD}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CEFFBDBE-DDBA-421D-80FA-A730914A5BDD}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CEFFBDBE-DDBA-421D-80FA-A730914A5BDD}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {A058F6B2-4BE7-414E-BCA6-A32B16A3DDDF}
+ EndGlobalSection
+EndGlobal
diff --git a/APICycleVDP/APICycleVDP.csproj b/APICycleVDP/APICycleVDP.csproj
new file mode 100644
index 0000000..64687dd
--- /dev/null
+++ b/APICycleVDP/APICycleVDP.csproj
@@ -0,0 +1,19 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/APICycleVDP/Controller/CyclesController.cs b/APICycleVDP/Controller/CyclesController.cs
new file mode 100644
index 0000000..cdc7db2
--- /dev/null
+++ b/APICycleVDP/Controller/CyclesController.cs
@@ -0,0 +1,71 @@
+using Microsoft.AspNetCore.Cors;
+using Microsoft.AspNetCore.Mvc;
+using Newtonsoft.Json.Linq;
+using DbCycleVDP;
+
+namespace APICycleVDP.Controller
+{
+ [EnableCors("All")]
+ public class CyclesController : ControllerBase
+ {
+ [HttpPost]
+ public ActionResult CurrCycles()
+ {
+ var result = new JObject
+ {
+ ["currTime"] = DateTime.Now
+ };
+
+ var tasks = new List>();
+ //var v = new DB.WorkDB();
+ for (var i = 1; i <= 48; i++)
+ tasks.Add(WorkDB.GetCycle(i));
+
+ var arr = new JArray();
+ for (var i = 0; i < tasks.Count; i++)
+ {
+ var tmp = tasks[i].GetAwaiter().GetResult();
+ if (tmp != null)
+ {
+ var t = new JObject();
+ t["vdp"] = tmp.NumVdp;
+ t["cycle"] = tmp.NumCycle;
+ t["factStart"] = tmp.FactStart;
+ t["factEnd"] = tmp.FactEnd;
+ t["thinkEnd"] = tmp.ThinkEnd;
+ arr.Add(t);
+ }
+ }
+ result["data"] = arr;
+
+ return Content(result.ToString(), "application/json");
+ }
+ }
+
+
+ public static class WorkDB
+ {
+ async public static Task GetCycle(int vdp)
+ {
+ var result = new TableCycle();
+ await Task.Run(() =>
+ {
+ try
+ {
+ using var db = new DbFurnace();
+ var tmp = (from u in db.Cycles
+ where
+ u.NumVdp == vdp
+ orderby u.FactStart descending
+ select u).FirstOrDefault();
+ result = tmp;
+ }
+ catch (Exception e)
+ {
+ Console.WriteLine(e.Message);
+ }
+ });
+ return result;
+ }
+ }
+}
diff --git a/APICycleVDP/Program.cs b/APICycleVDP/Program.cs
new file mode 100644
index 0000000..5758fa3
--- /dev/null
+++ b/APICycleVDP/Program.cs
@@ -0,0 +1,22 @@
+var builder = WebApplication.CreateBuilder(args);
+
+builder.Services.AddControllers();
+builder.Services.AddCors(options =>
+{
+ options.AddPolicy("AllowAllOrigins",
+ builder =>
+ {
+ builder.AllowAnyOrigin()
+ .AllowAnyMethod()
+ .AllowAnyHeader();
+ });
+});
+
+var app = builder.Build();
+
+app.UseCors("AllowAllOrigins");
+
+app.MapControllerRoute(name: "CurrCycles", pattern: "/currcycles",
+ defaults: new { controller = "Cycles", action = "CurrCycles" });
+
+app.Run();
\ No newline at end of file
diff --git a/Diagram-API/Properties/launchSettings.json b/APICycleVDP/Properties/launchSettings.json
similarity index 55%
rename from Diagram-API/Properties/launchSettings.json
rename to APICycleVDP/Properties/launchSettings.json
index fa7a398..b9148c3 100644
--- a/Diagram-API/Properties/launchSettings.json
+++ b/APICycleVDP/Properties/launchSettings.json
@@ -1,24 +1,28 @@
{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
"iisExpress": {
- "applicationUrl": "http://localhost:9312",
+ "applicationUrl": "http://localhost:37468",
"sslPort": 0
}
},
"profiles": {
- "IIS Express": {
- "commandName": "IISExpress",
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
"launchBrowser": true,
+ "launchUrl": "currcycles",
+ "applicationUrl": "http://localhost:65041",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
- "Diagram_API": {
- "commandName": "Project",
+ "IIS Express": {
+ "commandName": "IISExpress",
"launchBrowser": true,
- "applicationUrl": "http://localhost:5000",
+ "launchUrl": "currcycles",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
diff --git a/APICycleVDP/appsettings.Development.json b/APICycleVDP/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/APICycleVDP/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/APICycleVDP/appsettings.json b/APICycleVDP/appsettings.json
new file mode 100644
index 0000000..0727d64
--- /dev/null
+++ b/APICycleVDP/appsettings.json
@@ -0,0 +1,16 @@
+{
+ "Kestrel": {
+ "Endpoints": {
+ "Http": {
+ "Url": "http://*:65041"
+ }
+ }
+ },
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/DbCycleVDP/DbFurnace.cs b/DbCycleVDP/DbFurnace.cs
new file mode 100644
index 0000000..8941433
--- /dev/null
+++ b/DbCycleVDP/DbFurnace.cs
@@ -0,0 +1,24 @@
+using System;
+using Microsoft.EntityFrameworkCore;
+
+namespace DbCycleVDP
+{
+ public class DbFurnace : DbContext
+ {
+ public DbSet Cycles { get; set; }
+ public DbFurnace()
+ {
+ Database.EnsureCreated();
+ }
+ protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
+ {
+// optionsBuilder.UseMySql("server=127.0.0.1;user=diplom;password=diplom;database=VDPCycles;", new MySqlServerVersion(new Version(8, 0)));
+ optionsBuilder.UseMySql("server=37.79.216.218;user=mytest;password=mytest;database=VDPCycles;", new MySqlServerVersion(new Version(8, 0)));
+ }
+
+ protected override void OnModelCreating(ModelBuilder modelBuilder)
+ {
+
+ }
+ }
+}
diff --git a/DbCycleVDP/TableCycle.cs b/DbCycleVDP/TableCycle.cs
new file mode 100644
index 0000000..7246b25
--- /dev/null
+++ b/DbCycleVDP/TableCycle.cs
@@ -0,0 +1,23 @@
+using System;
+using System.ComponentModel.DataAnnotations.Schema;
+using System.ComponentModel.DataAnnotations;
+
+namespace DbCycleVDP
+{
+ [Table("Cycles")]
+ public class TableCycle
+ {
+ [Column("idCycle"), Required, Key]
+ public int IdCycle { get; set; }
+ [Column("numVdp")]
+ public int NumVdp { get; set; }
+ [Column("numCycle")]
+ public int NumCycle { get; set; }
+ [Column("factStart")]
+ public DateTime FactStart { get; set; }
+ [Column("thinkEnd")]
+ public DateTime ThinkEnd { get; set; }
+ [Column("factEnd")]
+ public DateTime FactEnd { get; set; }
+ }
+}
diff --git a/Diagram-API.sln b/Diagram-API.sln
deleted file mode 100644
index 5c6aa6e..0000000
--- a/Diagram-API.sln
+++ /dev/null
@@ -1,31 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.31105.61
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GenerateVDPCycle", "GenerateVDPCycle\GenerateVDPCycle.csproj", "{018AAFB3-4293-4F38-9E6C-C9A7F16C278D}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Diagram-API", "Diagram-API\Diagram-API.csproj", "{7159386F-FF50-43BD-B93F-C0441D58C15E}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {018AAFB3-4293-4F38-9E6C-C9A7F16C278D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {018AAFB3-4293-4F38-9E6C-C9A7F16C278D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {018AAFB3-4293-4F38-9E6C-C9A7F16C278D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {018AAFB3-4293-4F38-9E6C-C9A7F16C278D}.Release|Any CPU.Build.0 = Release|Any CPU
- {7159386F-FF50-43BD-B93F-C0441D58C15E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7159386F-FF50-43BD-B93F-C0441D58C15E}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7159386F-FF50-43BD-B93F-C0441D58C15E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7159386F-FF50-43BD-B93F-C0441D58C15E}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {0DFB9976-856A-40AB-8E91-1962DAE0EA2D}
- EndGlobalSection
-EndGlobal
diff --git a/Diagram-API/Controller/CyclesController.cs b/Diagram-API/Controller/CyclesController.cs
deleted file mode 100644
index b589e99..0000000
--- a/Diagram-API/Controller/CyclesController.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using Microsoft.AspNetCore.Cors;
-using Microsoft.AspNetCore.Mvc;
-using Newtonsoft.Json.Linq;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-
-namespace Diagram_API.Controller
-{
- [EnableCors("All")]
- public class CyclesController : ControllerBase
- {
-
- [HttpPost]
- public ActionResult CurrCycles()
- {
- var result = new JObject();
- result["currTime"] = DateTime.Now;
-
- var tasks = new List>();
- //var v = new DB.WorkDB();
- for (var i = 1; i <= 48; i++)
- tasks.Add(DB.WorkDB.GetCycle(i));
-
- var arr = new JArray();
- for (var i = 0; i < tasks.Count; i++)
- {
- var tmp = tasks[i].GetAwaiter().GetResult();
- if (tmp != null)
- {
- var t = new JObject();
- t["vdp"] = tmp.NumVdp;
- t["cycle"] = tmp.NumCycle;
- t["factStart"] = tmp.FactStart;
- t["factEnd"] = tmp.FactEnd;
- t["thinkEnd"] = tmp.ThinkEnd;
- arr.Add(t);
- }
- }
- result["data"] = arr;
-
- return Content(result.ToString(), "application/json");
- }
- }
-}
diff --git a/Diagram-API/DBvdp.cs b/Diagram-API/DBvdp.cs
deleted file mode 100644
index de53487..0000000
--- a/Diagram-API/DBvdp.cs
+++ /dev/null
@@ -1,74 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.Linq;
-using System.Threading.Tasks;
-
-namespace Diagram_API.DB
-{
- public class VdpDB : DbContext
- {
- public DbSet Cycles { get; set; }
- public VdpDB()
- {
- Database.EnsureCreated();
- }
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
- {
- optionsBuilder.UseMySql("server=127.0.0.1;user=diplom;password=diplom;database=VDPCycles;");
- }
-
- protected override void OnModelCreating(ModelBuilder modelBuilder)
- {
-
- }
- }
-
- [Table("Cycles")]
- public class Cycle
- {
- [Column("idCycle"), Required, Key]
- public int IdCycle { get; set; }
- [Column("numVdp")]
- public int NumVdp { get; set; }
- [Column("numCycle")]
- public int NumCycle { get; set; }
- [Column("factStart")]
- public DateTime FactStart { get; set; }
- [Column("thinkEnd")]
- public DateTime ThinkEnd { get; set; }
- [Column("factEnd")]
- public DateTime FactEnd { get; set; }
-
- }
-
- public static class WorkDB
- {
- async public static Task GetCycle(int vdp)
- {
- var result = new Cycle();
- await Task.Run(() =>
- {
- try
- {
- using (var db = new DB.VdpDB())
- {
- var tmp = (from u in db.Cycles
- where
- u.NumVdp == vdp
- orderby u.FactStart descending
- select u).FirstOrDefault();
- result = tmp;
- }
- }
- catch (Exception e)
- {
- Console.WriteLine(e.Message);
- }
- });
- return result;
- }
- }
-}
diff --git a/Diagram-API/Diagram-API.csproj b/Diagram-API/Diagram-API.csproj
deleted file mode 100644
index 37a5772..0000000
--- a/Diagram-API/Diagram-API.csproj
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- netcoreapp3.1
- Diagram_API
-
-
-
-
-
-
-
diff --git a/Diagram-API/Diagram-API.csproj.user b/Diagram-API/Diagram-API.csproj.user
deleted file mode 100644
index 8212252..0000000
--- a/Diagram-API/Diagram-API.csproj.user
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- MvcControllerEmptyScaffolder
- root/Common/MVC/Controller
- Diagram_API
- G:\Diagram-API\Diagram-API\Properties\PublishProfiles\FolderProfile.pubxml
-
-
- ProjectDebugger
-
-
\ No newline at end of file
diff --git a/Diagram-API/Program.cs b/Diagram-API/Program.cs
deleted file mode 100644
index c5ccda9..0000000
--- a/Diagram-API/Program.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.Extensions.Configuration;
-using Microsoft.Extensions.Hosting;
-using Microsoft.Extensions.Logging;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-
-namespace Diagram_API
-{
- 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().UseUrls("http://*:65041");
- });
- }
-}
diff --git a/Diagram-API/Properties/PublishProfiles/FolderProfile.pubxml b/Diagram-API/Properties/PublishProfiles/FolderProfile.pubxml
deleted file mode 100644
index c0c4984..0000000
--- a/Diagram-API/Properties/PublishProfiles/FolderProfile.pubxml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- False
- False
- True
- Release
- Any CPU
- FileSystem
- bin\Release\netcoreapp3.1\publish\
- FileSystem
-
-
\ No newline at end of file
diff --git a/Diagram-API/Properties/PublishProfiles/FolderProfile.pubxml.user b/Diagram-API/Properties/PublishProfiles/FolderProfile.pubxml.user
deleted file mode 100644
index da14f19..0000000
--- a/Diagram-API/Properties/PublishProfiles/FolderProfile.pubxml.user
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- <_PublishTargetUrl>G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\publish\
- True|2021-05-15T17:10:59.1171936Z;True|2021-05-15T22:06:16.7802197+05:00;
-
-
\ No newline at end of file
diff --git a/Diagram-API/Startup.cs b/Diagram-API/Startup.cs
deleted file mode 100644
index 68bbfc2..0000000
--- a/Diagram-API/Startup.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-using Microsoft.AspNetCore.Builder;
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.AspNetCore.Http;
-using Microsoft.Extensions.DependencyInjection;
-using Microsoft.Extensions.Hosting;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-
-namespace Diagram_API
-{
- public class Startup
- {
- // This method gets called by the runtime. Use this method to add services to the container.
- // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddCors(options =>
- {
- options.AddPolicy(
- name: "All",
- builder => {
- builder
- .AllowAnyOrigin()
- .AllowAnyHeader()
- .AllowAnyMethod()
- //.AllowCredentials()
- .SetIsOriginAllowed((host) => true);
- });
- });
- services.AddControllers();
- }
-
- // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- app.UseRouting();
- app.UseCors(
- options => options
- .AllowAnyOrigin()
- .AllowAnyHeader()
- .AllowAnyMethod()
- //.AllowCredentials()
- .SetIsOriginAllowed((host) => true)
- );
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllerRoute(name: "CurrCycles", pattern: "/currcycles",
- defaults: new { controller = "Cycles", action = "CurrCycles" });
-
- endpoints.MapControllerRoute(name: "ListCurrencies", pattern: "/listcurrencies",
- defaults: new { controller = "Rates", action = "GetListCurrencies" });
- endpoints.MapControllerRoute(name: "CurrentRates", pattern: "/currentrates",
- defaults: new { controller = "Rates", action = "GetCurrentRates" });
- endpoints.MapControllerRoute(name: "RatesList", pattern: "/rateslist",
- defaults: new { controller = "Rates", action = "GetRatesList" });
- });
- }
- }
-}
diff --git a/Diagram-API/appsettings.Development.json b/Diagram-API/appsettings.Development.json
deleted file mode 100644
index 8983e0f..0000000
--- a/Diagram-API/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- }
-}
diff --git a/Diagram-API/appsettings.json b/Diagram-API/appsettings.json
deleted file mode 100644
index d9d9a9b..0000000
--- a/Diagram-API/appsettings.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.deps.json b/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.deps.json
deleted file mode 100644
index 3d02eb9..0000000
--- a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.deps.json
+++ /dev/null
@@ -1,3759 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {
- "defines": [
- "TRACE",
- "DEBUG",
- "NETCOREAPP",
- "NETCOREAPP3_1",
- "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": "8.0",
- "platform": "",
- "allowUnsafe": false,
- "warningsAsErrors": false,
- "optimize": false,
- "keyFile": "",
- "emitEntryPoint": true,
- "xmlDoc": false,
- "debugType": "portable"
- },
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "Diagram-API/1.0.0": {
- "dependencies": {
- "Pomelo.EntityFrameworkCore.MySql": "3.2.5",
- "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Components": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
- "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.AspNetCore": "3.1.0.0",
- "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
- "Microsoft.AspNetCore.Http": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Features": "3.1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
- "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Identity": "3.1.0.0",
- "Microsoft.AspNetCore.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Metadata": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
- "Microsoft.AspNetCore.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
- "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
- "Microsoft.AspNetCore.Session": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
- "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
- "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "3.1.0.0",
- "Microsoft.CSharp.Reference": "4.0.0.0",
- "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
- "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Hosting": "3.1.0.0",
- "Microsoft.Extensions.Http": "3.1.0.0",
- "Microsoft.Extensions.Identity.Core": "3.1.0.0",
- "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Localization": "3.1.0.0",
- "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
- "Microsoft.Extensions.Logging.Console": "3.1.0.0",
- "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
- "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
- "Microsoft.Extensions.ObjectPool": "3.1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
- "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
- "Microsoft.Extensions.WebEncoders": "3.1.0.0",
- "Microsoft.JSInterop": "3.1.0.0",
- "Microsoft.Net.Http.Headers": "3.1.0.0",
- "Microsoft.VisualBasic.Core": "10.0.5.0",
- "Microsoft.VisualBasic": "10.0.0.0",
- "Microsoft.Win32.Primitives": "4.1.2.0",
- "Microsoft.Win32.Registry": "4.1.3.0",
- "mscorlib": "4.0.0.0",
- "netstandard": "2.1.0.0",
- "System.AppContext": "4.2.2.0",
- "System.Buffers": "4.0.2.0",
- "System.Collections.Concurrent": "4.0.15.0",
- "System.Collections": "4.1.2.0",
- "System.Collections.NonGeneric": "4.1.2.0",
- "System.Collections.Specialized": "4.1.2.0",
- "System.ComponentModel.Annotations.Reference": "4.3.1.0",
- "System.ComponentModel.DataAnnotations": "4.0.0.0",
- "System.ComponentModel": "4.0.4.0",
- "System.ComponentModel.EventBasedAsync": "4.1.2.0",
- "System.ComponentModel.Primitives": "4.2.2.0",
- "System.ComponentModel.TypeConverter": "4.2.2.0",
- "System.Configuration": "4.0.0.0",
- "System.Console": "4.1.2.0",
- "System.Core": "4.0.0.0",
- "System.Data.Common": "4.2.2.0",
- "System.Data.DataSetExtensions": "4.0.1.0",
- "System.Data": "4.0.0.0",
- "System.Diagnostics.Contracts": "4.0.4.0",
- "System.Diagnostics.Debug": "4.1.2.0",
- "System.Diagnostics.EventLog": "4.0.2.0",
- "System.Diagnostics.FileVersionInfo": "4.0.4.0",
- "System.Diagnostics.Process": "4.2.2.0",
- "System.Diagnostics.StackTrace": "4.1.2.0",
- "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
- "System.Diagnostics.Tools": "4.1.2.0",
- "System.Diagnostics.TraceSource": "4.1.2.0",
- "System.Diagnostics.Tracing": "4.2.2.0",
- "System": "4.0.0.0",
- "System.Drawing": "4.0.0.0",
- "System.Drawing.Primitives": "4.2.1.0",
- "System.Dynamic.Runtime": "4.1.2.0",
- "System.Globalization.Calendars": "4.1.2.0",
- "System.Globalization": "4.1.2.0",
- "System.Globalization.Extensions": "4.1.2.0",
- "System.IO.Compression.Brotli": "4.2.2.0",
- "System.IO.Compression": "4.2.2.0",
- "System.IO.Compression.FileSystem": "4.0.0.0",
- "System.IO.Compression.ZipFile": "4.0.5.0",
- "System.IO": "4.2.2.0",
- "System.IO.FileSystem": "4.1.2.0",
- "System.IO.FileSystem.DriveInfo": "4.1.2.0",
- "System.IO.FileSystem.Primitives": "4.1.2.0",
- "System.IO.FileSystem.Watcher": "4.1.2.0",
- "System.IO.IsolatedStorage": "4.1.2.0",
- "System.IO.MemoryMappedFiles": "4.1.2.0",
- "System.IO.Pipelines": "4.0.2.0",
- "System.IO.Pipes": "4.1.2.0",
- "System.IO.UnmanagedMemoryStream": "4.1.2.0",
- "System.Linq": "4.2.2.0",
- "System.Linq.Expressions": "4.2.2.0",
- "System.Linq.Parallel": "4.0.4.0",
- "System.Linq.Queryable": "4.0.4.0",
- "System.Memory": "4.2.1.0",
- "System.Net": "4.0.0.0",
- "System.Net.Http": "4.2.2.0",
- "System.Net.HttpListener": "4.0.2.0",
- "System.Net.Mail": "4.0.2.0",
- "System.Net.NameResolution": "4.1.2.0",
- "System.Net.NetworkInformation": "4.2.2.0",
- "System.Net.Ping": "4.1.2.0",
- "System.Net.Primitives": "4.1.2.0",
- "System.Net.Requests": "4.1.2.0",
- "System.Net.Security": "4.1.2.0",
- "System.Net.ServicePoint": "4.0.2.0",
- "System.Net.Sockets": "4.2.2.0",
- "System.Net.WebClient": "4.0.2.0",
- "System.Net.WebHeaderCollection": "4.1.2.0",
- "System.Net.WebProxy": "4.0.2.0",
- "System.Net.WebSockets.Client": "4.1.2.0",
- "System.Net.WebSockets": "4.1.2.0",
- "System.Numerics": "4.0.0.0",
- "System.Numerics.Vectors": "4.1.6.0",
- "System.ObjectModel": "4.1.2.0",
- "System.Reflection.DispatchProxy": "4.0.6.0",
- "System.Reflection": "4.2.2.0",
- "System.Reflection.Emit": "4.1.2.0",
- "System.Reflection.Emit.ILGeneration": "4.1.1.0",
- "System.Reflection.Emit.Lightweight": "4.1.1.0",
- "System.Reflection.Extensions": "4.1.2.0",
- "System.Reflection.Metadata": "1.4.5.0",
- "System.Reflection.Primitives": "4.1.2.0",
- "System.Reflection.TypeExtensions": "4.1.2.0",
- "System.Resources.Reader": "4.1.2.0",
- "System.Resources.ResourceManager": "4.1.2.0",
- "System.Resources.Writer": "4.1.2.0",
- "System.Runtime.CompilerServices.Unsafe": "4.0.6.0",
- "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
- "System.Runtime": "4.2.2.0",
- "System.Runtime.Extensions": "4.2.2.0",
- "System.Runtime.Handles": "4.1.2.0",
- "System.Runtime.InteropServices": "4.2.2.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0",
- "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
- "System.Runtime.Intrinsics": "4.0.1.0",
- "System.Runtime.Loader": "4.1.1.0",
- "System.Runtime.Numerics": "4.1.2.0",
- "System.Runtime.Serialization": "4.0.0.0",
- "System.Runtime.Serialization.Formatters": "4.0.4.0",
- "System.Runtime.Serialization.Json": "4.0.5.0",
- "System.Runtime.Serialization.Primitives": "4.2.2.0",
- "System.Runtime.Serialization.Xml": "4.1.5.0",
- "System.Security.AccessControl": "4.1.1.0",
- "System.Security.Claims": "4.1.2.0",
- "System.Security.Cryptography.Algorithms": "4.3.2.0",
- "System.Security.Cryptography.Cng": "4.3.3.0",
- "System.Security.Cryptography.Csp": "4.1.2.0",
- "System.Security.Cryptography.Encoding": "4.1.2.0",
- "System.Security.Cryptography.Primitives": "4.1.2.0",
- "System.Security.Cryptography.X509Certificates": "4.2.2.0",
- "System.Security.Cryptography.Xml": "4.0.3.0",
- "System.Security": "4.0.0.0",
- "System.Security.Permissions": "4.0.3.0",
- "System.Security.Principal": "4.1.2.0",
- "System.Security.Principal.Windows": "4.1.1.0",
- "System.Security.SecureString": "4.1.2.0",
- "System.ServiceModel.Web": "4.0.0.0",
- "System.ServiceProcess": "4.0.0.0",
- "System.Text.Encoding.CodePages": "4.1.3.0",
- "System.Text.Encoding": "4.1.2.0",
- "System.Text.Encoding.Extensions": "4.1.2.0",
- "System.Text.Encodings.Web": "4.0.5.0",
- "System.Text.Json": "4.0.1.0",
- "System.Text.RegularExpressions": "4.2.2.0",
- "System.Threading.Channels": "4.0.2.0",
- "System.Threading": "4.1.2.0",
- "System.Threading.Overlapped": "4.1.2.0",
- "System.Threading.Tasks.Dataflow": "4.6.5.0",
- "System.Threading.Tasks": "4.1.2.0",
- "System.Threading.Tasks.Extensions": "4.3.1.0",
- "System.Threading.Tasks.Parallel": "4.0.4.0",
- "System.Threading.Thread": "4.1.2.0",
- "System.Threading.ThreadPool": "4.1.2.0",
- "System.Threading.Timer": "4.1.2.0",
- "System.Transactions": "4.0.0.0",
- "System.Transactions.Local": "4.0.2.0",
- "System.ValueTuple": "4.0.3.0",
- "System.Web": "4.0.0.0",
- "System.Web.HttpUtility": "4.0.2.0",
- "System.Windows": "4.0.0.0",
- "System.Windows.Extensions": "4.0.1.0",
- "System.Xml": "4.0.0.0",
- "System.Xml.Linq": "4.0.0.0",
- "System.Xml.ReaderWriter": "4.2.2.0",
- "System.Xml.Serialization": "4.0.0.0",
- "System.Xml.XDocument": "4.1.2.0",
- "System.Xml.XmlDocument": "4.1.2.0",
- "System.Xml.XmlSerializer": "4.1.2.0",
- "System.Xml.XPath": "4.1.2.0",
- "System.Xml.XPath.XDocument": "4.1.2.0",
- "WindowsBase": "4.0.0.0"
- },
- "runtime": {
- "Diagram-API.dll": {}
- },
- "compile": {
- "Diagram-API.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- }
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.56604"
- }
- },
- "compile": {
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.1",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14",
- "Microsoft.Extensions.Caching.Memory": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging": "3.1.14",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.14"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.14",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- },
- "compile": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {}
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- },
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.14",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.5.0",
- "fileVersion": "3.2.5.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {}
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
- }
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Antiforgery.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.Policy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Forms.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Server.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Web.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.CookiePolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HostFiltering.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Html.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Features.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpOverrides.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpsPolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Identity.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCompression.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Rewrite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.HttpSys.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IIS.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Session.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.StaticFiles.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebUtilities.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "compile": {
- "Microsoft.CSharp.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.CommandLine.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Ini.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Composite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Embedded.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Physical.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileSystemGlobbing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Stores.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Console.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Debug.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.ObjectPool.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.WebEncoders.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "compile": {
- "Microsoft.JSInterop.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "compile": {
- "Microsoft.Net.Http.Headers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "compile": {
- "Microsoft.VisualBasic.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "compile": {
- "Microsoft.VisualBasic.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "compile": {
- "Microsoft.Win32.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "compile": {
- "Microsoft.Win32.Registry.dll": {}
- },
- "compileOnly": true
- },
- "mscorlib/4.0.0.0": {
- "compile": {
- "mscorlib.dll": {}
- },
- "compileOnly": true
- },
- "netstandard/2.1.0.0": {
- "compile": {
- "netstandard.dll": {}
- },
- "compileOnly": true
- },
- "System.AppContext/4.2.2.0": {
- "compile": {
- "System.AppContext.dll": {}
- },
- "compileOnly": true
- },
- "System.Buffers/4.0.2.0": {
- "compile": {
- "System.Buffers.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "compile": {
- "System.Collections.Concurrent.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections/4.1.2.0": {
- "compile": {
- "System.Collections.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "compile": {
- "System.Collections.NonGeneric.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Specialized/4.1.2.0": {
- "compile": {
- "System.Collections.Specialized.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "compile": {
- "System.ComponentModel.Annotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "compile": {
- "System.ComponentModel.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel/4.0.4.0": {
- "compile": {
- "System.ComponentModel.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "compile": {
- "System.ComponentModel.EventBasedAsync.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "compile": {
- "System.ComponentModel.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "compile": {
- "System.ComponentModel.TypeConverter.dll": {}
- },
- "compileOnly": true
- },
- "System.Configuration/4.0.0.0": {
- "compile": {
- "System.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "System.Console/4.1.2.0": {
- "compile": {
- "System.Console.dll": {}
- },
- "compileOnly": true
- },
- "System.Core/4.0.0.0": {
- "compile": {
- "System.Core.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.Common/4.2.2.0": {
- "compile": {
- "System.Data.Common.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "compile": {
- "System.Data.DataSetExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Data/4.0.0.0": {
- "compile": {
- "System.Data.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "compile": {
- "System.Diagnostics.Contracts.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Debug.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "compile": {
- "System.Diagnostics.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "compile": {
- "System.Diagnostics.FileVersionInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Process.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "compile": {
- "System.Diagnostics.StackTrace.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TextWriterTraceListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Tools.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Tracing.dll": {}
- },
- "compileOnly": true
- },
- "System/4.0.0.0": {
- "compile": {
- "System.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing/4.0.0.0": {
- "compile": {
- "System.Drawing.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "compile": {
- "System.Drawing.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "compile": {
- "System.Dynamic.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "compile": {
- "System.Globalization.Calendars.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization/4.1.2.0": {
- "compile": {
- "System.Globalization.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "compile": {
- "System.Globalization.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "compile": {
- "System.IO.Compression.Brotli.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression/4.2.2.0": {
- "compile": {
- "System.IO.Compression.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "compile": {
- "System.IO.Compression.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "compile": {
- "System.IO.Compression.ZipFile.dll": {}
- },
- "compileOnly": true
- },
- "System.IO/4.2.2.0": {
- "compile": {
- "System.IO.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.DriveInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Watcher.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "compile": {
- "System.IO.IsolatedStorage.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "compile": {
- "System.IO.MemoryMappedFiles.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipelines/4.0.2.0": {
- "compile": {
- "System.IO.Pipelines.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipes/4.1.2.0": {
- "compile": {
- "System.IO.Pipes.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "compile": {
- "System.IO.UnmanagedMemoryStream.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq/4.2.2.0": {
- "compile": {
- "System.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Expressions/4.2.2.0": {
- "compile": {
- "System.Linq.Expressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Parallel/4.0.4.0": {
- "compile": {
- "System.Linq.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Queryable/4.0.4.0": {
- "compile": {
- "System.Linq.Queryable.dll": {}
- },
- "compileOnly": true
- },
- "System.Memory/4.2.1.0": {
- "compile": {
- "System.Memory.dll": {}
- },
- "compileOnly": true
- },
- "System.Net/4.0.0.0": {
- "compile": {
- "System.Net.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Http/4.2.2.0": {
- "compile": {
- "System.Net.Http.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.HttpListener/4.0.2.0": {
- "compile": {
- "System.Net.HttpListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Mail/4.0.2.0": {
- "compile": {
- "System.Net.Mail.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NameResolution/4.1.2.0": {
- "compile": {
- "System.Net.NameResolution.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "compile": {
- "System.Net.NetworkInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Ping/4.1.2.0": {
- "compile": {
- "System.Net.Ping.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Primitives/4.1.2.0": {
- "compile": {
- "System.Net.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Requests/4.1.2.0": {
- "compile": {
- "System.Net.Requests.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Security/4.1.2.0": {
- "compile": {
- "System.Net.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "compile": {
- "System.Net.ServicePoint.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Sockets/4.2.2.0": {
- "compile": {
- "System.Net.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebClient/4.0.2.0": {
- "compile": {
- "System.Net.WebClient.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "compile": {
- "System.Net.WebHeaderCollection.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebProxy/4.0.2.0": {
- "compile": {
- "System.Net.WebProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.Client.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics/4.0.0.0": {
- "compile": {
- "System.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "compile": {
- "System.Numerics.Vectors.dll": {}
- },
- "compileOnly": true
- },
- "System.ObjectModel/4.1.2.0": {
- "compile": {
- "System.ObjectModel.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "compile": {
- "System.Reflection.DispatchProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection/4.2.2.0": {
- "compile": {
- "System.Reflection.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit/4.1.2.0": {
- "compile": {
- "System.Reflection.Emit.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.ILGeneration.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.Lightweight.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "compile": {
- "System.Reflection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "compile": {
- "System.Reflection.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "compile": {
- "System.Reflection.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "compile": {
- "System.Reflection.TypeExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Reader/4.1.2.0": {
- "compile": {
- "System.Resources.Reader.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "compile": {
- "System.Resources.ResourceManager.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Writer/4.1.2.0": {
- "compile": {
- "System.Resources.Writer.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "compile": {
- "System.Runtime.CompilerServices.Unsafe.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "compile": {
- "System.Runtime.CompilerServices.VisualC.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime/4.2.2.0": {
- "compile": {
- "System.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "compile": {
- "System.Runtime.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Handles/4.1.2.0": {
- "compile": {
- "System.Runtime.Handles.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "compile": {
- "System.Runtime.InteropServices.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.WindowsRuntime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "compile": {
- "System.Runtime.Intrinsics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Loader/4.1.1.0": {
- "compile": {
- "System.Runtime.Loader.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "compile": {
- "System.Runtime.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "compile": {
- "System.Runtime.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "compile": {
- "System.Runtime.Serialization.Formatters.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "compile": {
- "System.Runtime.Serialization.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "compile": {
- "System.Runtime.Serialization.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "compile": {
- "System.Runtime.Serialization.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.AccessControl/4.1.1.0": {
- "compile": {
- "System.Security.AccessControl.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Claims/4.1.2.0": {
- "compile": {
- "System.Security.Claims.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "compile": {
- "System.Security.Cryptography.Algorithms.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "compile": {
- "System.Security.Cryptography.Cng.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Csp.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "compile": {
- "System.Security.Cryptography.X509Certificates.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "compile": {
- "System.Security.Cryptography.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security/4.0.0.0": {
- "compile": {
- "System.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Permissions/4.0.3.0": {
- "compile": {
- "System.Security.Permissions.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal/4.1.2.0": {
- "compile": {
- "System.Security.Principal.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "compile": {
- "System.Security.Principal.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.SecureString/4.1.2.0": {
- "compile": {
- "System.Security.SecureString.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "compile": {
- "System.ServiceModel.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceProcess/4.0.0.0": {
- "compile": {
- "System.ServiceProcess.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "compile": {
- "System.Text.Encoding.CodePages.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "compile": {
- "System.Text.Encodings.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Json/4.0.1.0": {
- "compile": {
- "System.Text.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "compile": {
- "System.Text.RegularExpressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Channels/4.0.2.0": {
- "compile": {
- "System.Threading.Channels.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading/4.1.2.0": {
- "compile": {
- "System.Threading.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "compile": {
- "System.Threading.Overlapped.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "compile": {
- "System.Threading.Tasks.Dataflow.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks/4.1.2.0": {
- "compile": {
- "System.Threading.Tasks.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "compile": {
- "System.Threading.Tasks.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "compile": {
- "System.Threading.Tasks.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Thread/4.1.2.0": {
- "compile": {
- "System.Threading.Thread.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "compile": {
- "System.Threading.ThreadPool.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Timer/4.1.2.0": {
- "compile": {
- "System.Threading.Timer.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions/4.0.0.0": {
- "compile": {
- "System.Transactions.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions.Local/4.0.2.0": {
- "compile": {
- "System.Transactions.Local.dll": {}
- },
- "compileOnly": true
- },
- "System.ValueTuple/4.0.3.0": {
- "compile": {
- "System.ValueTuple.dll": {}
- },
- "compileOnly": true
- },
- "System.Web/4.0.0.0": {
- "compile": {
- "System.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "compile": {
- "System.Web.HttpUtility.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows/4.0.0.0": {
- "compile": {
- "System.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows.Extensions/4.0.1.0": {
- "compile": {
- "System.Windows.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml/4.0.0.0": {
- "compile": {
- "System.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Linq/4.0.0.0": {
- "compile": {
- "System.Xml.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "compile": {
- "System.Xml.ReaderWriter.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Serialization/4.0.0.0": {
- "compile": {
- "System.Xml.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XmlDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "compile": {
- "System.Xml.XmlSerializer.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "WindowsBase/4.0.0.0": {
- "compile": {
- "WindowsBase.dll": {}
- },
- "compileOnly": true
- }
- }
- },
- "libraries": {
- "Diagram-API/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
- "path": "microsoft.bcl.hashcode/1.1.1",
- "hashPath": "microsoft.bcl.hashcode.1.1.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==",
- "path": "microsoft.entityframeworkcore/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==",
- "path": "microsoft.entityframeworkcore.relational/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2EGyKItPcRYc6JT361pU1sCwnho7uJMhojumvBGYZ4yBR0MUAxgw1FIicJXmPz4m4IfiUALhAACQfgWQns+zDw==",
- "path": "microsoft.extensions.caching.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==",
- "path": "microsoft.extensions.caching.memory/3.1.14",
- "hashPath": "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W3Dr4GwB6cZ1EJFPYSqDT2EzeiGgs7lUzv3Y9FxzRXUI5jTDzaToTVoHLr3Z/vwq05PnUsa9tMOtu2xj1FcQKw==",
- "path": "microsoft.extensions.configuration/3.1.14",
- "hashPath": "microsoft.extensions.configuration.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H2oTUy3bJvtlFLjK1apCJ3vjA1iODxY00UzDj3BjwYrUYk0eOrMndzCsnlrW0s4Vn/Sdy/2TduJ6wxNsKeL/dA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kG3V2CZnfXS7CAlTmFG6Hu38QvkdCMh5IlcOA29nGSjB8pXH8yurDe3hPajdYSPw3OXEMRJmWfAb+qZtWzLvyw==",
- "path": "microsoft.extensions.configuration.binder/3.1.14",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8Y0ERNlu5zQAcrh9k6E+6ZHHA9NuBwK9N7RqEpx8eyMbl1DOHblerXFLtuKoBY1x+GafDdZXKEmfU7DEfCSb7g==",
- "path": "microsoft.extensions.dependencyinjection/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DKI1KGqMqIRV9fc4UKlLsYIbFBz+syMcXwnpI2G1Sc5GNKSlx8yl8uQEJR6e5DAxTla+kVd8JOa0jHcvy7Lm7A==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ciktu85jstH2dfIH4oo421igFlVMle9etSRt/b9/M18e+MHvgFw/oh4TQRlZIxz9Fvcay4OLtjbZa+dPRVqNWg==",
- "path": "microsoft.extensions.logging/3.1.14",
- "hashPath": "microsoft.extensions.logging.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pEKsBsD+nl4MHs8qnv/QiL3uwQMRZCVmeOmdt5NJwKO5ndNc/H9YD/9nmVvr3vlAtRcAj56HZMhNQ/NHbQTOSw==",
- "path": "microsoft.extensions.logging.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t9a+56OwOoUIluRH/e1o2yyMMOKQuVVFFChJcRRQQdb6z5BS0PS5JSjShWygZ/V3AbU7xoIKtqKopx8NID6oNA==",
- "path": "microsoft.extensions.options/3.1.14",
- "hashPath": "microsoft.extensions.options.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OusiQZUlEHI5MwfIymyJgY8nN0bKqCsGvALG0khcNkO9h8H8d4wtakaKBQORDlKkYYLSq/pap7wRUxh6eLs3vg==",
- "path": "microsoft.extensions.primitives/3.1.14",
- "hashPath": "microsoft.extensions.primitives.3.1.14.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jXRTckqj+Ia1HPYJqKXyY/hAffVvsoBkZjwBq3nLb6T/9T/ANxBww3eQE+ZBsFl3FLdTOW2crKhh9LsVRg0UUw==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.5",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.5.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "mscorlib/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "netstandard/2.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.AppContext/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Buffers/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Specialized/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Configuration/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Console/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Core/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.Common/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipelines/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipes/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Expressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Queryable/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Memory/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Http/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.HttpListener/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Mail/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NameResolution/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Ping/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Requests/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Security/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Sockets/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebClient/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebProxy/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ObjectModel/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Reader/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Writer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Handles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Loader/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.AccessControl/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Claims/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Permissions/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.SecureString/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceProcess/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Json/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Channels/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Thread/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Timer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions.Local/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ValueTuple/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows.Extensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Linq/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "WindowsBase/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.dll
deleted file mode 100644
index 53a6cb1..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.exe b/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.exe
deleted file mode 100644
index b54c4fb..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.exe and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.pdb b/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.pdb
deleted file mode 100644
index c532648..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.pdb and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.runtimeconfig.dev.json b/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.runtimeconfig.dev.json
deleted file mode 100644
index cb610d9..0000000
--- a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.runtimeconfig.dev.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\Admin\\.nuget\\packages",
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet"
- ]
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.runtimeconfig.json b/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.runtimeconfig.json
deleted file mode 100644
index d5480f1..0000000
--- a/Diagram-API/bin/Debug/netcoreapp3.1/Diagram-API.runtimeconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.AspNetCore.App",
- "version": "3.1.0"
- },
- "configProperties": {
- "System.GC.Server": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 33571cf..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index fddac3a..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 9ba1a24..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index dec44dd..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index 9e29195..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index 63a40ee..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5b62973..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index f967fd3..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index 2194d59..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index db316ad..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 435c4f4..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index ab140e0..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 85a0fca..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
deleted file mode 100644
index e182dd0..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index f70c14d..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/MySqlConnector.dll b/Diagram-API/bin/Debug/netcoreapp3.1/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/MySqlConnector.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 6320bae..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll b/Diagram-API/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/Diagram-API/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/Diagram-API/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/Diagram-API/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/appsettings.Development.json b/Diagram-API/bin/Debug/netcoreapp3.1/appsettings.Development.json
deleted file mode 100644
index 8983e0f..0000000
--- a/Diagram-API/bin/Debug/netcoreapp3.1/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- }
-}
diff --git a/Diagram-API/bin/Debug/netcoreapp3.1/appsettings.json b/Diagram-API/bin/Debug/netcoreapp3.1/appsettings.json
deleted file mode 100644
index d9d9a9b..0000000
--- a/Diagram-API/bin/Debug/netcoreapp3.1/appsettings.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.deps.json b/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.deps.json
deleted file mode 100644
index 0f53895..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.deps.json
+++ /dev/null
@@ -1,3759 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {
- "defines": [
- "TRACE",
- "RELEASE",
- "NETCOREAPP",
- "NETCOREAPP3_1",
- "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": "8.0",
- "platform": "",
- "allowUnsafe": false,
- "warningsAsErrors": false,
- "optimize": true,
- "keyFile": "",
- "emitEntryPoint": true,
- "xmlDoc": false,
- "debugType": "portable"
- },
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "Diagram-API/1.0.0": {
- "dependencies": {
- "Pomelo.EntityFrameworkCore.MySql": "3.2.5",
- "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Components": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
- "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.AspNetCore": "3.1.0.0",
- "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
- "Microsoft.AspNetCore.Http": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Features": "3.1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
- "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Identity": "3.1.0.0",
- "Microsoft.AspNetCore.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Metadata": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
- "Microsoft.AspNetCore.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
- "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
- "Microsoft.AspNetCore.Session": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
- "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
- "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "3.1.0.0",
- "Microsoft.CSharp.Reference": "4.0.0.0",
- "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
- "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Hosting": "3.1.0.0",
- "Microsoft.Extensions.Http": "3.1.0.0",
- "Microsoft.Extensions.Identity.Core": "3.1.0.0",
- "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Localization": "3.1.0.0",
- "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
- "Microsoft.Extensions.Logging.Console": "3.1.0.0",
- "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
- "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
- "Microsoft.Extensions.ObjectPool": "3.1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
- "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
- "Microsoft.Extensions.WebEncoders": "3.1.0.0",
- "Microsoft.JSInterop": "3.1.0.0",
- "Microsoft.Net.Http.Headers": "3.1.0.0",
- "Microsoft.VisualBasic.Core": "10.0.5.0",
- "Microsoft.VisualBasic": "10.0.0.0",
- "Microsoft.Win32.Primitives": "4.1.2.0",
- "Microsoft.Win32.Registry": "4.1.3.0",
- "mscorlib": "4.0.0.0",
- "netstandard": "2.1.0.0",
- "System.AppContext": "4.2.2.0",
- "System.Buffers": "4.0.2.0",
- "System.Collections.Concurrent": "4.0.15.0",
- "System.Collections": "4.1.2.0",
- "System.Collections.NonGeneric": "4.1.2.0",
- "System.Collections.Specialized": "4.1.2.0",
- "System.ComponentModel.Annotations.Reference": "4.3.1.0",
- "System.ComponentModel.DataAnnotations": "4.0.0.0",
- "System.ComponentModel": "4.0.4.0",
- "System.ComponentModel.EventBasedAsync": "4.1.2.0",
- "System.ComponentModel.Primitives": "4.2.2.0",
- "System.ComponentModel.TypeConverter": "4.2.2.0",
- "System.Configuration": "4.0.0.0",
- "System.Console": "4.1.2.0",
- "System.Core": "4.0.0.0",
- "System.Data.Common": "4.2.2.0",
- "System.Data.DataSetExtensions": "4.0.1.0",
- "System.Data": "4.0.0.0",
- "System.Diagnostics.Contracts": "4.0.4.0",
- "System.Diagnostics.Debug": "4.1.2.0",
- "System.Diagnostics.EventLog": "4.0.2.0",
- "System.Diagnostics.FileVersionInfo": "4.0.4.0",
- "System.Diagnostics.Process": "4.2.2.0",
- "System.Diagnostics.StackTrace": "4.1.2.0",
- "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
- "System.Diagnostics.Tools": "4.1.2.0",
- "System.Diagnostics.TraceSource": "4.1.2.0",
- "System.Diagnostics.Tracing": "4.2.2.0",
- "System": "4.0.0.0",
- "System.Drawing": "4.0.0.0",
- "System.Drawing.Primitives": "4.2.1.0",
- "System.Dynamic.Runtime": "4.1.2.0",
- "System.Globalization.Calendars": "4.1.2.0",
- "System.Globalization": "4.1.2.0",
- "System.Globalization.Extensions": "4.1.2.0",
- "System.IO.Compression.Brotli": "4.2.2.0",
- "System.IO.Compression": "4.2.2.0",
- "System.IO.Compression.FileSystem": "4.0.0.0",
- "System.IO.Compression.ZipFile": "4.0.5.0",
- "System.IO": "4.2.2.0",
- "System.IO.FileSystem": "4.1.2.0",
- "System.IO.FileSystem.DriveInfo": "4.1.2.0",
- "System.IO.FileSystem.Primitives": "4.1.2.0",
- "System.IO.FileSystem.Watcher": "4.1.2.0",
- "System.IO.IsolatedStorage": "4.1.2.0",
- "System.IO.MemoryMappedFiles": "4.1.2.0",
- "System.IO.Pipelines": "4.0.2.0",
- "System.IO.Pipes": "4.1.2.0",
- "System.IO.UnmanagedMemoryStream": "4.1.2.0",
- "System.Linq": "4.2.2.0",
- "System.Linq.Expressions": "4.2.2.0",
- "System.Linq.Parallel": "4.0.4.0",
- "System.Linq.Queryable": "4.0.4.0",
- "System.Memory": "4.2.1.0",
- "System.Net": "4.0.0.0",
- "System.Net.Http": "4.2.2.0",
- "System.Net.HttpListener": "4.0.2.0",
- "System.Net.Mail": "4.0.2.0",
- "System.Net.NameResolution": "4.1.2.0",
- "System.Net.NetworkInformation": "4.2.2.0",
- "System.Net.Ping": "4.1.2.0",
- "System.Net.Primitives": "4.1.2.0",
- "System.Net.Requests": "4.1.2.0",
- "System.Net.Security": "4.1.2.0",
- "System.Net.ServicePoint": "4.0.2.0",
- "System.Net.Sockets": "4.2.2.0",
- "System.Net.WebClient": "4.0.2.0",
- "System.Net.WebHeaderCollection": "4.1.2.0",
- "System.Net.WebProxy": "4.0.2.0",
- "System.Net.WebSockets.Client": "4.1.2.0",
- "System.Net.WebSockets": "4.1.2.0",
- "System.Numerics": "4.0.0.0",
- "System.Numerics.Vectors": "4.1.6.0",
- "System.ObjectModel": "4.1.2.0",
- "System.Reflection.DispatchProxy": "4.0.6.0",
- "System.Reflection": "4.2.2.0",
- "System.Reflection.Emit": "4.1.2.0",
- "System.Reflection.Emit.ILGeneration": "4.1.1.0",
- "System.Reflection.Emit.Lightweight": "4.1.1.0",
- "System.Reflection.Extensions": "4.1.2.0",
- "System.Reflection.Metadata": "1.4.5.0",
- "System.Reflection.Primitives": "4.1.2.0",
- "System.Reflection.TypeExtensions": "4.1.2.0",
- "System.Resources.Reader": "4.1.2.0",
- "System.Resources.ResourceManager": "4.1.2.0",
- "System.Resources.Writer": "4.1.2.0",
- "System.Runtime.CompilerServices.Unsafe": "4.0.6.0",
- "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
- "System.Runtime": "4.2.2.0",
- "System.Runtime.Extensions": "4.2.2.0",
- "System.Runtime.Handles": "4.1.2.0",
- "System.Runtime.InteropServices": "4.2.2.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0",
- "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
- "System.Runtime.Intrinsics": "4.0.1.0",
- "System.Runtime.Loader": "4.1.1.0",
- "System.Runtime.Numerics": "4.1.2.0",
- "System.Runtime.Serialization": "4.0.0.0",
- "System.Runtime.Serialization.Formatters": "4.0.4.0",
- "System.Runtime.Serialization.Json": "4.0.5.0",
- "System.Runtime.Serialization.Primitives": "4.2.2.0",
- "System.Runtime.Serialization.Xml": "4.1.5.0",
- "System.Security.AccessControl": "4.1.1.0",
- "System.Security.Claims": "4.1.2.0",
- "System.Security.Cryptography.Algorithms": "4.3.2.0",
- "System.Security.Cryptography.Cng": "4.3.3.0",
- "System.Security.Cryptography.Csp": "4.1.2.0",
- "System.Security.Cryptography.Encoding": "4.1.2.0",
- "System.Security.Cryptography.Primitives": "4.1.2.0",
- "System.Security.Cryptography.X509Certificates": "4.2.2.0",
- "System.Security.Cryptography.Xml": "4.0.3.0",
- "System.Security": "4.0.0.0",
- "System.Security.Permissions": "4.0.3.0",
- "System.Security.Principal": "4.1.2.0",
- "System.Security.Principal.Windows": "4.1.1.0",
- "System.Security.SecureString": "4.1.2.0",
- "System.ServiceModel.Web": "4.0.0.0",
- "System.ServiceProcess": "4.0.0.0",
- "System.Text.Encoding.CodePages": "4.1.3.0",
- "System.Text.Encoding": "4.1.2.0",
- "System.Text.Encoding.Extensions": "4.1.2.0",
- "System.Text.Encodings.Web": "4.0.5.0",
- "System.Text.Json": "4.0.1.0",
- "System.Text.RegularExpressions": "4.2.2.0",
- "System.Threading.Channels": "4.0.2.0",
- "System.Threading": "4.1.2.0",
- "System.Threading.Overlapped": "4.1.2.0",
- "System.Threading.Tasks.Dataflow": "4.6.5.0",
- "System.Threading.Tasks": "4.1.2.0",
- "System.Threading.Tasks.Extensions": "4.3.1.0",
- "System.Threading.Tasks.Parallel": "4.0.4.0",
- "System.Threading.Thread": "4.1.2.0",
- "System.Threading.ThreadPool": "4.1.2.0",
- "System.Threading.Timer": "4.1.2.0",
- "System.Transactions": "4.0.0.0",
- "System.Transactions.Local": "4.0.2.0",
- "System.ValueTuple": "4.0.3.0",
- "System.Web": "4.0.0.0",
- "System.Web.HttpUtility": "4.0.2.0",
- "System.Windows": "4.0.0.0",
- "System.Windows.Extensions": "4.0.1.0",
- "System.Xml": "4.0.0.0",
- "System.Xml.Linq": "4.0.0.0",
- "System.Xml.ReaderWriter": "4.2.2.0",
- "System.Xml.Serialization": "4.0.0.0",
- "System.Xml.XDocument": "4.1.2.0",
- "System.Xml.XmlDocument": "4.1.2.0",
- "System.Xml.XmlSerializer": "4.1.2.0",
- "System.Xml.XPath": "4.1.2.0",
- "System.Xml.XPath.XDocument": "4.1.2.0",
- "WindowsBase": "4.0.0.0"
- },
- "runtime": {
- "Diagram-API.dll": {}
- },
- "compile": {
- "Diagram-API.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- }
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.56604"
- }
- },
- "compile": {
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.1",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14",
- "Microsoft.Extensions.Caching.Memory": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging": "3.1.14",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.14"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.14",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- },
- "compile": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {}
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- },
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.14",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.5.0",
- "fileVersion": "3.2.5.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {}
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
- }
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Antiforgery.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.Policy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Forms.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Server.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Web.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.CookiePolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HostFiltering.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Html.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Features.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpOverrides.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpsPolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Identity.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCompression.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Rewrite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.HttpSys.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IIS.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Session.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.StaticFiles.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebUtilities.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "compile": {
- "Microsoft.CSharp.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.CommandLine.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Ini.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Composite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Embedded.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Physical.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileSystemGlobbing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Stores.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Console.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Debug.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.ObjectPool.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.WebEncoders.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "compile": {
- "Microsoft.JSInterop.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "compile": {
- "Microsoft.Net.Http.Headers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "compile": {
- "Microsoft.VisualBasic.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "compile": {
- "Microsoft.VisualBasic.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "compile": {
- "Microsoft.Win32.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "compile": {
- "Microsoft.Win32.Registry.dll": {}
- },
- "compileOnly": true
- },
- "mscorlib/4.0.0.0": {
- "compile": {
- "mscorlib.dll": {}
- },
- "compileOnly": true
- },
- "netstandard/2.1.0.0": {
- "compile": {
- "netstandard.dll": {}
- },
- "compileOnly": true
- },
- "System.AppContext/4.2.2.0": {
- "compile": {
- "System.AppContext.dll": {}
- },
- "compileOnly": true
- },
- "System.Buffers/4.0.2.0": {
- "compile": {
- "System.Buffers.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "compile": {
- "System.Collections.Concurrent.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections/4.1.2.0": {
- "compile": {
- "System.Collections.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "compile": {
- "System.Collections.NonGeneric.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Specialized/4.1.2.0": {
- "compile": {
- "System.Collections.Specialized.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "compile": {
- "System.ComponentModel.Annotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "compile": {
- "System.ComponentModel.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel/4.0.4.0": {
- "compile": {
- "System.ComponentModel.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "compile": {
- "System.ComponentModel.EventBasedAsync.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "compile": {
- "System.ComponentModel.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "compile": {
- "System.ComponentModel.TypeConverter.dll": {}
- },
- "compileOnly": true
- },
- "System.Configuration/4.0.0.0": {
- "compile": {
- "System.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "System.Console/4.1.2.0": {
- "compile": {
- "System.Console.dll": {}
- },
- "compileOnly": true
- },
- "System.Core/4.0.0.0": {
- "compile": {
- "System.Core.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.Common/4.2.2.0": {
- "compile": {
- "System.Data.Common.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "compile": {
- "System.Data.DataSetExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Data/4.0.0.0": {
- "compile": {
- "System.Data.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "compile": {
- "System.Diagnostics.Contracts.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Debug.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "compile": {
- "System.Diagnostics.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "compile": {
- "System.Diagnostics.FileVersionInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Process.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "compile": {
- "System.Diagnostics.StackTrace.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TextWriterTraceListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Tools.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Tracing.dll": {}
- },
- "compileOnly": true
- },
- "System/4.0.0.0": {
- "compile": {
- "System.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing/4.0.0.0": {
- "compile": {
- "System.Drawing.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "compile": {
- "System.Drawing.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "compile": {
- "System.Dynamic.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "compile": {
- "System.Globalization.Calendars.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization/4.1.2.0": {
- "compile": {
- "System.Globalization.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "compile": {
- "System.Globalization.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "compile": {
- "System.IO.Compression.Brotli.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression/4.2.2.0": {
- "compile": {
- "System.IO.Compression.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "compile": {
- "System.IO.Compression.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "compile": {
- "System.IO.Compression.ZipFile.dll": {}
- },
- "compileOnly": true
- },
- "System.IO/4.2.2.0": {
- "compile": {
- "System.IO.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.DriveInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Watcher.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "compile": {
- "System.IO.IsolatedStorage.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "compile": {
- "System.IO.MemoryMappedFiles.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipelines/4.0.2.0": {
- "compile": {
- "System.IO.Pipelines.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipes/4.1.2.0": {
- "compile": {
- "System.IO.Pipes.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "compile": {
- "System.IO.UnmanagedMemoryStream.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq/4.2.2.0": {
- "compile": {
- "System.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Expressions/4.2.2.0": {
- "compile": {
- "System.Linq.Expressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Parallel/4.0.4.0": {
- "compile": {
- "System.Linq.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Queryable/4.0.4.0": {
- "compile": {
- "System.Linq.Queryable.dll": {}
- },
- "compileOnly": true
- },
- "System.Memory/4.2.1.0": {
- "compile": {
- "System.Memory.dll": {}
- },
- "compileOnly": true
- },
- "System.Net/4.0.0.0": {
- "compile": {
- "System.Net.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Http/4.2.2.0": {
- "compile": {
- "System.Net.Http.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.HttpListener/4.0.2.0": {
- "compile": {
- "System.Net.HttpListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Mail/4.0.2.0": {
- "compile": {
- "System.Net.Mail.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NameResolution/4.1.2.0": {
- "compile": {
- "System.Net.NameResolution.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "compile": {
- "System.Net.NetworkInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Ping/4.1.2.0": {
- "compile": {
- "System.Net.Ping.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Primitives/4.1.2.0": {
- "compile": {
- "System.Net.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Requests/4.1.2.0": {
- "compile": {
- "System.Net.Requests.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Security/4.1.2.0": {
- "compile": {
- "System.Net.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "compile": {
- "System.Net.ServicePoint.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Sockets/4.2.2.0": {
- "compile": {
- "System.Net.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebClient/4.0.2.0": {
- "compile": {
- "System.Net.WebClient.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "compile": {
- "System.Net.WebHeaderCollection.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebProxy/4.0.2.0": {
- "compile": {
- "System.Net.WebProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.Client.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics/4.0.0.0": {
- "compile": {
- "System.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "compile": {
- "System.Numerics.Vectors.dll": {}
- },
- "compileOnly": true
- },
- "System.ObjectModel/4.1.2.0": {
- "compile": {
- "System.ObjectModel.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "compile": {
- "System.Reflection.DispatchProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection/4.2.2.0": {
- "compile": {
- "System.Reflection.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit/4.1.2.0": {
- "compile": {
- "System.Reflection.Emit.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.ILGeneration.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.Lightweight.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "compile": {
- "System.Reflection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "compile": {
- "System.Reflection.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "compile": {
- "System.Reflection.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "compile": {
- "System.Reflection.TypeExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Reader/4.1.2.0": {
- "compile": {
- "System.Resources.Reader.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "compile": {
- "System.Resources.ResourceManager.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Writer/4.1.2.0": {
- "compile": {
- "System.Resources.Writer.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "compile": {
- "System.Runtime.CompilerServices.Unsafe.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "compile": {
- "System.Runtime.CompilerServices.VisualC.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime/4.2.2.0": {
- "compile": {
- "System.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "compile": {
- "System.Runtime.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Handles/4.1.2.0": {
- "compile": {
- "System.Runtime.Handles.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "compile": {
- "System.Runtime.InteropServices.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.WindowsRuntime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "compile": {
- "System.Runtime.Intrinsics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Loader/4.1.1.0": {
- "compile": {
- "System.Runtime.Loader.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "compile": {
- "System.Runtime.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "compile": {
- "System.Runtime.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "compile": {
- "System.Runtime.Serialization.Formatters.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "compile": {
- "System.Runtime.Serialization.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "compile": {
- "System.Runtime.Serialization.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "compile": {
- "System.Runtime.Serialization.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.AccessControl/4.1.1.0": {
- "compile": {
- "System.Security.AccessControl.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Claims/4.1.2.0": {
- "compile": {
- "System.Security.Claims.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "compile": {
- "System.Security.Cryptography.Algorithms.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "compile": {
- "System.Security.Cryptography.Cng.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Csp.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "compile": {
- "System.Security.Cryptography.X509Certificates.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "compile": {
- "System.Security.Cryptography.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security/4.0.0.0": {
- "compile": {
- "System.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Permissions/4.0.3.0": {
- "compile": {
- "System.Security.Permissions.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal/4.1.2.0": {
- "compile": {
- "System.Security.Principal.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "compile": {
- "System.Security.Principal.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.SecureString/4.1.2.0": {
- "compile": {
- "System.Security.SecureString.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "compile": {
- "System.ServiceModel.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceProcess/4.0.0.0": {
- "compile": {
- "System.ServiceProcess.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "compile": {
- "System.Text.Encoding.CodePages.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "compile": {
- "System.Text.Encodings.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Json/4.0.1.0": {
- "compile": {
- "System.Text.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "compile": {
- "System.Text.RegularExpressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Channels/4.0.2.0": {
- "compile": {
- "System.Threading.Channels.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading/4.1.2.0": {
- "compile": {
- "System.Threading.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "compile": {
- "System.Threading.Overlapped.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "compile": {
- "System.Threading.Tasks.Dataflow.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks/4.1.2.0": {
- "compile": {
- "System.Threading.Tasks.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "compile": {
- "System.Threading.Tasks.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "compile": {
- "System.Threading.Tasks.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Thread/4.1.2.0": {
- "compile": {
- "System.Threading.Thread.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "compile": {
- "System.Threading.ThreadPool.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Timer/4.1.2.0": {
- "compile": {
- "System.Threading.Timer.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions/4.0.0.0": {
- "compile": {
- "System.Transactions.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions.Local/4.0.2.0": {
- "compile": {
- "System.Transactions.Local.dll": {}
- },
- "compileOnly": true
- },
- "System.ValueTuple/4.0.3.0": {
- "compile": {
- "System.ValueTuple.dll": {}
- },
- "compileOnly": true
- },
- "System.Web/4.0.0.0": {
- "compile": {
- "System.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "compile": {
- "System.Web.HttpUtility.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows/4.0.0.0": {
- "compile": {
- "System.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows.Extensions/4.0.1.0": {
- "compile": {
- "System.Windows.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml/4.0.0.0": {
- "compile": {
- "System.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Linq/4.0.0.0": {
- "compile": {
- "System.Xml.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "compile": {
- "System.Xml.ReaderWriter.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Serialization/4.0.0.0": {
- "compile": {
- "System.Xml.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XmlDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "compile": {
- "System.Xml.XmlSerializer.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "WindowsBase/4.0.0.0": {
- "compile": {
- "WindowsBase.dll": {}
- },
- "compileOnly": true
- }
- }
- },
- "libraries": {
- "Diagram-API/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
- "path": "microsoft.bcl.hashcode/1.1.1",
- "hashPath": "microsoft.bcl.hashcode.1.1.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==",
- "path": "microsoft.entityframeworkcore/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==",
- "path": "microsoft.entityframeworkcore.relational/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2EGyKItPcRYc6JT361pU1sCwnho7uJMhojumvBGYZ4yBR0MUAxgw1FIicJXmPz4m4IfiUALhAACQfgWQns+zDw==",
- "path": "microsoft.extensions.caching.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==",
- "path": "microsoft.extensions.caching.memory/3.1.14",
- "hashPath": "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W3Dr4GwB6cZ1EJFPYSqDT2EzeiGgs7lUzv3Y9FxzRXUI5jTDzaToTVoHLr3Z/vwq05PnUsa9tMOtu2xj1FcQKw==",
- "path": "microsoft.extensions.configuration/3.1.14",
- "hashPath": "microsoft.extensions.configuration.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H2oTUy3bJvtlFLjK1apCJ3vjA1iODxY00UzDj3BjwYrUYk0eOrMndzCsnlrW0s4Vn/Sdy/2TduJ6wxNsKeL/dA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kG3V2CZnfXS7CAlTmFG6Hu38QvkdCMh5IlcOA29nGSjB8pXH8yurDe3hPajdYSPw3OXEMRJmWfAb+qZtWzLvyw==",
- "path": "microsoft.extensions.configuration.binder/3.1.14",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8Y0ERNlu5zQAcrh9k6E+6ZHHA9NuBwK9N7RqEpx8eyMbl1DOHblerXFLtuKoBY1x+GafDdZXKEmfU7DEfCSb7g==",
- "path": "microsoft.extensions.dependencyinjection/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DKI1KGqMqIRV9fc4UKlLsYIbFBz+syMcXwnpI2G1Sc5GNKSlx8yl8uQEJR6e5DAxTla+kVd8JOa0jHcvy7Lm7A==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ciktu85jstH2dfIH4oo421igFlVMle9etSRt/b9/M18e+MHvgFw/oh4TQRlZIxz9Fvcay4OLtjbZa+dPRVqNWg==",
- "path": "microsoft.extensions.logging/3.1.14",
- "hashPath": "microsoft.extensions.logging.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pEKsBsD+nl4MHs8qnv/QiL3uwQMRZCVmeOmdt5NJwKO5ndNc/H9YD/9nmVvr3vlAtRcAj56HZMhNQ/NHbQTOSw==",
- "path": "microsoft.extensions.logging.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t9a+56OwOoUIluRH/e1o2yyMMOKQuVVFFChJcRRQQdb6z5BS0PS5JSjShWygZ/V3AbU7xoIKtqKopx8NID6oNA==",
- "path": "microsoft.extensions.options/3.1.14",
- "hashPath": "microsoft.extensions.options.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OusiQZUlEHI5MwfIymyJgY8nN0bKqCsGvALG0khcNkO9h8H8d4wtakaKBQORDlKkYYLSq/pap7wRUxh6eLs3vg==",
- "path": "microsoft.extensions.primitives/3.1.14",
- "hashPath": "microsoft.extensions.primitives.3.1.14.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jXRTckqj+Ia1HPYJqKXyY/hAffVvsoBkZjwBq3nLb6T/9T/ANxBww3eQE+ZBsFl3FLdTOW2crKhh9LsVRg0UUw==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.5",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.5.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "mscorlib/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "netstandard/2.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.AppContext/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Buffers/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Specialized/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Configuration/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Console/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Core/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.Common/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipelines/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipes/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Expressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Queryable/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Memory/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Http/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.HttpListener/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Mail/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NameResolution/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Ping/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Requests/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Security/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Sockets/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebClient/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebProxy/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ObjectModel/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Reader/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Writer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Handles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Loader/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.AccessControl/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Claims/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Permissions/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.SecureString/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceProcess/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Json/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Channels/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Thread/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Timer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions.Local/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ValueTuple/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows.Extensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Linq/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "WindowsBase/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.dll b/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.dll
deleted file mode 100644
index 5cc1a69..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.exe b/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.exe
deleted file mode 100644
index b54c4fb..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.exe and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.pdb b/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.pdb
deleted file mode 100644
index 6e716da..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.pdb and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.runtimeconfig.dev.json b/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.runtimeconfig.dev.json
deleted file mode 100644
index cb610d9..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.runtimeconfig.dev.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\Admin\\.nuget\\packages",
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet"
- ]
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.runtimeconfig.json b/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.runtimeconfig.json
deleted file mode 100644
index d5480f1..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/Diagram-API.runtimeconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.AspNetCore.App",
- "version": "3.1.0"
- },
- "configProperties": {
- "System.GC.Server": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Bcl.HashCode.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 33571cf..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index fddac3a..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 9ba1a24..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index dec44dd..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index 9e29195..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index 63a40ee..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5b62973..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index f967fd3..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index 2194d59..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index db316ad..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 435c4f4..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index ab140e0..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 85a0fca..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll
deleted file mode 100644
index e182dd0..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index f70c14d..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/MySqlConnector.dll b/Diagram-API/bin/Release/netcoreapp3.1/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/MySqlConnector.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll b/Diagram-API/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll b/Diagram-API/bin/Release/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 6320bae..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/Pomelo.JsonObject.dll b/Diagram-API/bin/Release/netcoreapp3.1/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/System.Collections.Immutable.dll b/Diagram-API/bin/Release/netcoreapp3.1/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/System.Collections.Immutable.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/Diagram-API/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/appsettings.Development.json b/Diagram-API/bin/Release/netcoreapp3.1/appsettings.Development.json
deleted file mode 100644
index 8983e0f..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- }
-}
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/appsettings.json b/Diagram-API/bin/Release/netcoreapp3.1/appsettings.json
deleted file mode 100644
index d9d9a9b..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/appsettings.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.deps.json b/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.deps.json
deleted file mode 100644
index 0f53895..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.deps.json
+++ /dev/null
@@ -1,3759 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {
- "defines": [
- "TRACE",
- "RELEASE",
- "NETCOREAPP",
- "NETCOREAPP3_1",
- "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": "8.0",
- "platform": "",
- "allowUnsafe": false,
- "warningsAsErrors": false,
- "optimize": true,
- "keyFile": "",
- "emitEntryPoint": true,
- "xmlDoc": false,
- "debugType": "portable"
- },
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "Diagram-API/1.0.0": {
- "dependencies": {
- "Pomelo.EntityFrameworkCore.MySql": "3.2.5",
- "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Components": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
- "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.AspNetCore": "3.1.0.0",
- "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
- "Microsoft.AspNetCore.Http": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Features": "3.1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
- "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Identity": "3.1.0.0",
- "Microsoft.AspNetCore.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Metadata": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
- "Microsoft.AspNetCore.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
- "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
- "Microsoft.AspNetCore.Session": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
- "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
- "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "3.1.0.0",
- "Microsoft.CSharp.Reference": "4.0.0.0",
- "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
- "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Hosting": "3.1.0.0",
- "Microsoft.Extensions.Http": "3.1.0.0",
- "Microsoft.Extensions.Identity.Core": "3.1.0.0",
- "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Localization": "3.1.0.0",
- "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
- "Microsoft.Extensions.Logging.Console": "3.1.0.0",
- "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
- "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
- "Microsoft.Extensions.ObjectPool": "3.1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
- "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
- "Microsoft.Extensions.WebEncoders": "3.1.0.0",
- "Microsoft.JSInterop": "3.1.0.0",
- "Microsoft.Net.Http.Headers": "3.1.0.0",
- "Microsoft.VisualBasic.Core": "10.0.5.0",
- "Microsoft.VisualBasic": "10.0.0.0",
- "Microsoft.Win32.Primitives": "4.1.2.0",
- "Microsoft.Win32.Registry": "4.1.3.0",
- "mscorlib": "4.0.0.0",
- "netstandard": "2.1.0.0",
- "System.AppContext": "4.2.2.0",
- "System.Buffers": "4.0.2.0",
- "System.Collections.Concurrent": "4.0.15.0",
- "System.Collections": "4.1.2.0",
- "System.Collections.NonGeneric": "4.1.2.0",
- "System.Collections.Specialized": "4.1.2.0",
- "System.ComponentModel.Annotations.Reference": "4.3.1.0",
- "System.ComponentModel.DataAnnotations": "4.0.0.0",
- "System.ComponentModel": "4.0.4.0",
- "System.ComponentModel.EventBasedAsync": "4.1.2.0",
- "System.ComponentModel.Primitives": "4.2.2.0",
- "System.ComponentModel.TypeConverter": "4.2.2.0",
- "System.Configuration": "4.0.0.0",
- "System.Console": "4.1.2.0",
- "System.Core": "4.0.0.0",
- "System.Data.Common": "4.2.2.0",
- "System.Data.DataSetExtensions": "4.0.1.0",
- "System.Data": "4.0.0.0",
- "System.Diagnostics.Contracts": "4.0.4.0",
- "System.Diagnostics.Debug": "4.1.2.0",
- "System.Diagnostics.EventLog": "4.0.2.0",
- "System.Diagnostics.FileVersionInfo": "4.0.4.0",
- "System.Diagnostics.Process": "4.2.2.0",
- "System.Diagnostics.StackTrace": "4.1.2.0",
- "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
- "System.Diagnostics.Tools": "4.1.2.0",
- "System.Diagnostics.TraceSource": "4.1.2.0",
- "System.Diagnostics.Tracing": "4.2.2.0",
- "System": "4.0.0.0",
- "System.Drawing": "4.0.0.0",
- "System.Drawing.Primitives": "4.2.1.0",
- "System.Dynamic.Runtime": "4.1.2.0",
- "System.Globalization.Calendars": "4.1.2.0",
- "System.Globalization": "4.1.2.0",
- "System.Globalization.Extensions": "4.1.2.0",
- "System.IO.Compression.Brotli": "4.2.2.0",
- "System.IO.Compression": "4.2.2.0",
- "System.IO.Compression.FileSystem": "4.0.0.0",
- "System.IO.Compression.ZipFile": "4.0.5.0",
- "System.IO": "4.2.2.0",
- "System.IO.FileSystem": "4.1.2.0",
- "System.IO.FileSystem.DriveInfo": "4.1.2.0",
- "System.IO.FileSystem.Primitives": "4.1.2.0",
- "System.IO.FileSystem.Watcher": "4.1.2.0",
- "System.IO.IsolatedStorage": "4.1.2.0",
- "System.IO.MemoryMappedFiles": "4.1.2.0",
- "System.IO.Pipelines": "4.0.2.0",
- "System.IO.Pipes": "4.1.2.0",
- "System.IO.UnmanagedMemoryStream": "4.1.2.0",
- "System.Linq": "4.2.2.0",
- "System.Linq.Expressions": "4.2.2.0",
- "System.Linq.Parallel": "4.0.4.0",
- "System.Linq.Queryable": "4.0.4.0",
- "System.Memory": "4.2.1.0",
- "System.Net": "4.0.0.0",
- "System.Net.Http": "4.2.2.0",
- "System.Net.HttpListener": "4.0.2.0",
- "System.Net.Mail": "4.0.2.0",
- "System.Net.NameResolution": "4.1.2.0",
- "System.Net.NetworkInformation": "4.2.2.0",
- "System.Net.Ping": "4.1.2.0",
- "System.Net.Primitives": "4.1.2.0",
- "System.Net.Requests": "4.1.2.0",
- "System.Net.Security": "4.1.2.0",
- "System.Net.ServicePoint": "4.0.2.0",
- "System.Net.Sockets": "4.2.2.0",
- "System.Net.WebClient": "4.0.2.0",
- "System.Net.WebHeaderCollection": "4.1.2.0",
- "System.Net.WebProxy": "4.0.2.0",
- "System.Net.WebSockets.Client": "4.1.2.0",
- "System.Net.WebSockets": "4.1.2.0",
- "System.Numerics": "4.0.0.0",
- "System.Numerics.Vectors": "4.1.6.0",
- "System.ObjectModel": "4.1.2.0",
- "System.Reflection.DispatchProxy": "4.0.6.0",
- "System.Reflection": "4.2.2.0",
- "System.Reflection.Emit": "4.1.2.0",
- "System.Reflection.Emit.ILGeneration": "4.1.1.0",
- "System.Reflection.Emit.Lightweight": "4.1.1.0",
- "System.Reflection.Extensions": "4.1.2.0",
- "System.Reflection.Metadata": "1.4.5.0",
- "System.Reflection.Primitives": "4.1.2.0",
- "System.Reflection.TypeExtensions": "4.1.2.0",
- "System.Resources.Reader": "4.1.2.0",
- "System.Resources.ResourceManager": "4.1.2.0",
- "System.Resources.Writer": "4.1.2.0",
- "System.Runtime.CompilerServices.Unsafe": "4.0.6.0",
- "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
- "System.Runtime": "4.2.2.0",
- "System.Runtime.Extensions": "4.2.2.0",
- "System.Runtime.Handles": "4.1.2.0",
- "System.Runtime.InteropServices": "4.2.2.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0",
- "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
- "System.Runtime.Intrinsics": "4.0.1.0",
- "System.Runtime.Loader": "4.1.1.0",
- "System.Runtime.Numerics": "4.1.2.0",
- "System.Runtime.Serialization": "4.0.0.0",
- "System.Runtime.Serialization.Formatters": "4.0.4.0",
- "System.Runtime.Serialization.Json": "4.0.5.0",
- "System.Runtime.Serialization.Primitives": "4.2.2.0",
- "System.Runtime.Serialization.Xml": "4.1.5.0",
- "System.Security.AccessControl": "4.1.1.0",
- "System.Security.Claims": "4.1.2.0",
- "System.Security.Cryptography.Algorithms": "4.3.2.0",
- "System.Security.Cryptography.Cng": "4.3.3.0",
- "System.Security.Cryptography.Csp": "4.1.2.0",
- "System.Security.Cryptography.Encoding": "4.1.2.0",
- "System.Security.Cryptography.Primitives": "4.1.2.0",
- "System.Security.Cryptography.X509Certificates": "4.2.2.0",
- "System.Security.Cryptography.Xml": "4.0.3.0",
- "System.Security": "4.0.0.0",
- "System.Security.Permissions": "4.0.3.0",
- "System.Security.Principal": "4.1.2.0",
- "System.Security.Principal.Windows": "4.1.1.0",
- "System.Security.SecureString": "4.1.2.0",
- "System.ServiceModel.Web": "4.0.0.0",
- "System.ServiceProcess": "4.0.0.0",
- "System.Text.Encoding.CodePages": "4.1.3.0",
- "System.Text.Encoding": "4.1.2.0",
- "System.Text.Encoding.Extensions": "4.1.2.0",
- "System.Text.Encodings.Web": "4.0.5.0",
- "System.Text.Json": "4.0.1.0",
- "System.Text.RegularExpressions": "4.2.2.0",
- "System.Threading.Channels": "4.0.2.0",
- "System.Threading": "4.1.2.0",
- "System.Threading.Overlapped": "4.1.2.0",
- "System.Threading.Tasks.Dataflow": "4.6.5.0",
- "System.Threading.Tasks": "4.1.2.0",
- "System.Threading.Tasks.Extensions": "4.3.1.0",
- "System.Threading.Tasks.Parallel": "4.0.4.0",
- "System.Threading.Thread": "4.1.2.0",
- "System.Threading.ThreadPool": "4.1.2.0",
- "System.Threading.Timer": "4.1.2.0",
- "System.Transactions": "4.0.0.0",
- "System.Transactions.Local": "4.0.2.0",
- "System.ValueTuple": "4.0.3.0",
- "System.Web": "4.0.0.0",
- "System.Web.HttpUtility": "4.0.2.0",
- "System.Windows": "4.0.0.0",
- "System.Windows.Extensions": "4.0.1.0",
- "System.Xml": "4.0.0.0",
- "System.Xml.Linq": "4.0.0.0",
- "System.Xml.ReaderWriter": "4.2.2.0",
- "System.Xml.Serialization": "4.0.0.0",
- "System.Xml.XDocument": "4.1.2.0",
- "System.Xml.XmlDocument": "4.1.2.0",
- "System.Xml.XmlSerializer": "4.1.2.0",
- "System.Xml.XPath": "4.1.2.0",
- "System.Xml.XPath.XDocument": "4.1.2.0",
- "WindowsBase": "4.0.0.0"
- },
- "runtime": {
- "Diagram-API.dll": {}
- },
- "compile": {
- "Diagram-API.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- }
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.56604"
- }
- },
- "compile": {
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.1",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14",
- "Microsoft.Extensions.Caching.Memory": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging": "3.1.14",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.14"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.14",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- },
- "compile": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {}
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- },
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.14",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.5.0",
- "fileVersion": "3.2.5.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {}
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
- }
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Antiforgery.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.Policy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Forms.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Server.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Web.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.CookiePolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HostFiltering.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Html.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Features.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpOverrides.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpsPolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Identity.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCompression.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Rewrite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.HttpSys.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IIS.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Session.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.StaticFiles.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebUtilities.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "compile": {
- "Microsoft.CSharp.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.CommandLine.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Ini.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Composite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Embedded.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Physical.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileSystemGlobbing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Stores.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Console.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Debug.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.ObjectPool.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.WebEncoders.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "compile": {
- "Microsoft.JSInterop.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "compile": {
- "Microsoft.Net.Http.Headers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "compile": {
- "Microsoft.VisualBasic.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "compile": {
- "Microsoft.VisualBasic.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "compile": {
- "Microsoft.Win32.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "compile": {
- "Microsoft.Win32.Registry.dll": {}
- },
- "compileOnly": true
- },
- "mscorlib/4.0.0.0": {
- "compile": {
- "mscorlib.dll": {}
- },
- "compileOnly": true
- },
- "netstandard/2.1.0.0": {
- "compile": {
- "netstandard.dll": {}
- },
- "compileOnly": true
- },
- "System.AppContext/4.2.2.0": {
- "compile": {
- "System.AppContext.dll": {}
- },
- "compileOnly": true
- },
- "System.Buffers/4.0.2.0": {
- "compile": {
- "System.Buffers.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "compile": {
- "System.Collections.Concurrent.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections/4.1.2.0": {
- "compile": {
- "System.Collections.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "compile": {
- "System.Collections.NonGeneric.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Specialized/4.1.2.0": {
- "compile": {
- "System.Collections.Specialized.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "compile": {
- "System.ComponentModel.Annotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "compile": {
- "System.ComponentModel.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel/4.0.4.0": {
- "compile": {
- "System.ComponentModel.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "compile": {
- "System.ComponentModel.EventBasedAsync.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "compile": {
- "System.ComponentModel.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "compile": {
- "System.ComponentModel.TypeConverter.dll": {}
- },
- "compileOnly": true
- },
- "System.Configuration/4.0.0.0": {
- "compile": {
- "System.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "System.Console/4.1.2.0": {
- "compile": {
- "System.Console.dll": {}
- },
- "compileOnly": true
- },
- "System.Core/4.0.0.0": {
- "compile": {
- "System.Core.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.Common/4.2.2.0": {
- "compile": {
- "System.Data.Common.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "compile": {
- "System.Data.DataSetExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Data/4.0.0.0": {
- "compile": {
- "System.Data.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "compile": {
- "System.Diagnostics.Contracts.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Debug.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "compile": {
- "System.Diagnostics.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "compile": {
- "System.Diagnostics.FileVersionInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Process.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "compile": {
- "System.Diagnostics.StackTrace.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TextWriterTraceListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Tools.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Tracing.dll": {}
- },
- "compileOnly": true
- },
- "System/4.0.0.0": {
- "compile": {
- "System.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing/4.0.0.0": {
- "compile": {
- "System.Drawing.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "compile": {
- "System.Drawing.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "compile": {
- "System.Dynamic.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "compile": {
- "System.Globalization.Calendars.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization/4.1.2.0": {
- "compile": {
- "System.Globalization.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "compile": {
- "System.Globalization.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "compile": {
- "System.IO.Compression.Brotli.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression/4.2.2.0": {
- "compile": {
- "System.IO.Compression.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "compile": {
- "System.IO.Compression.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "compile": {
- "System.IO.Compression.ZipFile.dll": {}
- },
- "compileOnly": true
- },
- "System.IO/4.2.2.0": {
- "compile": {
- "System.IO.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.DriveInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Watcher.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "compile": {
- "System.IO.IsolatedStorage.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "compile": {
- "System.IO.MemoryMappedFiles.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipelines/4.0.2.0": {
- "compile": {
- "System.IO.Pipelines.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipes/4.1.2.0": {
- "compile": {
- "System.IO.Pipes.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "compile": {
- "System.IO.UnmanagedMemoryStream.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq/4.2.2.0": {
- "compile": {
- "System.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Expressions/4.2.2.0": {
- "compile": {
- "System.Linq.Expressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Parallel/4.0.4.0": {
- "compile": {
- "System.Linq.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Queryable/4.0.4.0": {
- "compile": {
- "System.Linq.Queryable.dll": {}
- },
- "compileOnly": true
- },
- "System.Memory/4.2.1.0": {
- "compile": {
- "System.Memory.dll": {}
- },
- "compileOnly": true
- },
- "System.Net/4.0.0.0": {
- "compile": {
- "System.Net.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Http/4.2.2.0": {
- "compile": {
- "System.Net.Http.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.HttpListener/4.0.2.0": {
- "compile": {
- "System.Net.HttpListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Mail/4.0.2.0": {
- "compile": {
- "System.Net.Mail.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NameResolution/4.1.2.0": {
- "compile": {
- "System.Net.NameResolution.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "compile": {
- "System.Net.NetworkInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Ping/4.1.2.0": {
- "compile": {
- "System.Net.Ping.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Primitives/4.1.2.0": {
- "compile": {
- "System.Net.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Requests/4.1.2.0": {
- "compile": {
- "System.Net.Requests.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Security/4.1.2.0": {
- "compile": {
- "System.Net.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "compile": {
- "System.Net.ServicePoint.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Sockets/4.2.2.0": {
- "compile": {
- "System.Net.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebClient/4.0.2.0": {
- "compile": {
- "System.Net.WebClient.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "compile": {
- "System.Net.WebHeaderCollection.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebProxy/4.0.2.0": {
- "compile": {
- "System.Net.WebProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.Client.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics/4.0.0.0": {
- "compile": {
- "System.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "compile": {
- "System.Numerics.Vectors.dll": {}
- },
- "compileOnly": true
- },
- "System.ObjectModel/4.1.2.0": {
- "compile": {
- "System.ObjectModel.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "compile": {
- "System.Reflection.DispatchProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection/4.2.2.0": {
- "compile": {
- "System.Reflection.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit/4.1.2.0": {
- "compile": {
- "System.Reflection.Emit.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.ILGeneration.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.Lightweight.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "compile": {
- "System.Reflection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "compile": {
- "System.Reflection.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "compile": {
- "System.Reflection.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "compile": {
- "System.Reflection.TypeExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Reader/4.1.2.0": {
- "compile": {
- "System.Resources.Reader.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "compile": {
- "System.Resources.ResourceManager.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Writer/4.1.2.0": {
- "compile": {
- "System.Resources.Writer.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "compile": {
- "System.Runtime.CompilerServices.Unsafe.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "compile": {
- "System.Runtime.CompilerServices.VisualC.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime/4.2.2.0": {
- "compile": {
- "System.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "compile": {
- "System.Runtime.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Handles/4.1.2.0": {
- "compile": {
- "System.Runtime.Handles.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "compile": {
- "System.Runtime.InteropServices.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.WindowsRuntime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "compile": {
- "System.Runtime.Intrinsics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Loader/4.1.1.0": {
- "compile": {
- "System.Runtime.Loader.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "compile": {
- "System.Runtime.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "compile": {
- "System.Runtime.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "compile": {
- "System.Runtime.Serialization.Formatters.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "compile": {
- "System.Runtime.Serialization.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "compile": {
- "System.Runtime.Serialization.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "compile": {
- "System.Runtime.Serialization.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.AccessControl/4.1.1.0": {
- "compile": {
- "System.Security.AccessControl.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Claims/4.1.2.0": {
- "compile": {
- "System.Security.Claims.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "compile": {
- "System.Security.Cryptography.Algorithms.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "compile": {
- "System.Security.Cryptography.Cng.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Csp.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "compile": {
- "System.Security.Cryptography.X509Certificates.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "compile": {
- "System.Security.Cryptography.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security/4.0.0.0": {
- "compile": {
- "System.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Permissions/4.0.3.0": {
- "compile": {
- "System.Security.Permissions.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal/4.1.2.0": {
- "compile": {
- "System.Security.Principal.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "compile": {
- "System.Security.Principal.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.SecureString/4.1.2.0": {
- "compile": {
- "System.Security.SecureString.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "compile": {
- "System.ServiceModel.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceProcess/4.0.0.0": {
- "compile": {
- "System.ServiceProcess.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "compile": {
- "System.Text.Encoding.CodePages.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "compile": {
- "System.Text.Encodings.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Json/4.0.1.0": {
- "compile": {
- "System.Text.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "compile": {
- "System.Text.RegularExpressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Channels/4.0.2.0": {
- "compile": {
- "System.Threading.Channels.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading/4.1.2.0": {
- "compile": {
- "System.Threading.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "compile": {
- "System.Threading.Overlapped.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "compile": {
- "System.Threading.Tasks.Dataflow.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks/4.1.2.0": {
- "compile": {
- "System.Threading.Tasks.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "compile": {
- "System.Threading.Tasks.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "compile": {
- "System.Threading.Tasks.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Thread/4.1.2.0": {
- "compile": {
- "System.Threading.Thread.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "compile": {
- "System.Threading.ThreadPool.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Timer/4.1.2.0": {
- "compile": {
- "System.Threading.Timer.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions/4.0.0.0": {
- "compile": {
- "System.Transactions.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions.Local/4.0.2.0": {
- "compile": {
- "System.Transactions.Local.dll": {}
- },
- "compileOnly": true
- },
- "System.ValueTuple/4.0.3.0": {
- "compile": {
- "System.ValueTuple.dll": {}
- },
- "compileOnly": true
- },
- "System.Web/4.0.0.0": {
- "compile": {
- "System.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "compile": {
- "System.Web.HttpUtility.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows/4.0.0.0": {
- "compile": {
- "System.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows.Extensions/4.0.1.0": {
- "compile": {
- "System.Windows.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml/4.0.0.0": {
- "compile": {
- "System.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Linq/4.0.0.0": {
- "compile": {
- "System.Xml.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "compile": {
- "System.Xml.ReaderWriter.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Serialization/4.0.0.0": {
- "compile": {
- "System.Xml.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XmlDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "compile": {
- "System.Xml.XmlSerializer.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "WindowsBase/4.0.0.0": {
- "compile": {
- "WindowsBase.dll": {}
- },
- "compileOnly": true
- }
- }
- },
- "libraries": {
- "Diagram-API/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
- "path": "microsoft.bcl.hashcode/1.1.1",
- "hashPath": "microsoft.bcl.hashcode.1.1.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==",
- "path": "microsoft.entityframeworkcore/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==",
- "path": "microsoft.entityframeworkcore.relational/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2EGyKItPcRYc6JT361pU1sCwnho7uJMhojumvBGYZ4yBR0MUAxgw1FIicJXmPz4m4IfiUALhAACQfgWQns+zDw==",
- "path": "microsoft.extensions.caching.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==",
- "path": "microsoft.extensions.caching.memory/3.1.14",
- "hashPath": "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W3Dr4GwB6cZ1EJFPYSqDT2EzeiGgs7lUzv3Y9FxzRXUI5jTDzaToTVoHLr3Z/vwq05PnUsa9tMOtu2xj1FcQKw==",
- "path": "microsoft.extensions.configuration/3.1.14",
- "hashPath": "microsoft.extensions.configuration.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H2oTUy3bJvtlFLjK1apCJ3vjA1iODxY00UzDj3BjwYrUYk0eOrMndzCsnlrW0s4Vn/Sdy/2TduJ6wxNsKeL/dA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kG3V2CZnfXS7CAlTmFG6Hu38QvkdCMh5IlcOA29nGSjB8pXH8yurDe3hPajdYSPw3OXEMRJmWfAb+qZtWzLvyw==",
- "path": "microsoft.extensions.configuration.binder/3.1.14",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8Y0ERNlu5zQAcrh9k6E+6ZHHA9NuBwK9N7RqEpx8eyMbl1DOHblerXFLtuKoBY1x+GafDdZXKEmfU7DEfCSb7g==",
- "path": "microsoft.extensions.dependencyinjection/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DKI1KGqMqIRV9fc4UKlLsYIbFBz+syMcXwnpI2G1Sc5GNKSlx8yl8uQEJR6e5DAxTla+kVd8JOa0jHcvy7Lm7A==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ciktu85jstH2dfIH4oo421igFlVMle9etSRt/b9/M18e+MHvgFw/oh4TQRlZIxz9Fvcay4OLtjbZa+dPRVqNWg==",
- "path": "microsoft.extensions.logging/3.1.14",
- "hashPath": "microsoft.extensions.logging.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pEKsBsD+nl4MHs8qnv/QiL3uwQMRZCVmeOmdt5NJwKO5ndNc/H9YD/9nmVvr3vlAtRcAj56HZMhNQ/NHbQTOSw==",
- "path": "microsoft.extensions.logging.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t9a+56OwOoUIluRH/e1o2yyMMOKQuVVFFChJcRRQQdb6z5BS0PS5JSjShWygZ/V3AbU7xoIKtqKopx8NID6oNA==",
- "path": "microsoft.extensions.options/3.1.14",
- "hashPath": "microsoft.extensions.options.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OusiQZUlEHI5MwfIymyJgY8nN0bKqCsGvALG0khcNkO9h8H8d4wtakaKBQORDlKkYYLSq/pap7wRUxh6eLs3vg==",
- "path": "microsoft.extensions.primitives/3.1.14",
- "hashPath": "microsoft.extensions.primitives.3.1.14.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jXRTckqj+Ia1HPYJqKXyY/hAffVvsoBkZjwBq3nLb6T/9T/ANxBww3eQE+ZBsFl3FLdTOW2crKhh9LsVRg0UUw==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.5",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.5.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "mscorlib/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "netstandard/2.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.AppContext/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Buffers/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Specialized/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Configuration/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Console/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Core/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.Common/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipelines/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipes/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Expressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Queryable/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Memory/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Http/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.HttpListener/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Mail/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NameResolution/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Ping/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Requests/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Security/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Sockets/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebClient/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebProxy/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ObjectModel/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Reader/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Writer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Handles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Loader/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.AccessControl/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Claims/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Permissions/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.SecureString/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceProcess/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Json/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Channels/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Thread/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Timer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions.Local/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ValueTuple/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows.Extensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Linq/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "WindowsBase/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.dll
deleted file mode 100644
index 5cc1a69..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.exe b/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.exe
deleted file mode 100644
index b54c4fb..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.exe and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.pdb b/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.pdb
deleted file mode 100644
index 6e716da..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.pdb and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.runtimeconfig.json b/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.runtimeconfig.json
deleted file mode 100644
index d5480f1..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/publish/Diagram-API.runtimeconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.AspNetCore.App",
- "version": "3.1.0"
- },
- "configProperties": {
- "System.GC.Server": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.AsyncInterfaces.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.HashCode.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 33571cf..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index fddac3a..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Relational.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 9ba1a24..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index dec44dd..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index 9e29195..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Memory.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index 63a40ee..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5b62973..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Binder.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index f967fd3..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index 2194d59..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index db316ad..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 435c4f4..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.Abstractions.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index ab140e0..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 85a0fca..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Options.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Options.dll
deleted file mode 100644
index e182dd0..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Primitives.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index f70c14d..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/MySqlConnector.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/MySqlConnector.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Newtonsoft.Json.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Newtonsoft.Json.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Pomelo.EntityFrameworkCore.MySql.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 6320bae..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/Pomelo.JsonObject.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/System.Collections.Immutable.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/System.Collections.Immutable.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/System.Diagnostics.DiagnosticSource.dll b/Diagram-API/bin/Release/netcoreapp3.1/publish/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/Diagram-API/bin/Release/netcoreapp3.1/publish/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/appsettings.Development.json b/Diagram-API/bin/Release/netcoreapp3.1/publish/appsettings.Development.json
deleted file mode 100644
index 8983e0f..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/publish/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- }
-}
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/appsettings.json b/Diagram-API/bin/Release/netcoreapp3.1/publish/appsettings.json
deleted file mode 100644
index d9d9a9b..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/publish/appsettings.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/Diagram-API/bin/Release/netcoreapp3.1/publish/web.config b/Diagram-API/bin/Release/netcoreapp3.1/publish/web.config
deleted file mode 100644
index 579b818..0000000
--- a/Diagram-API/bin/Release/netcoreapp3.1/publish/web.config
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Diagram-API/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
deleted file mode 100644
index ad8dfe1..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.AssemblyInfo.cs b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.AssemblyInfo.cs
deleted file mode 100644
index 17bb471..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// Этот код создан программой.
-// Исполняемая версия:4.0.30319.42000
-//
-// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
-// повторной генерации кода.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("Diagram-API")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("Diagram-API")]
-[assembly: System.Reflection.AssemblyTitleAttribute("Diagram-API")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Создано классом WriteCodeFragment MSBuild.
-
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.AssemblyInfoInputs.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.AssemblyInfoInputs.cache
deleted file mode 100644
index 9dd53c9..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-3e165f4ba860c7bc2584636228bd1d10769d90ca
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.MvcApplicationPartsAssemblyInfo.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.RazorTargetAssemblyInfo.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.RazorTargetAssemblyInfo.cache
deleted file mode 100644
index 878cb2d..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.RazorTargetAssemblyInfo.cache
+++ /dev/null
@@ -1 +0,0 @@
-d8bdb0772f821defa525ecf33bf9227eca4e528d
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.assets.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.assets.cache
deleted file mode 100644
index fb78bcb..0000000
Binary files a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.assets.cache and /dev/null differ
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.CopyComplete b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.CoreCompileInputs.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 81bed95..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-960d94258fa8f4c58dac2debca2b9522d33cb9f7
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.FileListAbsolute.txt b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.FileListAbsolute.txt
deleted file mode 100644
index 1737ef2..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\appsettings.Development.json
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\appsettings.json
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Diagram-API.exe
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Diagram-API.deps.json
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Diagram-API.runtimeconfig.json
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Diagram-API.runtimeconfig.dev.json
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Diagram-API.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Diagram-API.pdb
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\MySqlConnector.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Pomelo.EntityFrameworkCore.MySql.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\Pomelo.JsonObject.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll
-G:\Diagram-API\Diagram-API\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.csprojAssemblyReference.cache
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.AssemblyInfoInputs.cache
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.AssemblyInfo.cs
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.csproj.CoreCompileInputs.cache
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.MvcApplicationPartsAssemblyInfo.cache
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\staticwebassets\Diagram-API.StaticWebAssets.Manifest.cache
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\staticwebassets\Diagram-API.StaticWebAssets.xml
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\scopedcss\bundle\Diagram-API.styles.css
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.RazorTargetAssemblyInfo.cache
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.csproj.CopyComplete
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.dll
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.pdb
-G:\Diagram-API\Diagram-API\obj\Debug\netcoreapp3.1\Diagram-API.genruntimeconfig.cache
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csprojAssemblyReference.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csprojAssemblyReference.cache
deleted file mode 100644
index c676e14..0000000
Binary files a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.csprojAssemblyReference.cache and /dev/null differ
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.dll b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.dll
deleted file mode 100644
index 53a6cb1..0000000
Binary files a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.dll and /dev/null differ
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.genruntimeconfig.cache b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.genruntimeconfig.cache
deleted file mode 100644
index 72e44ea..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-8b6c3b1bbba06f891d115aaac139f5784ef6a7de
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.pdb b/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.pdb
deleted file mode 100644
index c532648..0000000
Binary files a/Diagram-API/obj/Debug/netcoreapp3.1/Diagram-API.pdb and /dev/null differ
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/apphost.exe b/Diagram-API/obj/Debug/netcoreapp3.1/apphost.exe
deleted file mode 100644
index b54c4fb..0000000
Binary files a/Diagram-API/obj/Debug/netcoreapp3.1/apphost.exe and /dev/null differ
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.Manifest.cache b/Diagram-API/obj/Debug/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.Manifest.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/Diagram-API/obj/Debug/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.xml b/Diagram-API/obj/Debug/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.xml
deleted file mode 100644
index 7b21d22..0000000
--- a/Diagram-API/obj/Debug/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.xml
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/Diagram-API/obj/Diagram-API.csproj.nuget.dgspec.json b/Diagram-API/obj/Diagram-API.csproj.nuget.dgspec.json
deleted file mode 100644
index f060dcd..0000000
--- a/Diagram-API/obj/Diagram-API.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
- "format": 1,
- "restore": {
- "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj": {}
- },
- "projects": {
- "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj",
- "projectName": "Diagram-API",
- "projectPath": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj",
- "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
- "outputPath": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\obj\\",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "netcoreapp3.1"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "dependencies": {
- "Pomelo.EntityFrameworkCore.MySql": {
- "target": "Package",
- "version": "[3.2.5, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Ref",
- "version": "[3.1.10, 3.1.10]"
- },
- {
- "name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[3.1.32, 3.1.32]"
- },
- {
- "name": "Microsoft.NETCore.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400\\RuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/obj/Diagram-API.csproj.nuget.g.props b/Diagram-API/obj/Diagram-API.csproj.nuget.g.props
deleted file mode 100644
index 4f21df1..0000000
--- a/Diagram-API/obj/Diagram-API.csproj.nuget.g.props
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\Admin\.nuget\packages\
- PackageReference
- 6.11.0
-
-
-
-
-
\ No newline at end of file
diff --git a/Diagram-API/obj/Diagram-API.csproj.nuget.g.targets b/Diagram-API/obj/Diagram-API.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/Diagram-API/obj/Diagram-API.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Diagram-API/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
deleted file mode 100644
index 1b9b2f8..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")]
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.AssemblyInfo.cs b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.AssemblyInfo.cs
deleted file mode 100644
index 1567722..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// Этот код создан программой.
-// Исполняемая версия:4.0.30319.42000
-//
-// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
-// повторной генерации кода.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("Diagram-API")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c3cca06933c750507c0800cabf3649749d0a3e44")]
-[assembly: System.Reflection.AssemblyProductAttribute("Diagram-API")]
-[assembly: System.Reflection.AssemblyTitleAttribute("Diagram-API")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Создано классом WriteCodeFragment MSBuild.
-
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.AssemblyInfoInputs.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.AssemblyInfoInputs.cache
deleted file mode 100644
index 922ec14..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-3f0630e15324591f579155fc019ddfe4d1ed59f62837d8452c19516889f2ec6a
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.GeneratedMSBuildEditorConfig.editorconfig b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index d9091e3..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-is_global = true
-build_property.RootNamespace = Diagram_API
-build_property.ProjectDir = D:\src\CurrStatVDP\Diagram-API\Diagram-API\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.MvcApplicationPartsAssemblyInfo.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.RazorTargetAssemblyInfo.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.RazorTargetAssemblyInfo.cache
deleted file mode 100644
index d3dec5c..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.RazorTargetAssemblyInfo.cache
+++ /dev/null
@@ -1 +0,0 @@
-6d229b84cf9aecc313ab8d95e2579029194c96af
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.assets.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.assets.cache
deleted file mode 100644
index f642a0e..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.assets.cache and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.AssemblyReference.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.AssemblyReference.cache
deleted file mode 100644
index f84061c..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.CopyComplete b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.CoreCompileInputs.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.CoreCompileInputs.cache
deleted file mode 100644
index a7f1a15..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-f05342f56a76c16936199c54fb802ea54861550b
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.FileListAbsolute.txt b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.FileListAbsolute.txt
deleted file mode 100644
index d594574..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\appsettings.Development.json
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\appsettings.json
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Diagram-API.exe
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Diagram-API.deps.json
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Diagram-API.runtimeconfig.json
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Diagram-API.runtimeconfig.dev.json
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Diagram-API.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Diagram-API.pdb
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Bcl.HashCode.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Logging.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Options.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\MySqlConnector.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Newtonsoft.Json.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Pomelo.EntityFrameworkCore.MySql.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\Pomelo.JsonObject.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\System.Collections.Immutable.dll
-G:\Diagram-API\Diagram-API\bin\Release\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.csprojAssemblyReference.cache
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.AssemblyInfoInputs.cache
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.AssemblyInfo.cs
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.csproj.CoreCompileInputs.cache
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.MvcApplicationPartsAssemblyInfo.cache
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\staticwebassets\Diagram-API.StaticWebAssets.Manifest.cache
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\staticwebassets\Diagram-API.StaticWebAssets.xml
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\scopedcss\bundle\Diagram-API.styles.css
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.RazorTargetAssemblyInfo.cache
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.csproj.CopyComplete
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.pdb
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\Diagram-API.genruntimeconfig.cache
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csprojAssemblyReference.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csprojAssemblyReference.cache
deleted file mode 100644
index 72a3d45..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.csprojAssemblyReference.cache and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.dll b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.dll
deleted file mode 100644
index 5cc1a69..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.genruntimeconfig.cache b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.genruntimeconfig.cache
deleted file mode 100644
index 72e44ea..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-8b6c3b1bbba06f891d115aaac139f5784ef6a7de
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.pdb b/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.pdb
deleted file mode 100644
index 6e716da..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/Diagram-API.pdb and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.deps.json b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.deps.json
deleted file mode 100644
index 0f53895..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.deps.json
+++ /dev/null
@@ -1,3759 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {
- "defines": [
- "TRACE",
- "RELEASE",
- "NETCOREAPP",
- "NETCOREAPP3_1",
- "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": "8.0",
- "platform": "",
- "allowUnsafe": false,
- "warningsAsErrors": false,
- "optimize": true,
- "keyFile": "",
- "emitEntryPoint": true,
- "xmlDoc": false,
- "debugType": "portable"
- },
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "Diagram-API/1.0.0": {
- "dependencies": {
- "Pomelo.EntityFrameworkCore.MySql": "3.2.5",
- "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication": "3.1.0.0",
- "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
- "Microsoft.AspNetCore.Components": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
- "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
- "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
- "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
- "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.AspNetCore": "3.1.0.0",
- "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting": "3.1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Connections": "3.1.0.0",
- "Microsoft.AspNetCore.Http": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0",
- "Microsoft.AspNetCore.Http.Features": "3.1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
- "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
- "Microsoft.AspNetCore.Identity": "3.1.0.0",
- "Microsoft.AspNetCore.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Metadata": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
- "Microsoft.AspNetCore.Razor": "3.1.0.0",
- "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
- "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
- "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0",
- "Microsoft.AspNetCore.Routing": "3.1.0.0",
- "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
- "Microsoft.AspNetCore.Session": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR": "3.1.0.0",
- "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
- "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
- "Microsoft.AspNetCore.WebSockets": "3.1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "3.1.0.0",
- "Microsoft.CSharp.Reference": "4.0.0.0",
- "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
- "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
- "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Hosting": "3.1.0.0",
- "Microsoft.Extensions.Http": "3.1.0.0",
- "Microsoft.Extensions.Identity.Core": "3.1.0.0",
- "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
- "Microsoft.Extensions.Localization": "3.1.0.0",
- "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
- "Microsoft.Extensions.Logging.Console": "3.1.0.0",
- "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
- "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
- "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
- "Microsoft.Extensions.ObjectPool": "3.1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
- "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
- "Microsoft.Extensions.WebEncoders": "3.1.0.0",
- "Microsoft.JSInterop": "3.1.0.0",
- "Microsoft.Net.Http.Headers": "3.1.0.0",
- "Microsoft.VisualBasic.Core": "10.0.5.0",
- "Microsoft.VisualBasic": "10.0.0.0",
- "Microsoft.Win32.Primitives": "4.1.2.0",
- "Microsoft.Win32.Registry": "4.1.3.0",
- "mscorlib": "4.0.0.0",
- "netstandard": "2.1.0.0",
- "System.AppContext": "4.2.2.0",
- "System.Buffers": "4.0.2.0",
- "System.Collections.Concurrent": "4.0.15.0",
- "System.Collections": "4.1.2.0",
- "System.Collections.NonGeneric": "4.1.2.0",
- "System.Collections.Specialized": "4.1.2.0",
- "System.ComponentModel.Annotations.Reference": "4.3.1.0",
- "System.ComponentModel.DataAnnotations": "4.0.0.0",
- "System.ComponentModel": "4.0.4.0",
- "System.ComponentModel.EventBasedAsync": "4.1.2.0",
- "System.ComponentModel.Primitives": "4.2.2.0",
- "System.ComponentModel.TypeConverter": "4.2.2.0",
- "System.Configuration": "4.0.0.0",
- "System.Console": "4.1.2.0",
- "System.Core": "4.0.0.0",
- "System.Data.Common": "4.2.2.0",
- "System.Data.DataSetExtensions": "4.0.1.0",
- "System.Data": "4.0.0.0",
- "System.Diagnostics.Contracts": "4.0.4.0",
- "System.Diagnostics.Debug": "4.1.2.0",
- "System.Diagnostics.EventLog": "4.0.2.0",
- "System.Diagnostics.FileVersionInfo": "4.0.4.0",
- "System.Diagnostics.Process": "4.2.2.0",
- "System.Diagnostics.StackTrace": "4.1.2.0",
- "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
- "System.Diagnostics.Tools": "4.1.2.0",
- "System.Diagnostics.TraceSource": "4.1.2.0",
- "System.Diagnostics.Tracing": "4.2.2.0",
- "System": "4.0.0.0",
- "System.Drawing": "4.0.0.0",
- "System.Drawing.Primitives": "4.2.1.0",
- "System.Dynamic.Runtime": "4.1.2.0",
- "System.Globalization.Calendars": "4.1.2.0",
- "System.Globalization": "4.1.2.0",
- "System.Globalization.Extensions": "4.1.2.0",
- "System.IO.Compression.Brotli": "4.2.2.0",
- "System.IO.Compression": "4.2.2.0",
- "System.IO.Compression.FileSystem": "4.0.0.0",
- "System.IO.Compression.ZipFile": "4.0.5.0",
- "System.IO": "4.2.2.0",
- "System.IO.FileSystem": "4.1.2.0",
- "System.IO.FileSystem.DriveInfo": "4.1.2.0",
- "System.IO.FileSystem.Primitives": "4.1.2.0",
- "System.IO.FileSystem.Watcher": "4.1.2.0",
- "System.IO.IsolatedStorage": "4.1.2.0",
- "System.IO.MemoryMappedFiles": "4.1.2.0",
- "System.IO.Pipelines": "4.0.2.0",
- "System.IO.Pipes": "4.1.2.0",
- "System.IO.UnmanagedMemoryStream": "4.1.2.0",
- "System.Linq": "4.2.2.0",
- "System.Linq.Expressions": "4.2.2.0",
- "System.Linq.Parallel": "4.0.4.0",
- "System.Linq.Queryable": "4.0.4.0",
- "System.Memory": "4.2.1.0",
- "System.Net": "4.0.0.0",
- "System.Net.Http": "4.2.2.0",
- "System.Net.HttpListener": "4.0.2.0",
- "System.Net.Mail": "4.0.2.0",
- "System.Net.NameResolution": "4.1.2.0",
- "System.Net.NetworkInformation": "4.2.2.0",
- "System.Net.Ping": "4.1.2.0",
- "System.Net.Primitives": "4.1.2.0",
- "System.Net.Requests": "4.1.2.0",
- "System.Net.Security": "4.1.2.0",
- "System.Net.ServicePoint": "4.0.2.0",
- "System.Net.Sockets": "4.2.2.0",
- "System.Net.WebClient": "4.0.2.0",
- "System.Net.WebHeaderCollection": "4.1.2.0",
- "System.Net.WebProxy": "4.0.2.0",
- "System.Net.WebSockets.Client": "4.1.2.0",
- "System.Net.WebSockets": "4.1.2.0",
- "System.Numerics": "4.0.0.0",
- "System.Numerics.Vectors": "4.1.6.0",
- "System.ObjectModel": "4.1.2.0",
- "System.Reflection.DispatchProxy": "4.0.6.0",
- "System.Reflection": "4.2.2.0",
- "System.Reflection.Emit": "4.1.2.0",
- "System.Reflection.Emit.ILGeneration": "4.1.1.0",
- "System.Reflection.Emit.Lightweight": "4.1.1.0",
- "System.Reflection.Extensions": "4.1.2.0",
- "System.Reflection.Metadata": "1.4.5.0",
- "System.Reflection.Primitives": "4.1.2.0",
- "System.Reflection.TypeExtensions": "4.1.2.0",
- "System.Resources.Reader": "4.1.2.0",
- "System.Resources.ResourceManager": "4.1.2.0",
- "System.Resources.Writer": "4.1.2.0",
- "System.Runtime.CompilerServices.Unsafe": "4.0.6.0",
- "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
- "System.Runtime": "4.2.2.0",
- "System.Runtime.Extensions": "4.2.2.0",
- "System.Runtime.Handles": "4.1.2.0",
- "System.Runtime.InteropServices": "4.2.2.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0",
- "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
- "System.Runtime.Intrinsics": "4.0.1.0",
- "System.Runtime.Loader": "4.1.1.0",
- "System.Runtime.Numerics": "4.1.2.0",
- "System.Runtime.Serialization": "4.0.0.0",
- "System.Runtime.Serialization.Formatters": "4.0.4.0",
- "System.Runtime.Serialization.Json": "4.0.5.0",
- "System.Runtime.Serialization.Primitives": "4.2.2.0",
- "System.Runtime.Serialization.Xml": "4.1.5.0",
- "System.Security.AccessControl": "4.1.1.0",
- "System.Security.Claims": "4.1.2.0",
- "System.Security.Cryptography.Algorithms": "4.3.2.0",
- "System.Security.Cryptography.Cng": "4.3.3.0",
- "System.Security.Cryptography.Csp": "4.1.2.0",
- "System.Security.Cryptography.Encoding": "4.1.2.0",
- "System.Security.Cryptography.Primitives": "4.1.2.0",
- "System.Security.Cryptography.X509Certificates": "4.2.2.0",
- "System.Security.Cryptography.Xml": "4.0.3.0",
- "System.Security": "4.0.0.0",
- "System.Security.Permissions": "4.0.3.0",
- "System.Security.Principal": "4.1.2.0",
- "System.Security.Principal.Windows": "4.1.1.0",
- "System.Security.SecureString": "4.1.2.0",
- "System.ServiceModel.Web": "4.0.0.0",
- "System.ServiceProcess": "4.0.0.0",
- "System.Text.Encoding.CodePages": "4.1.3.0",
- "System.Text.Encoding": "4.1.2.0",
- "System.Text.Encoding.Extensions": "4.1.2.0",
- "System.Text.Encodings.Web": "4.0.5.0",
- "System.Text.Json": "4.0.1.0",
- "System.Text.RegularExpressions": "4.2.2.0",
- "System.Threading.Channels": "4.0.2.0",
- "System.Threading": "4.1.2.0",
- "System.Threading.Overlapped": "4.1.2.0",
- "System.Threading.Tasks.Dataflow": "4.6.5.0",
- "System.Threading.Tasks": "4.1.2.0",
- "System.Threading.Tasks.Extensions": "4.3.1.0",
- "System.Threading.Tasks.Parallel": "4.0.4.0",
- "System.Threading.Thread": "4.1.2.0",
- "System.Threading.ThreadPool": "4.1.2.0",
- "System.Threading.Timer": "4.1.2.0",
- "System.Transactions": "4.0.0.0",
- "System.Transactions.Local": "4.0.2.0",
- "System.ValueTuple": "4.0.3.0",
- "System.Web": "4.0.0.0",
- "System.Web.HttpUtility": "4.0.2.0",
- "System.Windows": "4.0.0.0",
- "System.Windows.Extensions": "4.0.1.0",
- "System.Xml": "4.0.0.0",
- "System.Xml.Linq": "4.0.0.0",
- "System.Xml.ReaderWriter": "4.2.2.0",
- "System.Xml.Serialization": "4.0.0.0",
- "System.Xml.XDocument": "4.1.2.0",
- "System.Xml.XmlDocument": "4.1.2.0",
- "System.Xml.XmlSerializer": "4.1.2.0",
- "System.Xml.XPath": "4.1.2.0",
- "System.Xml.XPath.XDocument": "4.1.2.0",
- "WindowsBase": "4.0.0.0"
- },
- "runtime": {
- "Diagram-API.dll": {}
- },
- "compile": {
- "Diagram-API.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- }
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.56604"
- }
- },
- "compile": {
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.1",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14",
- "Microsoft.Extensions.Caching.Memory": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging": "3.1.14",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.14"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16508"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.14",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.14.0",
- "fileVersion": "3.100.1421.16509"
- }
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- },
- "compile": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {}
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- },
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.14",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.5.0",
- "fileVersion": "3.2.5.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {}
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- },
- "compile": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
- }
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Antiforgery.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Authorization.Policy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Authorization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Forms.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Server.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Components.Web.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.CookiePolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HostFiltering.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Html.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Connections.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Http.Features.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpOverrides.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.HttpsPolicy.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Identity.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Localization.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Cors.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Razor.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCaching.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.ResponseCompression.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Rewrite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Routing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.HttpSys.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IIS.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.Session.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Common.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.StaticFiles.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "compile": {
- "Microsoft.AspNetCore.WebUtilities.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "compile": {
- "Microsoft.CSharp.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.CommandLine.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Ini.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Json.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Configuration.Xml.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Composite.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Embedded.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileProviders.Physical.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.FileSystemGlobbing.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Hosting.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Http.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Identity.Stores.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.Abstractions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Localization.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Console.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.Debug.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.EventSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Logging.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.ObjectPool.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.Options.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "compile": {
- "Microsoft.Extensions.WebEncoders.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "compile": {
- "Microsoft.JSInterop.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "compile": {
- "Microsoft.Net.Http.Headers.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "compile": {
- "Microsoft.VisualBasic.Core.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "compile": {
- "Microsoft.VisualBasic.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "compile": {
- "Microsoft.Win32.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "compile": {
- "Microsoft.Win32.Registry.dll": {}
- },
- "compileOnly": true
- },
- "mscorlib/4.0.0.0": {
- "compile": {
- "mscorlib.dll": {}
- },
- "compileOnly": true
- },
- "netstandard/2.1.0.0": {
- "compile": {
- "netstandard.dll": {}
- },
- "compileOnly": true
- },
- "System.AppContext/4.2.2.0": {
- "compile": {
- "System.AppContext.dll": {}
- },
- "compileOnly": true
- },
- "System.Buffers/4.0.2.0": {
- "compile": {
- "System.Buffers.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "compile": {
- "System.Collections.Concurrent.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections/4.1.2.0": {
- "compile": {
- "System.Collections.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "compile": {
- "System.Collections.NonGeneric.dll": {}
- },
- "compileOnly": true
- },
- "System.Collections.Specialized/4.1.2.0": {
- "compile": {
- "System.Collections.Specialized.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "compile": {
- "System.ComponentModel.Annotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "compile": {
- "System.ComponentModel.DataAnnotations.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel/4.0.4.0": {
- "compile": {
- "System.ComponentModel.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "compile": {
- "System.ComponentModel.EventBasedAsync.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "compile": {
- "System.ComponentModel.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "compile": {
- "System.ComponentModel.TypeConverter.dll": {}
- },
- "compileOnly": true
- },
- "System.Configuration/4.0.0.0": {
- "compile": {
- "System.Configuration.dll": {}
- },
- "compileOnly": true
- },
- "System.Console/4.1.2.0": {
- "compile": {
- "System.Console.dll": {}
- },
- "compileOnly": true
- },
- "System.Core/4.0.0.0": {
- "compile": {
- "System.Core.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.Common/4.2.2.0": {
- "compile": {
- "System.Data.Common.dll": {}
- },
- "compileOnly": true
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "compile": {
- "System.Data.DataSetExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Data/4.0.0.0": {
- "compile": {
- "System.Data.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "compile": {
- "System.Diagnostics.Contracts.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Debug.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "compile": {
- "System.Diagnostics.EventLog.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "compile": {
- "System.Diagnostics.FileVersionInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Process.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "compile": {
- "System.Diagnostics.StackTrace.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TextWriterTraceListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "compile": {
- "System.Diagnostics.Tools.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "compile": {
- "System.Diagnostics.TraceSource.dll": {}
- },
- "compileOnly": true
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "compile": {
- "System.Diagnostics.Tracing.dll": {}
- },
- "compileOnly": true
- },
- "System/4.0.0.0": {
- "compile": {
- "System.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing/4.0.0.0": {
- "compile": {
- "System.Drawing.dll": {}
- },
- "compileOnly": true
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "compile": {
- "System.Drawing.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "compile": {
- "System.Dynamic.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "compile": {
- "System.Globalization.Calendars.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization/4.1.2.0": {
- "compile": {
- "System.Globalization.dll": {}
- },
- "compileOnly": true
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "compile": {
- "System.Globalization.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "compile": {
- "System.IO.Compression.Brotli.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression/4.2.2.0": {
- "compile": {
- "System.IO.Compression.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "compile": {
- "System.IO.Compression.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "compile": {
- "System.IO.Compression.ZipFile.dll": {}
- },
- "compileOnly": true
- },
- "System.IO/4.2.2.0": {
- "compile": {
- "System.IO.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.DriveInfo.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "compile": {
- "System.IO.FileSystem.Watcher.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "compile": {
- "System.IO.IsolatedStorage.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "compile": {
- "System.IO.MemoryMappedFiles.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipelines/4.0.2.0": {
- "compile": {
- "System.IO.Pipelines.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.Pipes/4.1.2.0": {
- "compile": {
- "System.IO.Pipes.dll": {}
- },
- "compileOnly": true
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "compile": {
- "System.IO.UnmanagedMemoryStream.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq/4.2.2.0": {
- "compile": {
- "System.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Expressions/4.2.2.0": {
- "compile": {
- "System.Linq.Expressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Parallel/4.0.4.0": {
- "compile": {
- "System.Linq.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Linq.Queryable/4.0.4.0": {
- "compile": {
- "System.Linq.Queryable.dll": {}
- },
- "compileOnly": true
- },
- "System.Memory/4.2.1.0": {
- "compile": {
- "System.Memory.dll": {}
- },
- "compileOnly": true
- },
- "System.Net/4.0.0.0": {
- "compile": {
- "System.Net.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Http/4.2.2.0": {
- "compile": {
- "System.Net.Http.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.HttpListener/4.0.2.0": {
- "compile": {
- "System.Net.HttpListener.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Mail/4.0.2.0": {
- "compile": {
- "System.Net.Mail.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NameResolution/4.1.2.0": {
- "compile": {
- "System.Net.NameResolution.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "compile": {
- "System.Net.NetworkInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Ping/4.1.2.0": {
- "compile": {
- "System.Net.Ping.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Primitives/4.1.2.0": {
- "compile": {
- "System.Net.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Requests/4.1.2.0": {
- "compile": {
- "System.Net.Requests.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Security/4.1.2.0": {
- "compile": {
- "System.Net.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "compile": {
- "System.Net.ServicePoint.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.Sockets/4.2.2.0": {
- "compile": {
- "System.Net.Sockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebClient/4.0.2.0": {
- "compile": {
- "System.Net.WebClient.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "compile": {
- "System.Net.WebHeaderCollection.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebProxy/4.0.2.0": {
- "compile": {
- "System.Net.WebProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.Client.dll": {}
- },
- "compileOnly": true
- },
- "System.Net.WebSockets/4.1.2.0": {
- "compile": {
- "System.Net.WebSockets.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics/4.0.0.0": {
- "compile": {
- "System.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "compile": {
- "System.Numerics.Vectors.dll": {}
- },
- "compileOnly": true
- },
- "System.ObjectModel/4.1.2.0": {
- "compile": {
- "System.ObjectModel.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "compile": {
- "System.Reflection.DispatchProxy.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection/4.2.2.0": {
- "compile": {
- "System.Reflection.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit/4.1.2.0": {
- "compile": {
- "System.Reflection.Emit.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.ILGeneration.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "compile": {
- "System.Reflection.Emit.Lightweight.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "compile": {
- "System.Reflection.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "compile": {
- "System.Reflection.Metadata.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "compile": {
- "System.Reflection.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "compile": {
- "System.Reflection.TypeExtensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Reader/4.1.2.0": {
- "compile": {
- "System.Resources.Reader.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "compile": {
- "System.Resources.ResourceManager.dll": {}
- },
- "compileOnly": true
- },
- "System.Resources.Writer/4.1.2.0": {
- "compile": {
- "System.Resources.Writer.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "compile": {
- "System.Runtime.CompilerServices.Unsafe.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "compile": {
- "System.Runtime.CompilerServices.VisualC.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime/4.2.2.0": {
- "compile": {
- "System.Runtime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "compile": {
- "System.Runtime.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Handles/4.1.2.0": {
- "compile": {
- "System.Runtime.Handles.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "compile": {
- "System.Runtime.InteropServices.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "compile": {
- "System.Runtime.InteropServices.WindowsRuntime.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "compile": {
- "System.Runtime.Intrinsics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Loader/4.1.1.0": {
- "compile": {
- "System.Runtime.Loader.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "compile": {
- "System.Runtime.Numerics.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "compile": {
- "System.Runtime.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "compile": {
- "System.Runtime.Serialization.Formatters.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "compile": {
- "System.Runtime.Serialization.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "compile": {
- "System.Runtime.Serialization.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "compile": {
- "System.Runtime.Serialization.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.AccessControl/4.1.1.0": {
- "compile": {
- "System.Security.AccessControl.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Claims/4.1.2.0": {
- "compile": {
- "System.Security.Claims.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "compile": {
- "System.Security.Cryptography.Algorithms.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "compile": {
- "System.Security.Cryptography.Cng.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Csp.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "compile": {
- "System.Security.Cryptography.Primitives.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "compile": {
- "System.Security.Cryptography.X509Certificates.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "compile": {
- "System.Security.Cryptography.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Security/4.0.0.0": {
- "compile": {
- "System.Security.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Permissions/4.0.3.0": {
- "compile": {
- "System.Security.Permissions.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal/4.1.2.0": {
- "compile": {
- "System.Security.Principal.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "compile": {
- "System.Security.Principal.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Security.SecureString/4.1.2.0": {
- "compile": {
- "System.Security.SecureString.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "compile": {
- "System.ServiceModel.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.ServiceProcess/4.0.0.0": {
- "compile": {
- "System.ServiceProcess.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "compile": {
- "System.Text.Encoding.CodePages.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "compile": {
- "System.Text.Encoding.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "compile": {
- "System.Text.Encodings.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.Json/4.0.1.0": {
- "compile": {
- "System.Text.Json.dll": {}
- },
- "compileOnly": true
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "compile": {
- "System.Text.RegularExpressions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Channels/4.0.2.0": {
- "compile": {
- "System.Threading.Channels.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading/4.1.2.0": {
- "compile": {
- "System.Threading.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "compile": {
- "System.Threading.Overlapped.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "compile": {
- "System.Threading.Tasks.Dataflow.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks/4.1.2.0": {
- "compile": {
- "System.Threading.Tasks.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "compile": {
- "System.Threading.Tasks.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "compile": {
- "System.Threading.Tasks.Parallel.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Thread/4.1.2.0": {
- "compile": {
- "System.Threading.Thread.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "compile": {
- "System.Threading.ThreadPool.dll": {}
- },
- "compileOnly": true
- },
- "System.Threading.Timer/4.1.2.0": {
- "compile": {
- "System.Threading.Timer.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions/4.0.0.0": {
- "compile": {
- "System.Transactions.dll": {}
- },
- "compileOnly": true
- },
- "System.Transactions.Local/4.0.2.0": {
- "compile": {
- "System.Transactions.Local.dll": {}
- },
- "compileOnly": true
- },
- "System.ValueTuple/4.0.3.0": {
- "compile": {
- "System.ValueTuple.dll": {}
- },
- "compileOnly": true
- },
- "System.Web/4.0.0.0": {
- "compile": {
- "System.Web.dll": {}
- },
- "compileOnly": true
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "compile": {
- "System.Web.HttpUtility.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows/4.0.0.0": {
- "compile": {
- "System.Windows.dll": {}
- },
- "compileOnly": true
- },
- "System.Windows.Extensions/4.0.1.0": {
- "compile": {
- "System.Windows.Extensions.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml/4.0.0.0": {
- "compile": {
- "System.Xml.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Linq/4.0.0.0": {
- "compile": {
- "System.Xml.Linq.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "compile": {
- "System.Xml.ReaderWriter.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.Serialization/4.0.0.0": {
- "compile": {
- "System.Xml.Serialization.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XmlDocument.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "compile": {
- "System.Xml.XmlSerializer.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.dll": {}
- },
- "compileOnly": true
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "compile": {
- "System.Xml.XPath.XDocument.dll": {}
- },
- "compileOnly": true
- },
- "WindowsBase/4.0.0.0": {
- "compile": {
- "WindowsBase.dll": {}
- },
- "compileOnly": true
- }
- }
- },
- "libraries": {
- "Diagram-API/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
- "path": "microsoft.bcl.hashcode/1.1.1",
- "hashPath": "microsoft.bcl.hashcode.1.1.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==",
- "path": "microsoft.entityframeworkcore/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==",
- "path": "microsoft.entityframeworkcore.relational/3.1.14",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2EGyKItPcRYc6JT361pU1sCwnho7uJMhojumvBGYZ4yBR0MUAxgw1FIicJXmPz4m4IfiUALhAACQfgWQns+zDw==",
- "path": "microsoft.extensions.caching.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==",
- "path": "microsoft.extensions.caching.memory/3.1.14",
- "hashPath": "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W3Dr4GwB6cZ1EJFPYSqDT2EzeiGgs7lUzv3Y9FxzRXUI5jTDzaToTVoHLr3Z/vwq05PnUsa9tMOtu2xj1FcQKw==",
- "path": "microsoft.extensions.configuration/3.1.14",
- "hashPath": "microsoft.extensions.configuration.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H2oTUy3bJvtlFLjK1apCJ3vjA1iODxY00UzDj3BjwYrUYk0eOrMndzCsnlrW0s4Vn/Sdy/2TduJ6wxNsKeL/dA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kG3V2CZnfXS7CAlTmFG6Hu38QvkdCMh5IlcOA29nGSjB8pXH8yurDe3hPajdYSPw3OXEMRJmWfAb+qZtWzLvyw==",
- "path": "microsoft.extensions.configuration.binder/3.1.14",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8Y0ERNlu5zQAcrh9k6E+6ZHHA9NuBwK9N7RqEpx8eyMbl1DOHblerXFLtuKoBY1x+GafDdZXKEmfU7DEfCSb7g==",
- "path": "microsoft.extensions.dependencyinjection/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DKI1KGqMqIRV9fc4UKlLsYIbFBz+syMcXwnpI2G1Sc5GNKSlx8yl8uQEJR6e5DAxTla+kVd8JOa0jHcvy7Lm7A==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ciktu85jstH2dfIH4oo421igFlVMle9etSRt/b9/M18e+MHvgFw/oh4TQRlZIxz9Fvcay4OLtjbZa+dPRVqNWg==",
- "path": "microsoft.extensions.logging/3.1.14",
- "hashPath": "microsoft.extensions.logging.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pEKsBsD+nl4MHs8qnv/QiL3uwQMRZCVmeOmdt5NJwKO5ndNc/H9YD/9nmVvr3vlAtRcAj56HZMhNQ/NHbQTOSw==",
- "path": "microsoft.extensions.logging.abstractions/3.1.14",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t9a+56OwOoUIluRH/e1o2yyMMOKQuVVFFChJcRRQQdb6z5BS0PS5JSjShWygZ/V3AbU7xoIKtqKopx8NID6oNA==",
- "path": "microsoft.extensions.options/3.1.14",
- "hashPath": "microsoft.extensions.options.3.1.14.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OusiQZUlEHI5MwfIymyJgY8nN0bKqCsGvALG0khcNkO9h8H8d4wtakaKBQORDlKkYYLSq/pap7wRUxh6eLs3vg==",
- "path": "microsoft.extensions.primitives/3.1.14",
- "hashPath": "microsoft.extensions.primitives.3.1.14.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jXRTckqj+Ia1HPYJqKXyY/hAffVvsoBkZjwBq3nLb6T/9T/ANxBww3eQE+ZBsFl3FLdTOW2crKhh9LsVRg0UUw==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.5",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.5.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Connections/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Http.Features/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Identity/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Metadata/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Routing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Session/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebSockets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.WebUtilities/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.CSharp.Reference/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Hosting/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Http/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Core/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Localization/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Console/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.ObjectPool/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Extensions.WebEncoders/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.JSInterop/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Net.Http.Headers/3.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic.Core/10.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.VisualBasic/10.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Win32.Registry/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "mscorlib/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "netstandard/2.1.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.AppContext/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Buffers/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Concurrent/4.0.15.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.NonGeneric/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Collections.Specialized/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Annotations.Reference/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.DataAnnotations/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.EventBasedAsync/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ComponentModel.TypeConverter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Configuration/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Console/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Core/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.Common/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data.DataSetExtensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Data/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Contracts/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Debug/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.EventLog/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.FileVersionInfo/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Process/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.StackTrace/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tools/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.TraceSource/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Diagnostics.Tracing/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Drawing.Primitives/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Dynamic.Runtime/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Calendars/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Globalization.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.Brotli/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.FileSystem/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Compression.ZipFile/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.DriveInfo/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.FileSystem.Watcher/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.IsolatedStorage/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.MemoryMappedFiles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipelines/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.Pipes/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.IO.UnmanagedMemoryStream/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Expressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Linq.Queryable/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Memory/4.2.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Http/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.HttpListener/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Mail/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NameResolution/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.NetworkInformation/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Ping/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Requests/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Security/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.ServicePoint/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.Sockets/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebClient/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebHeaderCollection/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebProxy/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets.Client/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Net.WebSockets/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Numerics.Vectors/4.1.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ObjectModel/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.DispatchProxy/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.ILGeneration/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Emit.Lightweight/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Metadata/1.4.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Reflection.TypeExtensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Reader/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.ResourceManager/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Resources.Writer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.Unsafe/4.0.6.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Extensions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Handles/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Intrinsics/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Loader/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Numerics/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Formatters/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Json/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Primitives/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Runtime.Serialization.Xml/4.1.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.AccessControl/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Claims/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Algorithms/4.3.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Cng/4.3.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Csp/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Primitives/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.X509Certificates/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Cryptography.Xml/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Permissions/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.Principal.Windows/4.1.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Security.SecureString/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceModel.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ServiceProcess/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.CodePages/4.1.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encoding.Extensions/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Encodings.Web/4.0.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.Json/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Text.RegularExpressions/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Channels/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Overlapped/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Dataflow/4.6.5.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Extensions/4.3.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Tasks.Parallel/4.0.4.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Thread/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.ThreadPool/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Threading.Timer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Transactions.Local/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.ValueTuple/4.0.3.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Web.HttpUtility/4.0.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Windows.Extensions/4.0.1.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Linq/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.ReaderWriter/4.2.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.Serialization/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XmlSerializer/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "System.Xml.XPath.XDocument/4.1.2.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- },
- "WindowsBase/4.0.0.0": {
- "type": "referenceassembly",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.dll
deleted file mode 100644
index 5cc1a69..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.exe b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.exe
deleted file mode 100644
index b54c4fb..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.exe and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.pdb b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.pdb
deleted file mode 100644
index 6e716da..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.pdb and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.runtimeconfig.json b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.runtimeconfig.json
deleted file mode 100644
index d5480f1..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Diagram-API.runtimeconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.AspNetCore.App",
- "version": "3.1.0"
- },
- "configProperties": {
- "System.GC.Server": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Bcl.HashCode.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 33571cf..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index fddac3a..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 9ba1a24..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index dec44dd..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Caching.Abstractions.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index 9e29195..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Caching.Memory.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index 63a40ee..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.Abstractions.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5b62973..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.Binder.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index f967fd3..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index 2194d59..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index db316ad..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.DependencyInjection.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 435c4f4..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Logging.Abstractions.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index ab140e0..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Logging.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 85a0fca..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Options.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Options.dll
deleted file mode 100644
index e182dd0..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Primitives.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index f70c14d..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/MySqlConnector.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/MySqlConnector.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Newtonsoft.Json.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Newtonsoft.Json.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Pomelo.EntityFrameworkCore.MySql.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 6320bae..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Pomelo.JsonObject.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/System.Collections.Immutable.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/System.Collections.Immutable.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/System.Diagnostics.DiagnosticSource.dll b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/appsettings.Development.json b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/appsettings.Development.json
deleted file mode 100644
index 8983e0f..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- }
-}
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/appsettings.json b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/appsettings.json
deleted file mode 100644
index d9d9a9b..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/appsettings.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/web.config b/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/web.config
deleted file mode 100644
index 579b818..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/PubTmp/Out/web.config
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/PublishOutputs.84effdfca5.txt b/Diagram-API/obj/Release/netcoreapp3.1/PublishOutputs.84effdfca5.txt
deleted file mode 100644
index b42b5e5..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/PublishOutputs.84effdfca5.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Diagram-API.exe
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\appsettings.Development.json
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\appsettings.json
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Diagram-API.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Diagram-API.deps.json
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Diagram-API.runtimeconfig.json
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Diagram-API.pdb
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Bcl.AsyncInterfaces.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Bcl.HashCode.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.EntityFrameworkCore.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.EntityFrameworkCore.Abstractions.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.EntityFrameworkCore.Relational.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Caching.Abstractions.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Caching.Memory.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Configuration.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Configuration.Abstractions.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Configuration.Binder.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.DependencyInjection.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Logging.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Logging.Abstractions.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Options.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Microsoft.Extensions.Primitives.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\MySqlConnector.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Newtonsoft.Json.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Pomelo.EntityFrameworkCore.MySql.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\Pomelo.JsonObject.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\System.Collections.Immutable.dll
-G:\Diagram-API\Diagram-API\obj\Release\netcoreapp3.1\PubTmp\Out\System.Diagnostics.DiagnosticSource.dll
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/apphost.exe b/Diagram-API/obj/Release/netcoreapp3.1/apphost.exe
deleted file mode 100644
index 3e9aa25..0000000
Binary files a/Diagram-API/obj/Release/netcoreapp3.1/apphost.exe and /dev/null differ
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.Manifest.cache b/Diagram-API/obj/Release/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.Manifest.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/Diagram-API/obj/Release/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.xml b/Diagram-API/obj/Release/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.xml
deleted file mode 100644
index 7b21d22..0000000
--- a/Diagram-API/obj/Release/netcoreapp3.1/staticwebassets/Diagram-API.StaticWebAssets.xml
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/Diagram-API/obj/project.assets.json b/Diagram-API/obj/project.assets.json
deleted file mode 100644
index 3f01bc1..0000000
--- a/Diagram-API/obj/project.assets.json
+++ /dev/null
@@ -1,1047 +0,0 @@
-{
- "version": 3,
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.1",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.14",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.14",
- "Microsoft.Extensions.Caching.Memory": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging": "3.1.14",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.14"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.14",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.14",
- "Microsoft.Extensions.DependencyInjection": "3.1.14",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.14",
- "Microsoft.Extensions.Options": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.14",
- "Microsoft.Extensions.Primitives": "3.1.14"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "related": ".xml"
- }
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "[3.1.14, 5.0.0)",
- "MySqlConnector": "[0.69.10, 1.0.0)",
- "Pomelo.JsonObject": "2.2.1"
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "related": ".xml"
- }
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "compile": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- }
- }
- },
- "libraries": {
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "microsoft.bcl.asyncinterfaces.nuspec",
- "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Bcl.HashCode/1.1.1": {
- "sha512": "MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
- "type": "package",
- "path": "microsoft.bcl.hashcode/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.HashCode.dll",
- "lib/net461/Microsoft.Bcl.HashCode.xml",
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
- "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
- "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
- "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
- "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
- "microsoft.bcl.hashcode.1.1.1.nupkg.sha512",
- "microsoft.bcl.hashcode.nuspec",
- "ref/net461/Microsoft.Bcl.HashCode.dll",
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
- "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
- "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.CSharp/4.5.0": {
- "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "type": "package",
- "path": "microsoft.csharp/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/uap10.0.16299/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.5.0.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard2.0/Microsoft.CSharp.dll",
- "ref/netstandard2.0/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/uap10.0.16299/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.EntityFrameworkCore/3.1.14": {
- "sha512": "scyR0k8hJ8gR2xmXM7mS5eXyXKTVBNbgVIq+TsURqGXuCQP6KAYxuz0+OScFHBRCkBdb/2fynf0JG/D4UGudxw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.3.1.14.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.14": {
- "sha512": "xXArI4pGAB8dc0tIYNfbqKz+9ZpELjF4+2Jcy48nd5IiRVxYpgT9c0+46rFHwAq/GryaTGUOQ0hkJHqkd+jN5Q==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.14": {
- "sha512": "xJwZ+Pzqk6M+EIaKq8E+n0kJsq2iwcD1v2bYHgLI/egqBW4ytpqCjDRcYLqrsExX5isotaOR9KvHECOBjc838w==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.14": {
- "sha512": "t7dp/bMF+iF2WfBF0CqugtAagHLbmjAvSlJLMrKPoAPYINusKrV+WOr+9lPivf6juMog2Lq0VTVsj5N6f5F/CQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.14": {
- "sha512": "2EGyKItPcRYc6JT361pU1sCwnho7uJMhojumvBGYZ4yBR0MUAxgw1FIicJXmPz4m4IfiUALhAACQfgWQns+zDw==",
- "type": "package",
- "path": "microsoft.extensions.caching.abstractions/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/3.1.14": {
- "sha512": "aNOymMs1Cv383KoATchVnnW3/k7zRTGUcI81ktd5UMay5NB+elKVuYB2jG7WZzDYasmRysoWbWL/1s85H8J3gQ==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.3.1.14.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration/3.1.14": {
- "sha512": "W3Dr4GwB6cZ1EJFPYSqDT2EzeiGgs7lUzv3Y9FxzRXUI5jTDzaToTVoHLr3Z/vwq05PnUsa9tMOtu2xj1FcQKw==",
- "type": "package",
- "path": "microsoft.extensions.configuration/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.3.1.14.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.14": {
- "sha512": "H2oTUy3bJvtlFLjK1apCJ3vjA1iODxY00UzDj3BjwYrUYk0eOrMndzCsnlrW0s4Vn/Sdy/2TduJ6wxNsKeL/dA==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.14": {
- "sha512": "kG3V2CZnfXS7CAlTmFG6Hu38QvkdCMh5IlcOA29nGSjB8pXH8yurDe3hPajdYSPw3OXEMRJmWfAb+qZtWzLvyw==",
- "type": "package",
- "path": "microsoft.extensions.configuration.binder/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
- "microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512",
- "microsoft.extensions.configuration.binder.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/3.1.14": {
- "sha512": "8Y0ERNlu5zQAcrh9k6E+6ZHHA9NuBwK9N7RqEpx8eyMbl1DOHblerXFLtuKoBY1x+GafDdZXKEmfU7DEfCSb7g==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.14": {
- "sha512": "DKI1KGqMqIRV9fc4UKlLsYIbFBz+syMcXwnpI2G1Sc5GNKSlx8yl8uQEJR6e5DAxTla+kVd8JOa0jHcvy7Lm7A==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging/3.1.14": {
- "sha512": "Ciktu85jstH2dfIH4oo421igFlVMle9etSRt/b9/M18e+MHvgFw/oh4TQRlZIxz9Fvcay4OLtjbZa+dPRVqNWg==",
- "type": "package",
- "path": "microsoft.extensions.logging/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.3.1.14.nupkg.sha512",
- "microsoft.extensions.logging.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.14": {
- "sha512": "pEKsBsD+nl4MHs8qnv/QiL3uwQMRZCVmeOmdt5NJwKO5ndNc/H9YD/9nmVvr3vlAtRcAj56HZMhNQ/NHbQTOSw==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Options/3.1.14": {
- "sha512": "t9a+56OwOoUIluRH/e1o2yyMMOKQuVVFFChJcRRQQdb6z5BS0PS5JSjShWygZ/V3AbU7xoIKtqKopx8NID6oNA==",
- "type": "package",
- "path": "microsoft.extensions.options/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.3.1.14.nupkg.sha512",
- "microsoft.extensions.options.nuspec"
- ]
- },
- "Microsoft.Extensions.Primitives/3.1.14": {
- "sha512": "OusiQZUlEHI5MwfIymyJgY8nN0bKqCsGvALG0khcNkO9h8H8d4wtakaKBQORDlKkYYLSq/pap7wRUxh6eLs3vg==",
- "type": "package",
- "path": "microsoft.extensions.primitives/3.1.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.3.1.14.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec"
- ]
- },
- "MySqlConnector/0.69.10": {
- "sha512": "flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "type": "package",
- "path": "mysqlconnector/0.69.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/MySqlConnector.dll",
- "lib/net45/MySqlConnector.xml",
- "lib/net461/MySqlConnector.dll",
- "lib/net461/MySqlConnector.xml",
- "lib/net471/MySqlConnector.dll",
- "lib/net471/MySqlConnector.xml",
- "lib/netcoreapp2.1/MySqlConnector.dll",
- "lib/netcoreapp2.1/MySqlConnector.xml",
- "lib/netcoreapp3.0/MySqlConnector.dll",
- "lib/netcoreapp3.0/MySqlConnector.xml",
- "lib/netstandard1.3/MySqlConnector.dll",
- "lib/netstandard1.3/MySqlConnector.xml",
- "lib/netstandard2.0/MySqlConnector.dll",
- "lib/netstandard2.0/MySqlConnector.xml",
- "lib/netstandard2.1/MySqlConnector.dll",
- "lib/netstandard2.1/MySqlConnector.xml",
- "logo.png",
- "mysqlconnector.0.69.10.nupkg.sha512",
- "mysqlconnector.nuspec"
- ]
- },
- "Newtonsoft.Json/11.0.2": {
- "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "type": "package",
- "path": "newtonsoft.json/11.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
- "newtonsoft.json.11.0.2.nupkg.sha512",
- "newtonsoft.json.nuspec"
- ]
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.5": {
- "sha512": "jXRTckqj+Ia1HPYJqKXyY/hAffVvsoBkZjwBq3nLb6T/9T/ANxBww3eQE+ZBsFl3FLdTOW2crKhh9LsVRg0UUw==",
- "type": "package",
- "path": "pomelo.entityframeworkcore.mysql/3.2.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll",
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.xml",
- "pomelo.entityframeworkcore.mysql.3.2.5.nupkg.sha512",
- "pomelo.entityframeworkcore.mysql.nuspec"
- ]
- },
- "Pomelo.JsonObject/2.2.1": {
- "sha512": "VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "type": "package",
- "path": "pomelo.jsonobject/2.2.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Pomelo.JsonObject.dll",
- "pomelo.jsonobject.2.2.1.nupkg.sha512",
- "pomelo.jsonobject.nuspec"
- ]
- },
- "System.Collections.Immutable/1.7.1": {
- "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "type": "package",
- "path": "system.collections.immutable/1.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/netstandard1.0/System.Collections.Immutable.dll",
- "lib/netstandard1.0/System.Collections.Immutable.xml",
- "lib/netstandard1.3/System.Collections.Immutable.dll",
- "lib/netstandard1.3/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
- "system.collections.immutable.1.7.1.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "type": "package",
- "path": "system.componentmodel.annotations/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net461/System.ComponentModel.Annotations.dll",
- "lib/netcore50/System.ComponentModel.Annotations.dll",
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
- "lib/portable-net45+win8/_._",
- "lib/win8/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net461/System.ComponentModel.Annotations.dll",
- "ref/net461/System.ComponentModel.Annotations.xml",
- "ref/netcore50/System.ComponentModel.Annotations.dll",
- "ref/netcore50/System.ComponentModel.Annotations.xml",
- "ref/netcore50/de/System.ComponentModel.Annotations.xml",
- "ref/netcore50/es/System.ComponentModel.Annotations.xml",
- "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
- "ref/netcore50/it/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
- "ref/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.annotations.4.7.0.nupkg.sha512",
- "system.componentmodel.annotations.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/System.Diagnostics.DiagnosticSource.dll",
- "lib/net45/System.Diagnostics.DiagnosticSource.xml",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- }
- },
- "projectFileDependencyGroups": {
- ".NETCoreApp,Version=v3.1": [
- "Pomelo.EntityFrameworkCore.MySql >= 3.2.5"
- ]
- },
- "packageFolders": {
- "C:\\Users\\Admin\\.nuget\\packages\\": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj",
- "projectName": "Diagram-API",
- "projectPath": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj",
- "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
- "outputPath": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\obj\\",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "netcoreapp3.1"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "dependencies": {
- "Pomelo.EntityFrameworkCore.MySql": {
- "target": "Package",
- "version": "[3.2.5, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Ref",
- "version": "[3.1.10, 3.1.10]"
- },
- {
- "name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[3.1.32, 3.1.32]"
- },
- {
- "name": "Microsoft.NETCore.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400\\RuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Diagram-API/obj/project.nuget.cache b/Diagram-API/obj/project.nuget.cache
deleted file mode 100644
index 6633daf..0000000
--- a/Diagram-API/obj/project.nuget.cache
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "6g20IAmrEk0=",
- "success": true,
- "projectFilePath": "D:\\src\\CurrStatVDP\\Diagram-API\\Diagram-API\\Diagram-API.csproj",
- "expectedPackageFiles": [
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.1\\microsoft.bcl.hashcode.1.1.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.14\\microsoft.entityframeworkcore.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.14\\microsoft.entityframeworkcore.abstractions.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.14\\microsoft.entityframeworkcore.analyzers.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.14\\microsoft.entityframeworkcore.relational.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.14\\microsoft.extensions.caching.abstractions.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.14\\microsoft.extensions.caching.memory.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.14\\microsoft.extensions.configuration.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.14\\microsoft.extensions.configuration.abstractions.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.14\\microsoft.extensions.configuration.binder.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.14\\microsoft.extensions.dependencyinjection.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.14\\microsoft.extensions.dependencyinjection.abstractions.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.logging\\3.1.14\\microsoft.extensions.logging.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.14\\microsoft.extensions.logging.abstractions.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.options\\3.1.14\\microsoft.extensions.options.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.14\\microsoft.extensions.primitives.3.1.14.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\mysqlconnector\\0.69.10\\mysqlconnector.0.69.10.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.5\\pomelo.entityframeworkcore.mysql.3.2.5.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\3.1.0\\microsoft.windowsdesktop.app.ref.3.1.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.app.ref\\3.1.0\\microsoft.netcore.app.ref.3.1.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\3.1.10\\microsoft.aspnetcore.app.ref.3.1.10.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\3.1.32\\microsoft.netcore.app.host.win-x64.3.1.32.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/GenCycleVDP/GenCycle.cs b/GenCycleVDP/GenCycle.cs
new file mode 100644
index 0000000..d0486e6
--- /dev/null
+++ b/GenCycleVDP/GenCycle.cs
@@ -0,0 +1,151 @@
+using System;
+using System.Linq;
+using System.Threading.Tasks;
+using GenCycleVDP.Resources;
+using DbCycleVDP;
+
+namespace GenCycleVDP
+{
+ internal class GenCycle(int vdp)
+ {
+ private readonly int vdp = vdp;
+
+ private CycleStatus currCycle = CycleStatus.EndTechCycle;
+ private DateTime factStart = DateTime.Now;
+ private DateTime factEnd = DateTime.Now;
+ private DateTime thinkEnd = DateTime.Now;
+
+ private bool cycle = false;
+ private Task taskCycle = Task.CompletedTask;
+
+ public void Start()
+ {
+ cycle = true;
+ taskCycle = this.Cycle();
+ }
+ public void Stop()
+ {
+ cycle = false;
+ taskCycle.Wait();
+ }
+
+ async public Task Cycle()
+ {
+ while (cycle)
+ {
+ if (GetCurrCycle()) //Can get info form DB.
+ {
+ if (DateTime.Now >= factEnd)
+ {
+ GetNextCycle();
+ GetTimeStart();
+ GetTimeThinkEnd();
+ GetTimeFactEnd();
+ while (!SaveToDB())
+ {
+ Console.WriteLine("VDP " + vdp.ToString("D2") + ": Can't connect to DB.");
+ await Task.Delay(5000);
+ }
+ }
+ }
+ else //It's new Cycle.
+ {
+ GetTimeStart();
+ GetTimeThinkEnd();
+ GetTimeFactEnd();
+ while (!SaveToDB())
+ {
+ Console.WriteLine("VDP " + vdp.ToString("D2") + ": Can't connect to DB.");
+ await Task.Delay(5000);
+ }
+ }
+
+ while (cycle && (DateTime.Now < factEnd))
+ {
+ var secAwait = (factEnd - DateTime.Now).TotalSeconds;
+ if (secAwait >= 5)
+ {
+ await Task.Delay(5000);
+ }
+ else
+ {
+ await Task.Delay(Convert.ToInt32(Math.Ceiling(secAwait)) * 1000);
+ }
+ }
+ }
+ }
+
+ public bool GetCurrCycle()
+ {
+ try
+ {
+ using var db = new DbFurnace();
+ var tmp = (from u in db.Cycles
+ where
+ u.NumVdp == vdp
+ orderby u.FactStart descending
+ select u).FirstOrDefault();
+ if (tmp == null)
+ {
+ currCycle = CycleStatus.EndTechCycle;
+ return false;
+ }
+ currCycle = Enum.IsDefined(typeof(CycleStatus), tmp.NumCycle)
+ ? (CycleStatus)tmp.NumCycle
+ : CycleStatus.EndTechCycle;
+ factStart = tmp.FactStart;
+ factEnd = tmp.FactEnd;
+ }
+ catch (Exception e)
+ {
+ Console.WriteLine(e.Message);
+ return false;
+ }
+ return true;
+ }
+ public void GetNextCycle()
+ {
+ currCycle = GenData.GetNextCycle(currCycle);
+ }
+ public void GetTimeStart()
+ {
+ factStart = factEnd;
+ }
+ public void GetTimeThinkEnd()
+ {
+ thinkEnd = factStart.AddMinutes(GenData.GetDuration(currCycle));
+ }
+ public void GetTimeFactEnd()
+ {
+ factEnd = thinkEnd.AddSeconds(GenData.GetDeviation(currCycle));
+ }
+ public bool SaveToDB()
+ {
+ try
+ {
+ using var db = new DbFurnace();
+ var tmp = new TableCycle()
+ {
+ NumVdp = vdp,
+ NumCycle = (int)currCycle,
+ FactStart = factStart,
+ FactEnd = factEnd,
+ ThinkEnd = thinkEnd
+ };
+ db.Cycles.Add(tmp);
+ db.SaveChanges();
+ }
+ catch (Exception e)
+ {
+ Console.WriteLine(e.Message);
+ return false;
+ }
+ return true;
+ }
+
+ public string GetStatus()
+ {
+ return vdp.ToString("D2") + "-" + currCycle.ToString();
+ }
+ }
+}
diff --git a/GenCycleVDP/GenCycleVDP.csproj b/GenCycleVDP/GenCycleVDP.csproj
new file mode 100644
index 0000000..4902e2e
--- /dev/null
+++ b/GenCycleVDP/GenCycleVDP.csproj
@@ -0,0 +1,19 @@
+
+
+
+ Exe
+ net8.0
+ disable
+ enable
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GenCycleVDP/Program.cs b/GenCycleVDP/Program.cs
new file mode 100644
index 0000000..864eaa9
--- /dev/null
+++ b/GenCycleVDP/Program.cs
@@ -0,0 +1,53 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+
+namespace GenCycleVDP
+{
+ internal class Program
+ {
+ private static bool isExiting = false;
+ private static List tasks = [];
+
+ static void Main(string[] args)
+ {
+ for (var i = 1; i <= 48; i++)
+ {
+ var a = new GenCycle(i);
+ a.Start();
+ tasks.Add(a);
+ }
+
+ int count = 0;
+ while (!isExiting)
+ {
+ if (count > 600)
+ {
+ for (var i = 0; i < tasks.Count; i++)
+ {
+ if (i % 10 == 0 && i != 0)
+ Console.WriteLine();
+ Console.Write(tasks[i].GetStatus() + "|");
+ }
+ Console.WriteLine();
+ count = 0;
+ }
+ else
+ {
+ count++;
+ }
+ Task.Delay(1000).Wait();
+ }
+ foreach(var furance in tasks)
+ {
+ furance.Stop();
+ }
+ }
+
+ private static void OnExit(object sender, ConsoleCancelEventArgs e)
+ {
+ isExiting = true;
+ e.Cancel = true;
+ }
+ }
+}
diff --git a/GenCycleVDP/Resources/CycleStatus.cs b/GenCycleVDP/Resources/CycleStatus.cs
new file mode 100644
index 0000000..aea3eaa
--- /dev/null
+++ b/GenCycleVDP/Resources/CycleStatus.cs
@@ -0,0 +1,20 @@
+namespace GenCycleVDP.Resources
+{
+ public enum CycleStatus : int
+ {
+ EndTechCycle = 0,
+ LoadUnload = 1,
+ VacForWelding = 2,
+ Welding = 5,
+ CoolingWelding = 6,
+ CheckWelding = 7,
+ VacForMelting = 8,
+ DilutionVat = 9,
+ Melting = 10,
+ BringShrinkageCavity = 11,
+ CoolingIngot = 12,
+ VacForMeltingScarp = 14,
+ MeltingScarp = 15,
+ CoolingMeltingScarp = 16
+ }
+}
diff --git a/GenCycleVDP/Resources/GenData.cs b/GenCycleVDP/Resources/GenData.cs
new file mode 100644
index 0000000..b7c047f
--- /dev/null
+++ b/GenCycleVDP/Resources/GenData.cs
@@ -0,0 +1,131 @@
+using System;
+using System.Collections.Generic;
+
+namespace GenCycleVDP.Resources
+{
+ internal static class GenData
+ {
+ private static readonly Random random = new();
+ private static readonly Dictionary NextState, int Duration, (int min, int offset))> genDataMap = new()
+ {
+ {
+ CycleStatus.EndTechCycle,
+ (() => random.Next(100) < 50
+ ? CycleStatus.VacForMeltingScarp
+ : CycleStatus.VacForWelding,
+ 15,
+ (7 * 60, 5 * 60))
+ },
+ {
+ CycleStatus.LoadUnload,
+ (() => CycleStatus.VacForWelding,
+ 15,
+ (3 * 60, 2 * 60))
+ },
+ {
+ CycleStatus.VacForWelding,
+ (() => CycleStatus.Welding,
+ 10,
+ (11 * 60, 1 * 60))
+ },
+ {
+ CycleStatus.Welding,
+ (() => CycleStatus.CoolingWelding,
+ 13,
+ (4 * 60, 3 * 60))
+ },
+ {
+ CycleStatus.CoolingWelding,
+ (() => CycleStatus.CheckWelding,
+ 7,
+ (4 * 60, 3 * 60))
+ },
+ {
+ CycleStatus.CheckWelding,
+ (() => random.Next(100) < 20
+ ? CycleStatus.Welding
+ : CycleStatus.VacForMelting,
+ 5,
+ (7 * 60, 2 * 60))
+ },
+ {
+ CycleStatus.VacForMelting,
+ (() => CycleStatus.DilutionVat,
+ 10,
+ (11 * 60, 1 * 60))
+ },
+ {
+ CycleStatus.DilutionVat,
+ (() => CycleStatus.Melting,
+ 5,
+ (2 * 60, 1 * 60))
+ },
+ {
+ CycleStatus.Melting,
+ (() => CycleStatus.BringShrinkageCavity,
+ 60,
+ (40 * 60, 30 * 60))
+ },
+ {
+ CycleStatus.BringShrinkageCavity,
+ (() => CycleStatus.CoolingIngot,
+ 15,
+ (5 * 60, 3 * 60))
+ },
+ {
+ CycleStatus.CoolingIngot,
+ (() => CycleStatus.EndTechCycle,
+ 30,
+ (20 * 60, 10 * 60))
+ },
+ {
+ CycleStatus.VacForMeltingScarp,
+ (() => CycleStatus.MeltingScarp,
+ 10,
+ (11 * 60, 1 * 60))
+ },
+ {
+ CycleStatus.MeltingScarp,
+ (() => CycleStatus.CoolingMeltingScarp,
+ 20,
+ (4 * 60, 3 * 60))
+ },
+ {
+ CycleStatus.CoolingMeltingScarp,
+ (() => CycleStatus.LoadUnload,
+ 15,
+ (4 * 60, 3 * 60))
+ },
+ };
+
+ public static CycleStatus GetNextCycle(CycleStatus currCycle)
+ {
+ CycleStatus nextCycle = CycleStatus.EndTechCycle;
+ if(genDataMap.TryGetValue(currCycle, out var data))
+ {
+ nextCycle = data.NextState();
+ }
+ return nextCycle;
+ }
+
+ public static int GetDuration(CycleStatus currCycle)
+ {
+ int duration = 15;
+ if (genDataMap.TryGetValue(currCycle, out var data))
+ {
+ duration = data.Duration;
+ }
+ return duration;
+ }
+
+ public static int GetDeviation(CycleStatus currCycle)
+ {
+ int deviation = random.Next(7 * 60) - (5 * 60);
+ if (genDataMap.TryGetValue(currCycle, out var data))
+ {
+ deviation = random.Next(data.Item3.min) - data.Item3.offset;
+ }
+ return deviation;
+ }
+ }
+}
diff --git a/GenerateVDPCycle/DBvdp.cs b/GenerateVDPCycle/DBvdp.cs
deleted file mode 100644
index 01afed3..0000000
--- a/GenerateVDPCycle/DBvdp.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.Text;
-
-namespace GenerateVDPCycle.DB
-{
- public class VdpDB : DbContext
- {
- public DbSet Cycles { get; set; }
- public VdpDB()
- {
- Database.EnsureCreated();
- }
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
- {
- optionsBuilder.UseMySql("server=127.0.0.1;user=diplom;password=diplom;database=VDPCycles;");
- }
-
- protected override void OnModelCreating(ModelBuilder modelBuilder)
- {
-
- }
- }
-
- [Table("Cycles")]
- public class Cycle
- {
- [Column("idCycle"), Required, Key]
- public int IdCycle { get; set; }
- [Column("numVdp")]
- public int NumVdp { get; set; }
- [Column("numCycle")]
- public int NumCycle { get; set; }
- [Column("factStart")]
- public DateTime FactStart { get; set; }
- [Column("thinkEnd")]
- public DateTime ThinkEnd { get; set; }
- [Column("factEnd")]
- public DateTime FactEnd { get; set; }
-
- }
-
-}
diff --git a/GenerateVDPCycle/GenerateVDPCycle.csproj b/GenerateVDPCycle/GenerateVDPCycle.csproj
deleted file mode 100644
index e03656a..0000000
--- a/GenerateVDPCycle/GenerateVDPCycle.csproj
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- Exe
- netcoreapp3.1
-
-
-
-
-
-
-
-
diff --git a/GenerateVDPCycle/GenerateVDPCycle.csproj.user b/GenerateVDPCycle/GenerateVDPCycle.csproj.user
deleted file mode 100644
index b458f13..0000000
--- a/GenerateVDPCycle/GenerateVDPCycle.csproj.user
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
- <_LastSelectedProfileId>G:\Diagram-API\GenerateVDPCycle\Properties\PublishProfiles\FolderProfile.pubxml
-
-
\ No newline at end of file
diff --git a/GenerateVDPCycle/MySqlServerVersion.cs b/GenerateVDPCycle/MySqlServerVersion.cs
deleted file mode 100644
index 5a5b9f6..0000000
--- a/GenerateVDPCycle/MySqlServerVersion.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace GenerateVDPCycle
-{
- internal class MySqlServerVersion
- {
- private Version version;
-
- public MySqlServerVersion(Version version)
- {
- this.version = version;
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/Program.cs b/GenerateVDPCycle/Program.cs
deleted file mode 100644
index 8c95aef..0000000
--- a/GenerateVDPCycle/Program.cs
+++ /dev/null
@@ -1,294 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Threading.Tasks;
-using System.Linq;
-
-namespace GenerateVDPCycle
-{
- class Program
- {
- static List tasks = new List();
- static void Main(string[] args)
- {
- var r = new Random();
- for(var i = 1; i <= 48; i++)
- {
- var a = new GenCycle(i);
- a.Start();
- tasks.Add(a);
- }
- Task.Delay(1000 * 5).Wait();
- while (true)
- {
- for (var i = 0; i < tasks.Count; i++)
- {
- if (i % 10 == 0 && i != 0)
- Console.WriteLine();
- Console.Write(tasks[i].GetSmallStatus() + "|");
- }
- Console.WriteLine();
- Task.Delay(1000 * 60 * 10).Wait();
- }
- }
- }
-
- public class GenCycle
- {
- private int vdp = 0;
-
- private int curCycle = 0;
- private DateTime factStart = DateTime.Now;
- private DateTime factEnd = DateTime.Now;
- private DateTime thinkEnd = DateTime.Now;
- private bool cycle = false;
- private Task taskCycle = null;
-
- public GenCycle(int vdp)
- {
- this.vdp = vdp;
- }
-
- public bool GetCurrCycle()
- {
- try
- {
- using (var db = new DB.VdpDB())
- {
- var tmp = (from u in db.Cycles
- where
- u.NumVdp == vdp
- orderby u.FactStart descending
- select u).FirstOrDefault();
- if (tmp == null)
- {
- curCycle = 0;
- return false;
- }
- curCycle = tmp.NumCycle;
- factStart = tmp.FactStart;
- factEnd = tmp.FactEnd;
- }
- }
- catch (Exception e)
- {
- Console.WriteLine(e.Message);
- return false;
- }
- return true;
- }
- public void GetNextCycle()
- {
- var r = new Random();
- var a = r.Next(100);
- switch (curCycle)
- {
- case 0: curCycle =
- (a < 50) ? 14 : 2; break;
- case 1: curCycle = 2; break;
- case 2: curCycle = 5; break;
- case 5: curCycle = 6; break;
- case 6: curCycle = 7; break;
- case 7: curCycle =
- (a < 20) ? 5 : 8; break;
- case 8: curCycle = 9; break;
- case 9: curCycle = 10; break;
- case 10: curCycle = 11; break;
- case 11: curCycle = 12; break;
- case 12: curCycle = 0; break;
- case 14: curCycle = 15; break;
- case 15: curCycle = 16; break;
- case 16: curCycle = 1; break;
- default: curCycle = 0; break;
- }
- }
- public void GetTimeStart()
- {
- factStart = factEnd;
- }
- public void GetTimeThinkEnd()
- {
- switch (curCycle)
- {
- case 0: thinkEnd = factStart.AddMinutes(15); break;
- case 1: thinkEnd = factStart.AddMinutes(15); break;
- case 2: thinkEnd = factStart.AddMinutes(10); break;
- case 5: thinkEnd = factStart.AddMinutes(13); break;
- case 6: thinkEnd = factStart.AddMinutes(7); break;
- case 7: thinkEnd = factStart.AddMinutes(5); break;
- case 8: thinkEnd = factStart.AddMinutes(10); break;
- case 9: thinkEnd = factStart.AddMinutes(5); break;
- case 10: thinkEnd = factStart.AddMinutes(60); break;
- case 11: thinkEnd = factStart.AddMinutes(15); break;
- case 12: thinkEnd = factStart.AddMinutes(30); break;
- case 14: thinkEnd = factStart.AddMinutes(10); break;
- case 15: thinkEnd = factStart.AddMinutes(20); break;
- case 16: thinkEnd = factStart.AddMinutes(15); break;
- default: thinkEnd = factStart.AddMinutes(15); break;
- }
- }
- public void GetTimeFactEnd()
- {
- var r = new Random();
- var sec = 0;
- switch (curCycle)
- {
- case 0:
- sec = r.Next(7 * 60) - (5 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 1:
- sec = r.Next(3 * 60) - (2 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 2:
- sec = r.Next(11 * 60) - (1 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 5:
- sec = r.Next(4 * 60) - (3 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 6:
- sec = r.Next(4 * 60) - (3 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 7:
- sec = r.Next(7 * 60) - (2 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 8:
- sec = r.Next(11 * 60) - (1 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 9:
- sec = r.Next(2 * 60) - (1 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 10:
- sec = r.Next(40 * 60) - (30 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 11:
- sec = r.Next(5 * 60) - (3 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 12:
- sec = r.Next(20 * 60) - (10 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 14:
- sec = r.Next(11 * 60) - (1 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 15:
- sec = r.Next(4 * 60) - (3 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- case 16:
- sec = r.Next(4 * 60) - (3 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- default:
- sec = r.Next(7 * 60) - (5 * 60);
- factEnd = thinkEnd.AddSeconds(sec);
- break;
- }
- }
- public bool SaveToDB()
- {
- try
- {
- using (var db = new DB.VdpDB())
- {
- var tmp = new DB.Cycle()
- {
- NumVdp = vdp,
- NumCycle = curCycle,
- FactStart = factStart,
- FactEnd = factEnd,
- ThinkEnd = thinkEnd
- };
- db.Cycles.Add(tmp);
- db.SaveChanges();
- }
- }
- catch (Exception e)
- {
- Console.WriteLine(e.Message);
- return false;
- }
- return true;
- }
-
- public void Start()
- {
- cycle = true;
- taskCycle = this.Cycle();
- }
- public void Stop()
- {
- cycle = false;
- taskCycle.Wait();
- }
-
- async public Task Cycle()
- {
- while (cycle)
- {
- if (GetCurrCycle())
- {
- if(DateTime.Now >= factEnd)
- {
- /*if (vdp == 1)
- Console.WriteLine("Generate next cycle.");*/
- GetNextCycle();
- GetTimeStart();
- GetTimeThinkEnd();
- GetTimeFactEnd();
- while (!SaveToDB())
- {
- Console.WriteLine("VDP " + vdp.ToString("D2") + ": Can't connect to DB.");
- await Task.Delay(5000);
- }
- }
- } else
- {
- /*if (vdp == 1)
- Console.WriteLine("Generate new cycle.");*/
- GetTimeStart();
- GetTimeThinkEnd();
- GetTimeFactEnd();
- while (!SaveToDB())
- {
- Console.WriteLine("VDP " + vdp.ToString("D2") + ": Can't connect to DB.");
- await Task.Delay(5000);
- }
- }
-
- while (cycle && (DateTime.Now < factEnd))
- {
- var secAwait = (factEnd - DateTime.Now).TotalSeconds;
- /*if(vdp == 1)
- Console.WriteLine("Time to cycle update " + secAwait.ToString());*/
- if (secAwait >= 5)
- {
- /*if (vdp == 1)
- Console.WriteLine("Delay 5 sec");*/
- await Task.Delay(5000);
- }
- else
- {
- /*if (vdp == 1)
- Console.WriteLine("Delay last secs");*/
- await Task.Delay(Convert.ToInt32(Math.Ceiling(secAwait)) * 1000);
- }
- }
- }
- }
-
- public string GetSmallStatus()
- {
- return vdp.ToString("D2") + "-" + curCycle.ToString("D2");
- }
- }
-}
diff --git a/GenerateVDPCycle/Properties/PublishProfiles/FolderProfile.pubxml b/GenerateVDPCycle/Properties/PublishProfiles/FolderProfile.pubxml
deleted file mode 100644
index ed3755a..0000000
--- a/GenerateVDPCycle/Properties/PublishProfiles/FolderProfile.pubxml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
- Release
- Any CPU
- bin\Release\netcoreapp3.1\publish\
- FileSystem
-
-
\ No newline at end of file
diff --git a/GenerateVDPCycle/Properties/PublishProfiles/FolderProfile.pubxml.user b/GenerateVDPCycle/Properties/PublishProfiles/FolderProfile.pubxml.user
deleted file mode 100644
index fdfcc94..0000000
--- a/GenerateVDPCycle/Properties/PublishProfiles/FolderProfile.pubxml.user
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
- True|2021-05-15T17:10:47.3245571Z;True|2021-05-15T21:25:06.5330767+05:00;True|2021-05-15T21:19:52.6923042+05:00;True|2021-05-15T02:00:00.0098849+05:00;True|2021-05-14T23:44:15.6733282+05:00;True|2021-05-14T23:40:35.5035391+05:00;True|2021-05-14T23:27:02.0978967+05:00;
-
-
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.deps.json b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.deps.json
deleted file mode 100644
index 615a637..0000000
--- a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.deps.json
+++ /dev/null
@@ -1,436 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "GenerateVDPCycle/1.0.0": {
- "dependencies": {
- "MySqlConnector": "0.69.10",
- "Pomelo.EntityFrameworkCore.MySql": "3.2.4"
- },
- "runtime": {
- "GenerateVDPCycle.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.0",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.8",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.8",
- "Microsoft.Extensions.Caching.Memory": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging": "3.1.8",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.8"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.8",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.8",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.4.0",
- "fileVersion": "3.2.4.0"
- }
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {},
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- }
- }
- },
- "libraries": {
- "GenerateVDPCycle/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
- "path": "microsoft.bcl.hashcode/1.1.0",
- "hashPath": "microsoft.bcl.hashcode.1.1.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bI+yxA329qf+8efR6A35/3L2NLekcsWJOfXakA37ILUiWcX1qp/XsXmEi6SYMpMikioy0a5p0IU8gHoqSvtLaA==",
- "path": "microsoft.entityframeworkcore/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bJ6Crbz3FP2Cze1DXg+FiE5l0AFK8y6j32LP+6tMFrpdJc0XB8XBGXEX6w9baulxXC8U3OYUq1yxFVwgNdVyJw==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cm1+PV53O/xN4P8fMkSZq9aqyXRjEZ5kmuWs7W4yE4V4GLgrqTCRmtooM5tUPM3R7VI47hAa8Aab+UuSRvpU+w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-n8c2Nyfyl0AKXdM++tiKZmX/jeiu1Uv+uxZAHGgKuiQJbpOCPAhjRB4tHLdo1jOvfkhJT9K6wekf9VaXjtL1tw==",
- "path": "microsoft.entityframeworkcore.relational/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iBIdKjKa2nR4LdknV2JMSRpJVM5TOca25EckPm6SZQT6HfH8RoHrn9m14GUAkvzE+uOziXRoAwr8YIC6ZOpyXg==",
- "path": "microsoft.extensions.caching.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-u04q7+tgc8l6pQ5HOcr6scgapkQQHnrhpGoCaaAZd24R36/NxGsGxuhSmhHOrQx9CsBLe2CVBN/4CkLlxtnnXw==",
- "path": "microsoft.extensions.caching.memory/3.1.8",
- "hashPath": "microsoft.extensions.caching.memory.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==",
- "path": "microsoft.extensions.configuration/3.1.8",
- "hashPath": "microsoft.extensions.configuration.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==",
- "path": "microsoft.extensions.configuration.binder/3.1.8",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==",
- "path": "microsoft.extensions.dependencyinjection/3.1.8",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==",
- "path": "microsoft.extensions.logging/3.1.8",
- "hashPath": "microsoft.extensions.logging.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==",
- "path": "microsoft.extensions.logging.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==",
- "path": "microsoft.extensions.options/3.1.8",
- "hashPath": "microsoft.extensions.options.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==",
- "path": "microsoft.extensions.primitives/3.1.8",
- "hashPath": "microsoft.extensions.primitives.3.1.8.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6UOPWyL2qIsRCnN880YXA6rACpqVV6GE+H3vR4KJytjigWKFp+aiRDwJRSorwZ9ntHu+RDBcXGjmaShj0mBmYA==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.4",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.dll
deleted file mode 100644
index 3f335c7..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.exe b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.exe
deleted file mode 100644
index d90a345..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.exe and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.pdb b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.pdb
deleted file mode 100644
index 32cdff3..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.pdb and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.dev.json b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.dev.json
deleted file mode 100644
index cb610d9..0000000
--- a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.dev.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\Admin\\.nuget\\packages",
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet"
- ]
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.json b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.json
deleted file mode 100644
index bc456d7..0000000
--- a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "3.1.0"
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 6d749da..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index c8c59b4..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 732d79f..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index 588eec6..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index e6d652e..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index d7575d7..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5956635..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index 6d64a2e..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index c4ec0f1..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index fa59db3..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 9b8c43e..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index 7e3bdc2..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 8aaa4ea..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll
deleted file mode 100644
index 2d288be..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index a8e17b2..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/MySqlConnector.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/MySqlConnector.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 7f1ca3b..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/GenerateVDPCycle/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/GenerateVDPCycle/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.deps.json b/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.deps.json
deleted file mode 100644
index 615a637..0000000
--- a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.deps.json
+++ /dev/null
@@ -1,436 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "GenerateVDPCycle/1.0.0": {
- "dependencies": {
- "MySqlConnector": "0.69.10",
- "Pomelo.EntityFrameworkCore.MySql": "3.2.4"
- },
- "runtime": {
- "GenerateVDPCycle.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.0",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.8",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.8",
- "Microsoft.Extensions.Caching.Memory": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging": "3.1.8",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.8"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.8",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.8",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.4.0",
- "fileVersion": "3.2.4.0"
- }
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {},
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- }
- }
- },
- "libraries": {
- "GenerateVDPCycle/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
- "path": "microsoft.bcl.hashcode/1.1.0",
- "hashPath": "microsoft.bcl.hashcode.1.1.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bI+yxA329qf+8efR6A35/3L2NLekcsWJOfXakA37ILUiWcX1qp/XsXmEi6SYMpMikioy0a5p0IU8gHoqSvtLaA==",
- "path": "microsoft.entityframeworkcore/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bJ6Crbz3FP2Cze1DXg+FiE5l0AFK8y6j32LP+6tMFrpdJc0XB8XBGXEX6w9baulxXC8U3OYUq1yxFVwgNdVyJw==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cm1+PV53O/xN4P8fMkSZq9aqyXRjEZ5kmuWs7W4yE4V4GLgrqTCRmtooM5tUPM3R7VI47hAa8Aab+UuSRvpU+w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-n8c2Nyfyl0AKXdM++tiKZmX/jeiu1Uv+uxZAHGgKuiQJbpOCPAhjRB4tHLdo1jOvfkhJT9K6wekf9VaXjtL1tw==",
- "path": "microsoft.entityframeworkcore.relational/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iBIdKjKa2nR4LdknV2JMSRpJVM5TOca25EckPm6SZQT6HfH8RoHrn9m14GUAkvzE+uOziXRoAwr8YIC6ZOpyXg==",
- "path": "microsoft.extensions.caching.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-u04q7+tgc8l6pQ5HOcr6scgapkQQHnrhpGoCaaAZd24R36/NxGsGxuhSmhHOrQx9CsBLe2CVBN/4CkLlxtnnXw==",
- "path": "microsoft.extensions.caching.memory/3.1.8",
- "hashPath": "microsoft.extensions.caching.memory.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==",
- "path": "microsoft.extensions.configuration/3.1.8",
- "hashPath": "microsoft.extensions.configuration.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==",
- "path": "microsoft.extensions.configuration.binder/3.1.8",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==",
- "path": "microsoft.extensions.dependencyinjection/3.1.8",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==",
- "path": "microsoft.extensions.logging/3.1.8",
- "hashPath": "microsoft.extensions.logging.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==",
- "path": "microsoft.extensions.logging.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==",
- "path": "microsoft.extensions.options/3.1.8",
- "hashPath": "microsoft.extensions.options.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==",
- "path": "microsoft.extensions.primitives/3.1.8",
- "hashPath": "microsoft.extensions.primitives.3.1.8.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6UOPWyL2qIsRCnN880YXA6rACpqVV6GE+H3vR4KJytjigWKFp+aiRDwJRSorwZ9ntHu+RDBcXGjmaShj0mBmYA==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.4",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.dll
deleted file mode 100644
index 0b6f1b3..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.exe b/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.exe
deleted file mode 100644
index d90a345..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.exe and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.pdb b/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.pdb
deleted file mode 100644
index d8c2d8d..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.pdb and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.dev.json b/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.dev.json
deleted file mode 100644
index cb610d9..0000000
--- a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.dev.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "runtimeOptions": {
- "additionalProbingPaths": [
- "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\Admin\\.nuget\\packages",
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
- "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet"
- ]
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.json b/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.json
deleted file mode 100644
index bc456d7..0000000
--- a/GenerateVDPCycle/bin/Release/netcoreapp3.1/GenerateVDPCycle.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "3.1.0"
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Bcl.HashCode.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 6d749da..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index c8c59b4..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 732d79f..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index 588eec6..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index e6d652e..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index d7575d7..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5956635..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index 6d64a2e..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index c4ec0f1..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index fa59db3..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 9b8c43e..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index 7e3bdc2..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 8aaa4ea..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll
deleted file mode 100644
index 2d288be..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index a8e17b2..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/MySqlConnector.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/MySqlConnector.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 7f1ca3b..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Pomelo.JsonObject.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/System.Collections.Immutable.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/System.Collections.Immutable.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.deps.json b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.deps.json
deleted file mode 100644
index 615a637..0000000
--- a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.deps.json
+++ /dev/null
@@ -1,436 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v3.1",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "GenerateVDPCycle/1.0.0": {
- "dependencies": {
- "MySqlConnector": "0.69.10",
- "Pomelo.EntityFrameworkCore.MySql": "3.2.4"
- },
- "runtime": {
- "GenerateVDPCycle.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Microsoft.CSharp/4.5.0": {},
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.0",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.8",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.8",
- "Microsoft.Extensions.Caching.Memory": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging": "3.1.8",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {},
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.8"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42012"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.8",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "3.1.8.0",
- "fileVersion": "3.100.820.42004"
- }
- }
- },
- "MySqlConnector/0.69.10": {
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "assemblyVersion": "0.69.10.0",
- "fileVersion": "0.69.10.0"
- }
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "3.1.8",
- "MySqlConnector": "0.69.10",
- "Pomelo.JsonObject": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {
- "assemblyVersion": "3.2.4.0",
- "fileVersion": "3.2.4.0"
- }
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.0"
- }
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "assemblyVersion": "1.2.5.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {},
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.20.21406"
- }
- }
- }
- }
- },
- "libraries": {
- "GenerateVDPCycle/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
- "path": "microsoft.bcl.hashcode/1.1.0",
- "hashPath": "microsoft.bcl.hashcode.1.1.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "path": "microsoft.csharp/4.5.0",
- "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bI+yxA329qf+8efR6A35/3L2NLekcsWJOfXakA37ILUiWcX1qp/XsXmEi6SYMpMikioy0a5p0IU8gHoqSvtLaA==",
- "path": "microsoft.entityframeworkcore/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bJ6Crbz3FP2Cze1DXg+FiE5l0AFK8y6j32LP+6tMFrpdJc0XB8XBGXEX6w9baulxXC8U3OYUq1yxFVwgNdVyJw==",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cm1+PV53O/xN4P8fMkSZq9aqyXRjEZ5kmuWs7W4yE4V4GLgrqTCRmtooM5tUPM3R7VI47hAa8Aab+UuSRvpU+w==",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.8.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-n8c2Nyfyl0AKXdM++tiKZmX/jeiu1Uv+uxZAHGgKuiQJbpOCPAhjRB4tHLdo1jOvfkhJT9K6wekf9VaXjtL1tw==",
- "path": "microsoft.entityframeworkcore.relational/3.1.8",
- "hashPath": "microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iBIdKjKa2nR4LdknV2JMSRpJVM5TOca25EckPm6SZQT6HfH8RoHrn9m14GUAkvzE+uOziXRoAwr8YIC6ZOpyXg==",
- "path": "microsoft.extensions.caching.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-u04q7+tgc8l6pQ5HOcr6scgapkQQHnrhpGoCaaAZd24R36/NxGsGxuhSmhHOrQx9CsBLe2CVBN/4CkLlxtnnXw==",
- "path": "microsoft.extensions.caching.memory/3.1.8",
- "hashPath": "microsoft.extensions.caching.memory.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==",
- "path": "microsoft.extensions.configuration/3.1.8",
- "hashPath": "microsoft.extensions.configuration.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==",
- "path": "microsoft.extensions.configuration.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==",
- "path": "microsoft.extensions.configuration.binder/3.1.8",
- "hashPath": "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==",
- "path": "microsoft.extensions.dependencyinjection/3.1.8",
- "hashPath": "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==",
- "path": "microsoft.extensions.logging/3.1.8",
- "hashPath": "microsoft.extensions.logging.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==",
- "path": "microsoft.extensions.logging.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==",
- "path": "microsoft.extensions.options/3.1.8",
- "hashPath": "microsoft.extensions.options.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==",
- "path": "microsoft.extensions.primitives/3.1.8",
- "hashPath": "microsoft.extensions.primitives.3.1.8.nupkg.sha512"
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "path": "mysqlconnector/0.69.10",
- "hashPath": "mysqlconnector.0.69.10.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6UOPWyL2qIsRCnN880YXA6rACpqVV6GE+H3vR4KJytjigWKFp+aiRDwJRSorwZ9ntHu+RDBcXGjmaShj0mBmYA==",
- "path": "pomelo.entityframeworkcore.mysql/3.2.4",
- "hashPath": "pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512"
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "path": "pomelo.jsonobject/2.2.1",
- "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512"
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "path": "system.collections.immutable/1.7.1",
- "hashPath": "system.collections.immutable.1.7.1.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "path": "system.componentmodel.annotations/4.7.0",
- "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.dll
deleted file mode 100644
index 0b6f1b3..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.exe b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.exe
deleted file mode 100644
index d90a345..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.exe and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.pdb b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.pdb
deleted file mode 100644
index d8c2d8d..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.pdb and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.runtimeconfig.json b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.runtimeconfig.json
deleted file mode 100644
index bc456d7..0000000
--- a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/GenerateVDPCycle.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "netcoreapp3.1",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "3.1.0"
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.AsyncInterfaces.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100644
index a5b7ff9..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.HashCode.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.HashCode.dll
deleted file mode 100644
index 6d749da..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Bcl.HashCode.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100644
index c8c59b4..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Relational.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100644
index 732d79f..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.dll
deleted file mode 100644
index 588eec6..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100644
index e6d652e..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Memory.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100644
index d7575d7..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100644
index 5956635..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Binder.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Binder.dll
deleted file mode 100644
index 6d64a2e..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.dll
deleted file mode 100644
index c4ec0f1..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Configuration.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100644
index fa59db3..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100644
index 9b8c43e..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.Abstractions.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index 7e3bdc2..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.dll
deleted file mode 100644
index 8aaa4ea..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Options.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Options.dll
deleted file mode 100644
index 2d288be..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Primitives.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Primitives.dll
deleted file mode 100644
index a8e17b2..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/MySqlConnector.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/MySqlConnector.dll
deleted file mode 100644
index 582fc73..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/MySqlConnector.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Newtonsoft.Json.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Newtonsoft.Json.dll
deleted file mode 100644
index e2118f9..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Newtonsoft.Json.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Pomelo.EntityFrameworkCore.MySql.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Pomelo.EntityFrameworkCore.MySql.dll
deleted file mode 100644
index 7f1ca3b..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Pomelo.EntityFrameworkCore.MySql.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Pomelo.JsonObject.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Pomelo.JsonObject.dll
deleted file mode 100644
index b3db68d..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/Pomelo.JsonObject.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/System.Collections.Immutable.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/System.Collections.Immutable.dll
deleted file mode 100644
index 0302500..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/System.Collections.Immutable.dll and /dev/null differ
diff --git a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/System.Diagnostics.DiagnosticSource.dll b/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/System.Diagnostics.DiagnosticSource.dll
deleted file mode 100644
index fcdcae5..0000000
Binary files a/GenerateVDPCycle/bin/Release/netcoreapp3.1/publish/System.Diagnostics.DiagnosticSource.dll and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
deleted file mode 100644
index ad8dfe1..0000000
--- a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.AssemblyInfo.cs b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.AssemblyInfo.cs
deleted file mode 100644
index 151e014..0000000
--- a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// Этот код создан программой.
-// Исполняемая версия:4.0.30319.42000
-//
-// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
-// повторной генерации кода.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("GenerateVDPCycle")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("GenerateVDPCycle")]
-[assembly: System.Reflection.AssemblyTitleAttribute("GenerateVDPCycle")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Создано классом WriteCodeFragment MSBuild.
-
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.AssemblyInfoInputs.cache b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.AssemblyInfoInputs.cache
deleted file mode 100644
index b85852b..0000000
--- a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-59a5486d488c2e641ac886d94e8288c43d288d93
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.assets.cache b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.assets.cache
deleted file mode 100644
index 9a5010f..0000000
Binary files a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.assets.cache and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.CopyComplete b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.CoreCompileInputs.cache b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 02486cf..0000000
--- a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-20ac2109af959e27b79721e8b01c32eb46e00fe0
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.FileListAbsolute.txt b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.FileListAbsolute.txt
deleted file mode 100644
index 5876fee..0000000
--- a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,72 +0,0 @@
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.exe
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.deps.json
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.runtimeconfig.json
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.runtimeconfig.dev.json
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.pdb
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.csprojAssemblyReference.cache
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.AssemblyInfoInputs.cache
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.AssemblyInfo.cs
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.csproj.CoreCompileInputs.cache
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.dll
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.pdb
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.genruntimeconfig.cache
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\MySqlConnector.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Pomelo.EntityFrameworkCore.MySql.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Pomelo.JsonObject.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll
-E:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
-E:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.csproj.CopyComplete
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.exe
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.deps.json
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.runtimeconfig.json
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.runtimeconfig.dev.json
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\GenerateVDPCycle.pdb
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\MySqlConnector.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Pomelo.EntityFrameworkCore.MySql.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\Pomelo.JsonObject.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.csprojAssemblyReference.cache
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.AssemblyInfoInputs.cache
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.AssemblyInfo.cs
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.csproj.CoreCompileInputs.cache
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.csproj.CopyComplete
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.dll
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.pdb
-G:\Diagram-API\GenerateVDPCycle\obj\Debug\netcoreapp3.1\GenerateVDPCycle.genruntimeconfig.cache
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csprojAssemblyReference.cache b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csprojAssemblyReference.cache
deleted file mode 100644
index 78dc027..0000000
Binary files a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.csprojAssemblyReference.cache and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.dll b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.dll
deleted file mode 100644
index 3f335c7..0000000
Binary files a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.dll and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.genruntimeconfig.cache b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.genruntimeconfig.cache
deleted file mode 100644
index a1557d7..0000000
--- a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-2025017ec0df52e0447b542fc347a6ffd6e9f5d1
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.pdb b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.pdb
deleted file mode 100644
index 32cdff3..0000000
Binary files a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/GenerateVDPCycle.pdb and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/apphost.exe b/GenerateVDPCycle/obj/Debug/netcoreapp3.1/apphost.exe
deleted file mode 100644
index d90a345..0000000
Binary files a/GenerateVDPCycle/obj/Debug/netcoreapp3.1/apphost.exe and /dev/null differ
diff --git a/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.dgspec.json b/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.dgspec.json
deleted file mode 100644
index 9147dca..0000000
--- a/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,97 +0,0 @@
-{
- "format": 1,
- "restore": {
- "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj": {}
- },
- "projects": {
- "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj",
- "projectName": "GenerateVDPCycle",
- "projectPath": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj",
- "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
- "outputPath": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\obj\\",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "netcoreapp3.1"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "dependencies": {
- "MySqlConnector": {
- "target": "Package",
- "version": "[0.69.10, )"
- },
- "Pomelo.EntityFrameworkCore.MySql": {
- "target": "Package",
- "version": "[3.2.4, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Ref",
- "version": "[3.1.10, 3.1.10]"
- },
- {
- "name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[3.1.32, 3.1.32]"
- },
- {
- "name": "Microsoft.NETCore.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400\\RuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.g.props b/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.g.props
deleted file mode 100644
index 4f21df1..0000000
--- a/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.g.props
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\Admin\.nuget\packages\
- PackageReference
- 6.11.0
-
-
-
-
-
\ No newline at end of file
diff --git a/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.g.targets b/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/GenerateVDPCycle/obj/GenerateVDPCycle.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/GenerateVDPCycle/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
deleted file mode 100644
index 1b9b2f8..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")]
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.AssemblyInfo.cs b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.AssemblyInfo.cs
deleted file mode 100644
index b332bf1..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// Этот код создан программой.
-// Исполняемая версия:4.0.30319.42000
-//
-// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
-// повторной генерации кода.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("GenerateVDPCycle")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c3cca06933c750507c0800cabf3649749d0a3e44")]
-[assembly: System.Reflection.AssemblyProductAttribute("GenerateVDPCycle")]
-[assembly: System.Reflection.AssemblyTitleAttribute("GenerateVDPCycle")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Создано классом WriteCodeFragment MSBuild.
-
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.AssemblyInfoInputs.cache b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.AssemblyInfoInputs.cache
deleted file mode 100644
index c55e1ab..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-5c724667bb9d20ffa98529dbc06db4bc3d30f4e50ab6fd57b1a0c40587811d75
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.GeneratedMSBuildEditorConfig.editorconfig b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index e91e9de..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-is_global = true
-build_property.RootNamespace = GenerateVDPCycle
-build_property.ProjectDir = D:\src\CurrStatVDP\Diagram-API\GenerateVDPCycle\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.assets.cache b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.assets.cache
deleted file mode 100644
index 3fea578..0000000
Binary files a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.assets.cache and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.AssemblyReference.cache b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.AssemblyReference.cache
deleted file mode 100644
index 62256e7..0000000
Binary files a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.CopyComplete b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.CoreCompileInputs.cache b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.CoreCompileInputs.cache
deleted file mode 100644
index ab6b9ec..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-f345c5353805f93b2798803f6a6f17267c4bfc6e
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.FileListAbsolute.txt b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.FileListAbsolute.txt
deleted file mode 100644
index 6f075cf..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\GenerateVDPCycle.exe
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\GenerateVDPCycle.deps.json
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\GenerateVDPCycle.runtimeconfig.json
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\GenerateVDPCycle.runtimeconfig.dev.json
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\GenerateVDPCycle.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\GenerateVDPCycle.pdb
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Bcl.HashCode.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Configuration.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Logging.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Options.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Microsoft.Extensions.Primitives.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\MySqlConnector.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Newtonsoft.Json.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Pomelo.EntityFrameworkCore.MySql.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\Pomelo.JsonObject.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\System.Collections.Immutable.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.csprojAssemblyReference.cache
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.AssemblyInfoInputs.cache
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.AssemblyInfo.cs
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.csproj.CoreCompileInputs.cache
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.csproj.CopyComplete
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.dll
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.pdb
-G:\Diagram-API\GenerateVDPCycle\obj\Release\netcoreapp3.1\GenerateVDPCycle.genruntimeconfig.cache
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csprojAssemblyReference.cache b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csprojAssemblyReference.cache
deleted file mode 100644
index 5a2f639..0000000
Binary files a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.csprojAssemblyReference.cache and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.dll b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.dll
deleted file mode 100644
index 0b6f1b3..0000000
Binary files a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.dll and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.genruntimeconfig.cache b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.genruntimeconfig.cache
deleted file mode 100644
index a1557d7..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-2025017ec0df52e0447b542fc347a6ffd6e9f5d1
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.pdb b/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.pdb
deleted file mode 100644
index d8c2d8d..0000000
Binary files a/GenerateVDPCycle/obj/Release/netcoreapp3.1/GenerateVDPCycle.pdb and /dev/null differ
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/PublishOutputs.a6ca4ce52b.txt b/GenerateVDPCycle/obj/Release/netcoreapp3.1/PublishOutputs.a6ca4ce52b.txt
deleted file mode 100644
index 33bb48a..0000000
--- a/GenerateVDPCycle/obj/Release/netcoreapp3.1/PublishOutputs.a6ca4ce52b.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\GenerateVDPCycle.exe
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\GenerateVDPCycle.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\GenerateVDPCycle.deps.json
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\GenerateVDPCycle.runtimeconfig.json
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\GenerateVDPCycle.pdb
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Bcl.AsyncInterfaces.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Bcl.HashCode.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.EntityFrameworkCore.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.EntityFrameworkCore.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.EntityFrameworkCore.Relational.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Caching.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Caching.Memory.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Configuration.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Configuration.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Configuration.Binder.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.DependencyInjection.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Logging.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Logging.Abstractions.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Options.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Microsoft.Extensions.Primitives.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\MySqlConnector.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Newtonsoft.Json.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Pomelo.EntityFrameworkCore.MySql.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\Pomelo.JsonObject.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\System.Collections.Immutable.dll
-G:\Diagram-API\GenerateVDPCycle\bin\Release\netcoreapp3.1\publish\System.Diagnostics.DiagnosticSource.dll
diff --git a/GenerateVDPCycle/obj/Release/netcoreapp3.1/apphost.exe b/GenerateVDPCycle/obj/Release/netcoreapp3.1/apphost.exe
deleted file mode 100644
index 61a8e19..0000000
Binary files a/GenerateVDPCycle/obj/Release/netcoreapp3.1/apphost.exe and /dev/null differ
diff --git a/GenerateVDPCycle/obj/project.assets.json b/GenerateVDPCycle/obj/project.assets.json
deleted file mode 100644
index 232ee56..0000000
--- a/GenerateVDPCycle/obj/project.assets.json
+++ /dev/null
@@ -1,1043 +0,0 @@
-{
- "version": 3,
- "targets": {
- ".NETCoreApp,Version=v3.1": {
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "type": "package",
- "compile": {
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "Microsoft.Bcl.HashCode": "1.1.0",
- "Microsoft.EntityFrameworkCore.Abstractions": "3.1.8",
- "Microsoft.EntityFrameworkCore.Analyzers": "3.1.8",
- "Microsoft.Extensions.Caching.Memory": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging": "3.1.8",
- "System.Collections.Immutable": "1.7.1",
- "System.ComponentModel.Annotations": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "4.7.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "3.1.8"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "3.1.8",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "3.1.8",
- "Microsoft.Extensions.DependencyInjection": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
- "Microsoft.Extensions.Options": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
- "Microsoft.Extensions.Primitives": "3.1.8"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "MySqlConnector/0.69.10": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/MySqlConnector.dll": {
- "related": ".xml"
- }
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "[3.1.8, 5.0.0)",
- "MySqlConnector": "[0.69.9, 1.0.0)",
- "Pomelo.JsonObject": "2.2.1"
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {}
- }
- },
- "Pomelo.JsonObject/2.2.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Pomelo.JsonObject.dll": {}
- }
- },
- "System.Collections.Immutable/1.7.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- }
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "type": "package",
- "compile": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- }
- }
- }
- },
- "libraries": {
- "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
- "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "microsoft.bcl.asyncinterfaces.nuspec",
- "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
- "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Bcl.HashCode/1.1.0": {
- "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
- "type": "package",
- "path": "microsoft.bcl.hashcode/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Bcl.HashCode.dll",
- "lib/net461/Microsoft.Bcl.HashCode.xml",
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
- "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
- "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
- "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
- "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
- "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
- "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
- "microsoft.bcl.hashcode.nuspec",
- "ref/net461/Microsoft.Bcl.HashCode.dll",
- "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
- "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
- "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.CSharp/4.5.0": {
- "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "type": "package",
- "path": "microsoft.csharp/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/uap10.0.16299/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.5.0.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard2.0/Microsoft.CSharp.dll",
- "ref/netstandard2.0/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/uap10.0.16299/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.EntityFrameworkCore/3.1.8": {
- "sha512": "bI+yxA329qf+8efR6A35/3L2NLekcsWJOfXakA37ILUiWcX1qp/XsXmEi6SYMpMikioy0a5p0IU8gHoqSvtLaA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.3.1.8.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/3.1.8": {
- "sha512": "bJ6Crbz3FP2Cze1DXg+FiE5l0AFK8y6j32LP+6tMFrpdJc0XB8XBGXEX6w9baulxXC8U3OYUq1yxFVwgNdVyJw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.3.1.8.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/3.1.8": {
- "sha512": "Cm1+PV53O/xN4P8fMkSZq9aqyXRjEZ5kmuWs7W4yE4V4GLgrqTCRmtooM5tUPM3R7VI47hAa8Aab+UuSRvpU+w==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.3.1.8.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/3.1.8": {
- "sha512": "n8c2Nyfyl0AKXdM++tiKZmX/jeiu1Uv+uxZAHGgKuiQJbpOCPAhjRB4tHLdo1jOvfkhJT9K6wekf9VaXjtL1tw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Abstractions/3.1.8": {
- "sha512": "iBIdKjKa2nR4LdknV2JMSRpJVM5TOca25EckPm6SZQT6HfH8RoHrn9m14GUAkvzE+uOziXRoAwr8YIC6ZOpyXg==",
- "type": "package",
- "path": "microsoft.extensions.caching.abstractions/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/3.1.8": {
- "sha512": "u04q7+tgc8l6pQ5HOcr6scgapkQQHnrhpGoCaaAZd24R36/NxGsGxuhSmhHOrQx9CsBLe2CVBN/4CkLlxtnnXw==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.3.1.8.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration/3.1.8": {
- "sha512": "xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==",
- "type": "package",
- "path": "microsoft.extensions.configuration/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.3.1.8.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
- "sha512": "0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Binder/3.1.8": {
- "sha512": "l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==",
- "type": "package",
- "path": "microsoft.extensions.configuration.binder/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
- "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512",
- "microsoft.extensions.configuration.binder.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/3.1.8": {
- "sha512": "tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
- "sha512": "YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging/3.1.8": {
- "sha512": "Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==",
- "type": "package",
- "path": "microsoft.extensions.logging/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.3.1.8.nupkg.sha512",
- "microsoft.extensions.logging.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
- "sha512": "LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Options/3.1.8": {
- "sha512": "mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==",
- "type": "package",
- "path": "microsoft.extensions.options/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.3.1.8.nupkg.sha512",
- "microsoft.extensions.options.nuspec"
- ]
- },
- "Microsoft.Extensions.Primitives/3.1.8": {
- "sha512": "XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==",
- "type": "package",
- "path": "microsoft.extensions.primitives/3.1.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
- "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.3.1.8.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec"
- ]
- },
- "MySqlConnector/0.69.10": {
- "sha512": "flikhWc6q1gZE4l1PujXLnoZxthf/DqKo43y8x5Cw7/iaivjVYAHHhlr3/t6i8GImi/dbxP4zntp5J/4EVFcbw==",
- "type": "package",
- "path": "mysqlconnector/0.69.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/MySqlConnector.dll",
- "lib/net45/MySqlConnector.xml",
- "lib/net461/MySqlConnector.dll",
- "lib/net461/MySqlConnector.xml",
- "lib/net471/MySqlConnector.dll",
- "lib/net471/MySqlConnector.xml",
- "lib/netcoreapp2.1/MySqlConnector.dll",
- "lib/netcoreapp2.1/MySqlConnector.xml",
- "lib/netcoreapp3.0/MySqlConnector.dll",
- "lib/netcoreapp3.0/MySqlConnector.xml",
- "lib/netstandard1.3/MySqlConnector.dll",
- "lib/netstandard1.3/MySqlConnector.xml",
- "lib/netstandard2.0/MySqlConnector.dll",
- "lib/netstandard2.0/MySqlConnector.xml",
- "lib/netstandard2.1/MySqlConnector.dll",
- "lib/netstandard2.1/MySqlConnector.xml",
- "logo.png",
- "mysqlconnector.0.69.10.nupkg.sha512",
- "mysqlconnector.nuspec"
- ]
- },
- "Newtonsoft.Json/11.0.2": {
- "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "type": "package",
- "path": "newtonsoft.json/11.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
- "newtonsoft.json.11.0.2.nupkg.sha512",
- "newtonsoft.json.nuspec"
- ]
- },
- "Pomelo.EntityFrameworkCore.MySql/3.2.4": {
- "sha512": "6UOPWyL2qIsRCnN880YXA6rACpqVV6GE+H3vR4KJytjigWKFp+aiRDwJRSorwZ9ntHu+RDBcXGjmaShj0mBmYA==",
- "type": "package",
- "path": "pomelo.entityframeworkcore.mysql/3.2.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll",
- "pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512",
- "pomelo.entityframeworkcore.mysql.nuspec"
- ]
- },
- "Pomelo.JsonObject/2.2.1": {
- "sha512": "VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==",
- "type": "package",
- "path": "pomelo.jsonobject/2.2.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Pomelo.JsonObject.dll",
- "pomelo.jsonobject.2.2.1.nupkg.sha512",
- "pomelo.jsonobject.nuspec"
- ]
- },
- "System.Collections.Immutable/1.7.1": {
- "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
- "type": "package",
- "path": "system.collections.immutable/1.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/netstandard1.0/System.Collections.Immutable.dll",
- "lib/netstandard1.0/System.Collections.Immutable.xml",
- "lib/netstandard1.3/System.Collections.Immutable.dll",
- "lib/netstandard1.3/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
- "system.collections.immutable.1.7.1.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ComponentModel.Annotations/4.7.0": {
- "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
- "type": "package",
- "path": "system.componentmodel.annotations/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net461/System.ComponentModel.Annotations.dll",
- "lib/netcore50/System.ComponentModel.Annotations.dll",
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
- "lib/portable-net45+win8/_._",
- "lib/win8/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net461/System.ComponentModel.Annotations.dll",
- "ref/net461/System.ComponentModel.Annotations.xml",
- "ref/netcore50/System.ComponentModel.Annotations.dll",
- "ref/netcore50/System.ComponentModel.Annotations.xml",
- "ref/netcore50/de/System.ComponentModel.Annotations.xml",
- "ref/netcore50/es/System.ComponentModel.Annotations.xml",
- "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
- "ref/netcore50/it/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
- "ref/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.annotations.4.7.0.nupkg.sha512",
- "system.componentmodel.annotations.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.DiagnosticSource/4.7.1": {
- "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/4.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/System.Diagnostics.DiagnosticSource.dll",
- "lib/net45/System.Diagnostics.DiagnosticSource.xml",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- }
- },
- "projectFileDependencyGroups": {
- ".NETCoreApp,Version=v3.1": [
- "MySqlConnector >= 0.69.10",
- "Pomelo.EntityFrameworkCore.MySql >= 3.2.4"
- ]
- },
- "packageFolders": {
- "C:\\Users\\Admin\\.nuget\\packages\\": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj",
- "projectName": "GenerateVDPCycle",
- "projectPath": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj",
- "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
- "outputPath": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\obj\\",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "netcoreapp3.1"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "netcoreapp3.1": {
- "targetAlias": "netcoreapp3.1",
- "dependencies": {
- "MySqlConnector": {
- "target": "Package",
- "version": "[0.69.10, )"
- },
- "Pomelo.EntityFrameworkCore.MySql": {
- "target": "Package",
- "version": "[3.2.4, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Ref",
- "version": "[3.1.10, 3.1.10]"
- },
- {
- "name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[3.1.32, 3.1.32]"
- },
- {
- "name": "Microsoft.NETCore.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Ref",
- "version": "[3.1.0, 3.1.0]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400\\RuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/GenerateVDPCycle/obj/project.nuget.cache b/GenerateVDPCycle/obj/project.nuget.cache
deleted file mode 100644
index a6d7704..0000000
--- a/GenerateVDPCycle/obj/project.nuget.cache
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "aHNuMjsIVbg=",
- "success": true,
- "projectFilePath": "D:\\src\\CurrStatVDP\\Diagram-API\\GenerateVDPCycle\\GenerateVDPCycle.csproj",
- "expectedPackageFiles": [
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.8\\microsoft.entityframeworkcore.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.8\\microsoft.entityframeworkcore.abstractions.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.8\\microsoft.entityframeworkcore.analyzers.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.8\\microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.8\\microsoft.extensions.caching.memory.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.8\\microsoft.extensions.configuration.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.8\\microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.8\\microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.8\\microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.8\\microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.logging\\3.1.8\\microsoft.extensions.logging.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.8\\microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.options\\3.1.8\\microsoft.extensions.options.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.8\\microsoft.extensions.primitives.3.1.8.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\mysqlconnector\\0.69.10\\mysqlconnector.0.69.10.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.4\\pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\3.1.0\\microsoft.windowsdesktop.app.ref.3.1.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.app.ref\\3.1.0\\microsoft.netcore.app.ref.3.1.0.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\3.1.10\\microsoft.aspnetcore.app.ref.3.1.10.nupkg.sha512",
- "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\3.1.32\\microsoft.netcore.app.host.win-x64.3.1.32.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file