diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b512c09
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+node_modules
\ No newline at end of file
diff --git a/ConsoleApp/ConsoleApp.csproj b/ConsoleApp/ConsoleApp.csproj
new file mode 100644
index 0000000..de2f0c5
--- /dev/null
+++ b/ConsoleApp/ConsoleApp.csproj
@@ -0,0 +1,12 @@
+
+
+
+ Exe
+ netcoreapp3.0
+
+
+
+
+
+
+
diff --git a/ConsoleApp/Order.cs b/ConsoleApp/Order.cs
new file mode 100644
index 0000000..f1bc6fe
--- /dev/null
+++ b/ConsoleApp/Order.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace ConsoleApp
+{
+ public class Order
+ {
+ public int OrderID { get; set; }
+ public int ShipperID { get; set; }
+ public int DriverID { get; set; }
+ public DateTime CompletionDte { get; set; }
+ public int Status { get; set; }
+ public string Code { get; set; }
+ public int MSA { get; set; }
+ public double Duration { get; set; }
+ public int OfferType { get; set; }
+ }
+}
diff --git a/ConsoleApp/Program.cs b/ConsoleApp/Program.cs
new file mode 100644
index 0000000..9893815
--- /dev/null
+++ b/ConsoleApp/Program.cs
@@ -0,0 +1,141 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using Newtonsoft.Json;
+using System.Net.Http;
+using System.Threading.Tasks;
+using System.Globalization;
+
+namespace ConsoleApp
+{
+ class Program
+ {
+ public static HttpClientHandler clientHandler;
+ public static HttpClient client;
+ private static int resultLimit = 3;
+ static async Task Main()
+ {
+ clientHandler = new HttpClientHandler();
+ clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
+
+ // Pass the handler to httpclient(from you are calling api)
+ client = new HttpClient(clientHandler);
+ // Call asynchronous network methods in a try/catch block to handle exceptions.
+ string input = "";
+ string strDate = "";
+ DateTime userDate;
+ bool parsed = false;
+ while (true)
+ {
+ try
+ {
+ Console.WriteLine("___________________________________________");
+ Console.WriteLine("Find Orders");
+ Console.WriteLine("Select all orders by typing 'all'");
+ Console.WriteLine("Find a single order by typing id number (ex. 37)");
+ Console.WriteLine("Type 'exit' to exit program");
+ Console.WriteLine("___________________________________________");
+ input = Console.ReadLine();
+ parsed = Int32.TryParse(input, out int id);
+ if (parsed)
+ {
+ Console.WriteLine("Enter the Complete Date for order: (ex. 2018-02-15T05:10:00)");
+ strDate = Console.ReadLine();
+ userDate = DateTime.Parse(strDate);
+ Console.WriteLine($"getting order by id: {id}");
+ HttpResponseMessage response = await client.GetAsync($"http://localhost:5000/Order/{id}");
+ response.EnsureSuccessStatusCode();
+ string responseBody = await response.Content.ReadAsStringAsync();
+ if (responseBody.Length == 0)
+ {
+ Console.WriteLine($"Couldn't find order for id: {id}");
+ }
+ else
+ {
+ Order currentOrder = JsonConvert.DeserializeObject(responseBody);
+ if (DateTime.Compare(currentOrder.CompletionDte, userDate) == 0) {
+ Console.WriteLine("found your order!");
+ Console.WriteLine(responseBody);
+ } else {
+ Console.WriteLine($"Order {id} exists but the completion date wasn't correct. Try again");
+ }
+
+ }
+ }
+ else
+ {
+ if (input.ToLower() == "all")
+ {
+ Console.WriteLine("fetching all orders now...");
+ HttpResponseMessage response = await client.GetAsync("http://localhost:5000/Order");
+ response.EnsureSuccessStatusCode();
+ string responseBody = await response.Content.ReadAsStringAsync();
+ List orders = JsonConvert.DeserializeObject>(responseBody);
+ int numOfPages = orders.Count / resultLimit;
+ int currentPage = 1;
+ int prevPage = 1;
+ Order[] currentOrders = new Order[resultLimit];
+ Console.WriteLine(orders.Count + " orders found!");
+ while (true)
+ {
+ currentOrders = orders.GetRange(currentPage - 1, resultLimit).ToArray();
+ Console.WriteLine("===============================================");
+ Console.WriteLine($"Currently on page {currentPage}");
+ Console.WriteLine($"There are {numOfPages} pages of results");
+ string strOrder = "";
+ foreach (Order order in currentOrders)
+ {
+ strOrder = JsonConvert.SerializeObject(order);
+ Console.WriteLine(strOrder);
+ }
+ Console.WriteLine("===============================================");
+ Console.WriteLine($"To navigate to a new page, type a number between 1 - {numOfPages}");
+ Console.WriteLine("Type 'back' to return to search");
+ Console.WriteLine("Type 'exit' to exit program");
+ prevPage = currentPage;
+ string userInput = Console.ReadLine();
+ bool isNum = Int32.TryParse(userInput, out currentPage);
+ if (isNum && currentPage >= 1 && currentPage <= numOfPages)
+ {
+ continue;
+ } else
+ {
+ if (userInput.ToLower() == "back")
+ {
+ Console.WriteLine("returning to search...");
+ break;
+ } else if (userInput.ToLower() == "exit") {
+ Console.WriteLine("exiting program...");
+ System.Environment.Exit(0);
+ }
+ else
+ {
+ currentPage = prevPage;
+ Console.WriteLine("Page number incorrect, try again!");
+ }
+ }
+ }
+
+ }
+ else if (input.ToLower() == "exit")
+ {
+ Console.WriteLine("exiting program");
+ break;
+ }
+ else
+ {
+ Console.WriteLine("Wrong input given. Try again...");
+ }
+ }
+ }
+ catch (HttpRequestException e)
+ {
+ Console.WriteLine("Couldn't find your oder. Try again!");
+ }
+ catch (FormatException) {
+ Console.WriteLine("'{0}' is not in an acceptable format. Try again!", strDate);
+ }
+ }
+ }
+ }
+}
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.deps.json b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.deps.json
new file mode 100644
index 0000000..09d8865
--- /dev/null
+++ b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.deps.json
@@ -0,0 +1,41 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.0": {
+ "ConsoleApp/1.0.0": {
+ "dependencies": {
+ "Newtonsoft.Json": "12.0.3"
+ },
+ "runtime": {
+ "ConsoleApp.dll": {}
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ConsoleApp/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.dll b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.dll
new file mode 100644
index 0000000..63912e8
Binary files /dev/null and b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.dll differ
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.exe b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.exe
new file mode 100644
index 0000000..1921ea1
Binary files /dev/null and b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.exe differ
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.pdb b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.pdb
new file mode 100644
index 0000000..2dd5841
Binary files /dev/null and b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.pdb differ
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.runtimeconfig.dev.json b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.runtimeconfig.dev.json
new file mode 100644
index 0000000..9512f18
--- /dev/null
+++ b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.runtimeconfig.dev.json
@@ -0,0 +1,10 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\MSI Infinite\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\MSI Infinite\\.nuget\\packages",
+ "C:\\Microsoft\\Xamarin\\NuGet",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.runtimeconfig.json b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.runtimeconfig.json
new file mode 100644
index 0000000..33ec9d0
--- /dev/null
+++ b/ConsoleApp/bin/Debug/netcoreapp3.0/ConsoleApp.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "3.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll b/ConsoleApp/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll
new file mode 100644
index 0000000..b501fb6
Binary files /dev/null and b/ConsoleApp/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll differ
diff --git a/ConsoleApp/bin/Prod/ConsoleApp.deps.json b/ConsoleApp/bin/Prod/ConsoleApp.deps.json
new file mode 100644
index 0000000..09d8865
--- /dev/null
+++ b/ConsoleApp/bin/Prod/ConsoleApp.deps.json
@@ -0,0 +1,41 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.0": {
+ "ConsoleApp/1.0.0": {
+ "dependencies": {
+ "Newtonsoft.Json": "12.0.3"
+ },
+ "runtime": {
+ "ConsoleApp.dll": {}
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ConsoleApp/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/bin/Prod/ConsoleApp.dll b/ConsoleApp/bin/Prod/ConsoleApp.dll
new file mode 100644
index 0000000..63912e8
Binary files /dev/null and b/ConsoleApp/bin/Prod/ConsoleApp.dll differ
diff --git a/ConsoleApp/bin/Prod/ConsoleApp.exe b/ConsoleApp/bin/Prod/ConsoleApp.exe
new file mode 100644
index 0000000..1921ea1
Binary files /dev/null and b/ConsoleApp/bin/Prod/ConsoleApp.exe differ
diff --git a/ConsoleApp/bin/Prod/ConsoleApp.pdb b/ConsoleApp/bin/Prod/ConsoleApp.pdb
new file mode 100644
index 0000000..2dd5841
Binary files /dev/null and b/ConsoleApp/bin/Prod/ConsoleApp.pdb differ
diff --git a/ConsoleApp/bin/Prod/ConsoleApp.runtimeconfig.dev.json b/ConsoleApp/bin/Prod/ConsoleApp.runtimeconfig.dev.json
new file mode 100644
index 0000000..9512f18
--- /dev/null
+++ b/ConsoleApp/bin/Prod/ConsoleApp.runtimeconfig.dev.json
@@ -0,0 +1,10 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\MSI Infinite\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\MSI Infinite\\.nuget\\packages",
+ "C:\\Microsoft\\Xamarin\\NuGet",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/bin/Prod/ConsoleApp.runtimeconfig.json b/ConsoleApp/bin/Prod/ConsoleApp.runtimeconfig.json
new file mode 100644
index 0000000..33ec9d0
--- /dev/null
+++ b/ConsoleApp/bin/Prod/ConsoleApp.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "3.0.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/bin/Prod/Newtonsoft.Json.dll b/ConsoleApp/bin/Prod/Newtonsoft.Json.dll
new file mode 100644
index 0000000..b501fb6
Binary files /dev/null and b/ConsoleApp/bin/Prod/Newtonsoft.Json.dll differ
diff --git a/ConsoleApp/obj/ConsoleApp.csproj.nuget.cache b/ConsoleApp/obj/ConsoleApp.csproj.nuget.cache
new file mode 100644
index 0000000..a264e6c
--- /dev/null
+++ b/ConsoleApp/obj/ConsoleApp.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "izMNcGb4+UMKyfEIU+Q9hvjuoW91yeSKTf1o9BxT9VI8xzF/1bOEjHfxIuCW4G90EukgiWbz6Q3NLRG+SRGMPw==",
+ "success": true
+}
\ No newline at end of file
diff --git a/ConsoleApp/obj/ConsoleApp.csproj.nuget.dgspec.json b/ConsoleApp/obj/ConsoleApp.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..b222ff9
--- /dev/null
+++ b/ConsoleApp/obj/ConsoleApp.csproj.nuget.dgspec.json
@@ -0,0 +1,71 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\ConsoleApp.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\ConsoleApp.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\ConsoleApp.csproj",
+ "projectName": "ConsoleApp",
+ "projectPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\ConsoleApp.csproj",
+ "packagesPath": "C:\\Users\\MSI Infinite\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\MSI Infinite\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "dependencies": {
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[12.0.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/ConsoleApp/obj/ConsoleApp.csproj.nuget.g.props b/ConsoleApp/obj/ConsoleApp.csproj.nuget.g.props
new file mode 100644
index 0000000..9ac2c1d
--- /dev/null
+++ b/ConsoleApp/obj/ConsoleApp.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\MSI Infinite\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 5.3.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/ConsoleApp/obj/ConsoleApp.csproj.nuget.g.targets b/ConsoleApp/obj/ConsoleApp.csproj.nuget.g.targets
new file mode 100644
index 0000000..53cfaa1
--- /dev/null
+++ b/ConsoleApp/obj/ConsoleApp.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.AssemblyInfo.cs b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.AssemblyInfo.cs
new file mode 100644
index 0000000..fe0508f
--- /dev/null
+++ b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.AssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// Generated by the MSBuild WriteCodeFragment class.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("ConsoleApp")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("ConsoleApp")]
+[assembly: System.Reflection.AssemblyTitleAttribute("ConsoleApp")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.AssemblyInfoInputs.cache b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..2f7cc97
--- /dev/null
+++ b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+ba35d61be149e908edccb064c073a024a9179e32
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.assets.cache b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.assets.cache
new file mode 100644
index 0000000..5499759
Binary files /dev/null and b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.assets.cache differ
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csproj.CopyComplete b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csproj.FileListAbsolute.txt b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..4e1822e
--- /dev/null
+++ b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csproj.FileListAbsolute.txt
@@ -0,0 +1,26 @@
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\obj\Debug\netcoreapp3.0\ConsoleApp.csprojAssemblyReference.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\obj\Debug\netcoreapp3.0\ConsoleApp.AssemblyInfoInputs.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\obj\Debug\netcoreapp3.0\ConsoleApp.AssemblyInfo.cs
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\obj\Debug\netcoreapp3.0\ConsoleApp.csproj.CopyComplete
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\obj\Debug\netcoreapp3.0\ConsoleApp.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\obj\Debug\netcoreapp3.0\ConsoleApp.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp.exe
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp.deps.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp.runtimeconfig.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp.runtimeconfig.dev.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\ConsoleApp.exe
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\ConsoleApp.deps.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\ConsoleApp.runtimeconfig.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\ConsoleApp.runtimeconfig.dev.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\ConsoleApp.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\ConsoleApp.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Prod\Newtonsoft.Json.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\ConsoleApp.exe
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\ConsoleApp.deps.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\ConsoleApp.runtimeconfig.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\ConsoleApp.runtimeconfig.dev.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\ConsoleApp.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\ConsoleApp.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\ConsoleApp\bin\Debug\netcoreapp3.0\Newtonsoft.Json.dll
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csprojAssemblyReference.cache b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csprojAssemblyReference.cache
new file mode 100644
index 0000000..17a5d87
Binary files /dev/null and b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.csprojAssemblyReference.cache differ
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.dll b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.dll
new file mode 100644
index 0000000..63912e8
Binary files /dev/null and b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.dll differ
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.exe b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.exe
new file mode 100644
index 0000000..1921ea1
Binary files /dev/null and b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.exe differ
diff --git a/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.pdb b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.pdb
new file mode 100644
index 0000000..2dd5841
Binary files /dev/null and b/ConsoleApp/obj/Debug/netcoreapp3.0/ConsoleApp.pdb differ
diff --git a/ConsoleApp/obj/project.assets.json b/ConsoleApp/obj/project.assets.json
new file mode 100644
index 0000000..1348d0e
--- /dev/null
+++ b/ConsoleApp/obj/project.assets.json
@@ -0,0 +1,122 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v3.0": {
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v3.0": [
+ "Newtonsoft.Json >= 12.0.3"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\MSI Infinite\\.nuget\\packages\\": {},
+ "C:\\Microsoft\\Xamarin\\NuGet\\": {},
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\ConsoleApp.csproj",
+ "projectName": "ConsoleApp",
+ "projectPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\ConsoleApp.csproj",
+ "packagesPath": "C:\\Users\\MSI Infinite\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\ConsoleApp\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\MSI Infinite\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "dependencies": {
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[12.0.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index 9fa8fed..f7e2c6e 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,15 @@
# simpleOrderSearch
simpleOrderSearch
-
-I want to assess your ability to create an application and web service. It truly is the bare minimum of knowledge necessary to be successful in this position. I don't want you to spend a lot of time on this. You should be able to do this in an hour or so if the job is right for you.
-
-Order Search
-
-This programming task consists of building a simple console application to search for orders. Fork this repository and create your application. It should take this input from the user:
-
-(Order Number || (MSA && Status)) && CompletionDte
-
-The console application will call a service that you create using C#. I have provided some sample data for the application in the JSON file in the data folder.
-
-
-
-The file contains an array whose elements represent orders. The data should be defined as a model in your service.
-
-The application calling the service can be a console app. You have total freedom to do what you want but make sure it can do these three things:
-
-• Validate that the user has provided the right criteria to make a search
-
-• Provide an offset and page value for pagination.
-
-• Write the outputs of the service call to a console window.
-
-Create a pull request once you have it working. I will clone your repository, verify that it works, and evaluate it. Please ensure you include any instructions for running that may be required.
+To start the web api, open up a new terminal and type
+```bash
+npm run api
+```
+Open up another terminal. Now that the webapi is ready you can start the console app by typing
+```bash
+npm run console
+```
+
+The instructions for the program will appear when you start the console app.
+You can look at all orders using pagination, which shows 3 results at a time. Type the page number to jump around.
+You can also search a single order by ID by typing in a number. Then you type in the Completion Date to make sure its the correct order.
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..e547a38
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,5 @@
+{
+ "name": "simpleordersearch",
+ "version": "1.0.0",
+ "lockfileVersion": 1
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..9dea6d4
--- /dev/null
+++ b/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "simpleordersearch",
+ "version": "1.0.0",
+ "description": "console program that uses c# webapi to search for orders",
+ "main": "index.js",
+ "keywords": [
+ "console",
+ "c#",
+ "c-sharp",
+ "api",
+ "app",
+ "webapi",
+ "dotnet"
+ ],
+ "scripts": {
+ "console": "dotnet ./ConsoleApp/bin/Prod/ConsoleApp.dll",
+ "api": "dotnet ./simpleApi/bin/Prod/simpleApi.dll"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/somberSomni/simpleOrderSearch.git"
+ },
+ "author": "somber somni",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/somberSomni/simpleOrderSearch/issues"
+ },
+ "homepage": "https://github.com/somberSomni/simpleOrderSearch#readme",
+ "dependencies": {}
+}
diff --git a/simpleApi/Controllers/OrderController.cs b/simpleApi/Controllers/OrderController.cs
new file mode 100644
index 0000000..d154052
--- /dev/null
+++ b/simpleApi/Controllers/OrderController.cs
@@ -0,0 +1,51 @@
+using System;
+using System.IO;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Logging;
+using Newtonsoft.Json;
+namespace simpleApi.Controllers
+{
+ [ApiController]
+ [Route("[controller]")]
+ public class OrderController : ControllerBase
+ {
+ private readonly ILogger _logger;
+ private List orders;
+ public OrderController(ILogger logger)
+ {
+ _logger = logger;
+ orders = new List();
+ }
+
+ private async Task ReadJson() {
+ string filename = "data/orderinfo.json";
+ string body = "";
+ Console.WriteLine("reading file");
+ using (var sr = new StreamReader(filename)) {
+ body = await sr.ReadToEndAsync();
+ orders = JsonConvert.DeserializeObject>(body);
+ Console.WriteLine(orders.Count);
+ }
+ }
+
+ [HttpGet]
+ public async Task> Get()
+ {
+ if (orders.Count == 0) {
+ await ReadJson();
+ }
+ return orders;
+ }
+
+ [HttpGet("{id}")]
+ public async Task GetOrderById(int id) {
+ if (orders.Count == 0) {
+ await ReadJson();
+ }
+ return orders.SingleOrDefault(order => order.OrderID == id);
+ }
+ }
+}
diff --git a/simpleApi/Order.cs b/simpleApi/Order.cs
new file mode 100644
index 0000000..87c45df
--- /dev/null
+++ b/simpleApi/Order.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace simpleApi
+{
+ public class Order
+ {
+ public int OrderID { get; set; }
+ public int ShipperID { get; set; }
+ public int DriverID { get; set; }
+ public DateTime CompletionDte { get; set; }
+ public int Status { get; set; }
+ public string Code { get; set; }
+ public int MSA { get; set; }
+ public double Duration { get; set; }
+ public int OfferType { get; set; }
+ }
+}
diff --git a/simpleApi/Program.cs b/simpleApi/Program.cs
new file mode 100644
index 0000000..4996944
--- /dev/null
+++ b/simpleApi/Program.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Logging;
+
+namespace simpleApi
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ CreateHostBuilder(args).Build().Run();
+ }
+
+ public static IHostBuilder CreateHostBuilder(string[] args) =>
+ Host.CreateDefaultBuilder(args)
+ .ConfigureWebHostDefaults(webBuilder =>
+ {
+ webBuilder.UseStartup();
+ });
+ }
+}
diff --git a/simpleApi/Properties/launchSettings.json b/simpleApi/Properties/launchSettings.json
new file mode 100644
index 0000000..6231273
--- /dev/null
+++ b/simpleApi/Properties/launchSettings.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:1518",
+ "sslPort": 44351
+ }
+ },
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "simpleorders",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "simpleApi": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "launchUrl": "simpleorders",
+ "applicationUrl": "https://localhost:5001;http://localhost:5000",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/simpleApi/Startup.cs b/simpleApi/Startup.cs
new file mode 100644
index 0000000..d36b0c6
--- /dev/null
+++ b/simpleApi/Startup.cs
@@ -0,0 +1,51 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.HttpsPolicy;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Logging;
+
+namespace simpleApi
+{
+ public class Startup
+ {
+ public Startup(IConfiguration configuration)
+ {
+ Configuration = configuration;
+ }
+
+ public IConfiguration Configuration { get; }
+
+ // This method gets called by the runtime. Use this method to add services to the container.
+ public void ConfigureServices(IServiceCollection services)
+ {
+ services.AddControllers();
+ }
+
+ // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
+ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
+ {
+ if (env.IsDevelopment())
+ {
+ app.UseDeveloperExceptionPage();
+ }
+
+ app.UseHttpsRedirection();
+
+ app.UseRouting();
+
+ app.UseAuthorization();
+
+ app.UseEndpoints(endpoints =>
+ {
+ endpoints.MapControllers();
+ });
+ }
+ }
+}
diff --git a/simpleApi/appsettings.Development.json b/simpleApi/appsettings.Development.json
new file mode 100644
index 0000000..e203e94
--- /dev/null
+++ b/simpleApi/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Debug",
+ "System": "Information",
+ "Microsoft": "Information"
+ }
+ }
+}
diff --git a/simpleApi/appsettings.json b/simpleApi/appsettings.json
new file mode 100644
index 0000000..d9d9a9b
--- /dev/null
+++ b/simpleApi/appsettings.json
@@ -0,0 +1,10 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Data.SqlClient.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..f4d8520
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Data.SqlClient.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.Abstractions.dll
new file mode 100644
index 0000000..1cb6e5a
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.InMemory.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.InMemory.dll
new file mode 100644
index 0000000..8be5e4c
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.InMemory.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.Relational.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.Relational.dll
new file mode 100644
index 0000000..0ca62e3
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.Relational.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.SqlServer.dll
new file mode 100644
index 0000000..6606139
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.dll
new file mode 100644
index 0000000..32639a9
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.EntityFrameworkCore.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll
new file mode 100644
index 0000000..6ff07b2
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll
new file mode 100644
index 0000000..9e8d5a1
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..e594aca
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 0000000..b6bfe99
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..1259b5e
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Configuration.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 0000000..c76e7e9
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 0000000..8a79bae
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Logging.Abstractions.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 0000000..3570e0c
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Logging.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Logging.dll
new file mode 100644
index 0000000..81c010c
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Logging.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Options.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Options.dll
new file mode 100644
index 0000000..163fd26
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Options.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Primitives.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..9e4817f
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Extensions.Primitives.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Identity.Client.dll b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Identity.Client.dll
new file mode 100644
index 0000000..e540038
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Microsoft.Identity.Client.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll b/simpleApi/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll
new file mode 100644
index 0000000..b501fb6
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/Newtonsoft.Json.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/Properties/launchSettings.json b/simpleApi/bin/Debug/netcoreapp3.0/Properties/launchSettings.json
new file mode 100644
index 0000000..6231273
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/Properties/launchSettings.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:1518",
+ "sslPort": 44351
+ }
+ },
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "simpleorders",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "simpleApi": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "launchUrl": "simpleorders",
+ "applicationUrl": "https://localhost:5001;http://localhost:5000",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/System.Configuration.ConfigurationManager.dll b/simpleApi/bin/Debug/netcoreapp3.0/System.Configuration.ConfigurationManager.dll
new file mode 100644
index 0000000..7d0b114
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/System.Configuration.ConfigurationManager.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/System.Runtime.Caching.dll b/simpleApi/bin/Debug/netcoreapp3.0/System.Runtime.Caching.dll
new file mode 100644
index 0000000..e57fb59
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/System.Runtime.Caching.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/System.Security.Cryptography.ProtectedData.dll b/simpleApi/bin/Debug/netcoreapp3.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 0000000..3feb9f9
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/appsettings.Development.json b/simpleApi/bin/Debug/netcoreapp3.0/appsettings.Development.json
new file mode 100644
index 0000000..e203e94
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Debug",
+ "System": "Information",
+ "Microsoft": "Information"
+ }
+ }
+}
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/appsettings.json b/simpleApi/bin/Debug/netcoreapp3.0/appsettings.json
new file mode 100644
index 0000000..d9d9a9b
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/appsettings.json
@@ -0,0 +1,10 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/data/orderInfo.json b/simpleApi/bin/Debug/netcoreapp3.0/data/orderInfo.json
new file mode 100644
index 0000000..e9a6a59
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/data/orderInfo.json
@@ -0,0 +1,136 @@
+[
+ {
+ "OrderID": 36,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-12T05:10:00",
+ "Status": 10,
+ "Code": "R4C877FF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+
+ },
+ {
+ "OrderID": 37,
+ "ShipperID": 4,
+ "DriverID": 243,
+ "CompletionDte": "2018-02-15T05:10:00",
+ "Status": 10,
+ "Code": "R47077FF",
+ "MSA": 1,
+ "Duration": "43.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 38,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R6453FF",
+ "MSA": 2,
+ "Duration": "120.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 39,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C877DS",
+ "MSA": 4,
+ "Duration": "15.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 40,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C9999F",
+ "MSA": 1,
+ "Duration": "111.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 41,
+ "ShipperID": 67,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C87S32",
+ "MSA": 1,
+ "Duration": "54.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 42,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C87123",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 43,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R42G77FF",
+ "MSA": 1,
+ "Duration": "40.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 44,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4002WFF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 2
+ },
+ {
+ "OrderID": 45,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 20,
+ "Code": "R400KHFF",
+ "MSA": 3,
+ "Duration": "23.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 46,
+ "ShipperID": 24,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 61,
+ "Code": "R4C437FF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 47,
+ "ShipperID": 121,
+ "DriverID": 35,
+ "CompletionDte": "2018-03-1T05:10:00",
+ "Status": 10,
+ "Code": "R422AQF",
+ "MSA": 1,
+ "Duration": "66.00",
+ "OfferType": 2
+ }
+
+]
\ No newline at end of file
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll
new file mode 100644
index 0000000..6af5204
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..de9f82c
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-arm64/native/sni.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-arm64/native/sni.dll
new file mode 100644
index 0000000..7b8f9d8
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-arm64/native/sni.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-x64/native/sni.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-x64/native/sni.dll
new file mode 100644
index 0000000..c1a05a5
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-x64/native/sni.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-x86/native/sni.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-x86/native/sni.dll
new file mode 100644
index 0000000..5fc21ac
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win-x86/native/sni.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll
new file mode 100644
index 0000000..4178067
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..739de17
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 0000000..73536ac
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.deps.json b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.deps.json
new file mode 100644
index 0000000..01fc2e8
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.deps.json
@@ -0,0 +1,4777 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.0",
+ "signature": ""
+ },
+ "compilationOptions": {
+ "defines": [
+ "TRACE",
+ "DEBUG",
+ "NETCOREAPP",
+ "NETCOREAPP3_0"
+ ],
+ "languageVersion": "",
+ "platform": "",
+ "allowUnsafe": false,
+ "warningsAsErrors": false,
+ "optimize": false,
+ "keyFile": "",
+ "emitEntryPoint": true,
+ "xmlDoc": false,
+ "debugType": "portable"
+ },
+ "targets": {
+ ".NETCoreApp,Version=v3.0": {
+ "simpleApi/1.0.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.InMemory": "3.0.1",
+ "Microsoft.EntityFrameworkCore.SqlServer": "3.0.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Microsoft.AspNetCore.Antiforgery": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.OAuth": "3.0.0.0",
+ "Microsoft.AspNetCore.Authorization": "3.0.0.0",
+ "Microsoft.AspNetCore.Authorization.Policy": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Authorization": "3.0.0.0",
+ "Microsoft.AspNetCore.Components": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Forms": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Server": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Web": "3.0.0.0",
+ "Microsoft.AspNetCore.Connections.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.CookiePolicy": "3.0.0.0",
+ "Microsoft.AspNetCore.Cors": "3.0.0.0",
+ "Microsoft.AspNetCore.Cryptography.Internal": "3.0.0.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.0.0.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.DataProtection": "3.0.0.0",
+ "Microsoft.AspNetCore.DataProtection.Extensions": "3.0.0.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Diagnostics": "3.0.0.0",
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.0.0.0",
+ "Microsoft.AspNetCore": "3.0.0.0",
+ "Microsoft.AspNetCore.HostFiltering": "3.0.0.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Hosting": "3.0.0.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Connections.Common": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Connections": "3.0.0.0",
+ "Microsoft.AspNetCore.Http": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Extensions": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Features": "3.0.0.0",
+ "Microsoft.AspNetCore.HttpOverrides": "3.0.0.0",
+ "Microsoft.AspNetCore.HttpsPolicy": "3.0.0.0",
+ "Microsoft.AspNetCore.Identity": "3.0.0.0",
+ "Microsoft.AspNetCore.Localization": "3.0.0.0",
+ "Microsoft.AspNetCore.Localization.Routing": "3.0.0.0",
+ "Microsoft.AspNetCore.Metadata": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.RazorPages": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.0.0.0",
+ "Microsoft.AspNetCore.Razor": "3.0.0.0",
+ "Microsoft.AspNetCore.Razor.Runtime": "3.0.0.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.ResponseCaching": "3.0.0.0",
+ "Microsoft.AspNetCore.ResponseCompression": "3.0.0.0",
+ "Microsoft.AspNetCore.Rewrite": "3.0.0.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Routing": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.HttpSys": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.IIS": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.0.0.0",
+ "Microsoft.AspNetCore.Session": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR.Common": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.0.0.0",
+ "Microsoft.AspNetCore.StaticFiles": "3.0.0.0",
+ "Microsoft.AspNetCore.WebSockets": "3.0.0.0",
+ "Microsoft.AspNetCore.WebUtilities": "3.0.0.0",
+ "Microsoft.CSharp.Reference": "4.0.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.Ini": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.Json": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.Xml": "3.0.0.0",
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Composite": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Embedded": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "3.0.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.0.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.Hosting": "3.0.0.0",
+ "Microsoft.Extensions.Http": "3.0.0.0",
+ "Microsoft.Extensions.Identity.Core": "3.0.0.0",
+ "Microsoft.Extensions.Identity.Stores": "3.0.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.Localization": "3.0.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.0.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.0.0.0",
+ "Microsoft.Extensions.Logging.Debug": "3.0.0.0",
+ "Microsoft.Extensions.Logging.EventLog": "3.0.0.0",
+ "Microsoft.Extensions.Logging.EventSource": "3.0.0.0",
+ "Microsoft.Extensions.Logging.TraceSource": "3.0.0.0",
+ "Microsoft.Extensions.ObjectPool": "3.0.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.0.0.0",
+ "Microsoft.Extensions.Options.DataAnnotations": "3.0.0.0",
+ "Microsoft.Extensions.WebEncoders": "3.0.0.0",
+ "Microsoft.JSInterop": "3.0.0.0",
+ "Microsoft.Net.Http.Headers": "3.0.0.0",
+ "Microsoft.VisualBasic.Core": "10.0.4.0",
+ "Microsoft.VisualBasic": "10.0.0.0",
+ "Microsoft.Win32.Primitives": "4.1.1.0",
+ "Microsoft.Win32.Registry.Reference": "4.1.2.0",
+ "mscorlib": "4.0.0.0",
+ "netstandard": "2.1.0.0",
+ "System.AppContext": "4.2.1.0",
+ "System.Buffers": "4.0.2.0",
+ "System.Collections.Concurrent.Reference": "4.0.14.0",
+ "System.Collections.Reference": "4.1.1.0",
+ "System.Collections.Immutable.Reference": "1.2.4.0",
+ "System.Collections.NonGeneric.Reference": "4.1.1.0",
+ "System.Collections.Specialized.Reference": "4.1.1.0",
+ "System.ComponentModel.Annotations.Reference": "4.3.0.0",
+ "System.ComponentModel.DataAnnotations": "4.0.0.0",
+ "System.ComponentModel.Reference": "4.0.3.0",
+ "System.ComponentModel.EventBasedAsync": "4.1.1.0",
+ "System.ComponentModel.Primitives.Reference": "4.2.1.0",
+ "System.ComponentModel.TypeConverter.Reference": "4.2.1.0",
+ "System.Configuration": "4.0.0.0",
+ "System.Console": "4.1.1.0",
+ "System.Core": "4.0.0.0",
+ "System.Data.Common": "4.2.1.0",
+ "System.Data.DataSetExtensions": "4.0.0.0",
+ "System.Data": "4.0.0.0",
+ "System.Diagnostics.Contracts": "4.0.3.0",
+ "System.Diagnostics.Debug.Reference": "4.1.1.0",
+ "System.Diagnostics.DiagnosticSource.Reference": "4.0.4.0",
+ "System.Diagnostics.EventLog": "4.0.1.0",
+ "System.Diagnostics.FileVersionInfo": "4.0.3.0",
+ "System.Diagnostics.Process": "4.2.1.0",
+ "System.Diagnostics.StackTrace": "4.1.1.0",
+ "System.Diagnostics.TextWriterTraceListener": "4.1.1.0",
+ "System.Diagnostics.Tools.Reference": "4.1.1.0",
+ "System.Diagnostics.TraceSource": "4.1.1.0",
+ "System.Diagnostics.Tracing.Reference": "4.2.1.0",
+ "System": "4.0.0.0",
+ "System.Drawing": "4.0.0.0",
+ "System.Drawing.Primitives": "4.2.0.0",
+ "System.Dynamic.Runtime": "4.1.1.0",
+ "System.Globalization.Calendars": "4.1.1.0",
+ "System.Globalization.Reference": "4.1.1.0",
+ "System.Globalization.Extensions.Reference": "4.1.1.0",
+ "System.IO.Compression.Brotli": "4.2.1.0",
+ "System.IO.Compression": "4.2.1.0",
+ "System.IO.Compression.FileSystem": "4.0.0.0",
+ "System.IO.Compression.ZipFile": "4.0.4.0",
+ "System.IO.Reference": "4.2.1.0",
+ "System.IO.FileSystem.Reference": "4.1.1.0",
+ "System.IO.FileSystem.DriveInfo": "4.1.1.0",
+ "System.IO.FileSystem.Primitives.Reference": "4.1.1.0",
+ "System.IO.FileSystem.Watcher": "4.1.1.0",
+ "System.IO.IsolatedStorage": "4.1.1.0",
+ "System.IO.MemoryMappedFiles": "4.1.1.0",
+ "System.IO.Pipelines": "4.0.1.0",
+ "System.IO.Pipes": "4.1.1.0",
+ "System.IO.UnmanagedMemoryStream": "4.1.1.0",
+ "System.Linq.Reference": "4.2.1.0",
+ "System.Linq.Expressions": "4.2.1.0",
+ "System.Linq.Parallel": "4.0.3.0",
+ "System.Linq.Queryable": "4.0.3.0",
+ "System.Memory": "4.2.0.0",
+ "System.Net": "4.0.0.0",
+ "System.Net.Http": "4.2.1.0",
+ "System.Net.HttpListener": "4.0.1.0",
+ "System.Net.Mail": "4.0.1.0",
+ "System.Net.NameResolution.Reference": "4.1.1.0",
+ "System.Net.NetworkInformation": "4.2.1.0",
+ "System.Net.Ping": "4.1.1.0",
+ "System.Net.Primitives.Reference": "4.1.1.0",
+ "System.Net.Requests": "4.1.1.0",
+ "System.Net.Security": "4.1.1.0",
+ "System.Net.ServicePoint": "4.0.1.0",
+ "System.Net.Sockets": "4.2.1.0",
+ "System.Net.WebClient": "4.0.1.0",
+ "System.Net.WebHeaderCollection": "4.1.1.0",
+ "System.Net.WebProxy": "4.0.1.0",
+ "System.Net.WebSockets.Client": "4.1.1.0",
+ "System.Net.WebSockets": "4.1.1.0",
+ "System.Numerics": "4.0.0.0",
+ "System.Numerics.Vectors": "4.1.5.0",
+ "System.ObjectModel": "4.1.1.0",
+ "System.Reflection.DispatchProxy": "4.0.5.0",
+ "System.Reflection.Reference": "4.2.1.0",
+ "System.Reflection.Emit.Reference": "4.1.1.0",
+ "System.Reflection.Emit.ILGeneration.Reference": "4.1.0.0",
+ "System.Reflection.Emit.Lightweight.Reference": "4.1.0.0",
+ "System.Reflection.Extensions.Reference": "4.1.1.0",
+ "System.Reflection.Metadata": "1.4.4.0",
+ "System.Reflection.Primitives.Reference": "4.1.1.0",
+ "System.Reflection.TypeExtensions.Reference": "4.1.2.0",
+ "System.Resources.Reader": "4.1.1.0",
+ "System.Resources.ResourceManager.Reference": "4.1.1.0",
+ "System.Resources.Writer": "4.1.1.0",
+ "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.5.0",
+ "System.Runtime.CompilerServices.VisualC": "4.1.1.0",
+ "System.Runtime.Reference": "4.2.1.0",
+ "System.Runtime.Extensions.Reference": "4.2.1.0",
+ "System.Runtime.Handles.Reference": "4.1.1.0",
+ "System.Runtime.InteropServices.Reference": "4.2.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.3.0",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.3.0",
+ "System.Runtime.Intrinsics": "4.0.0.0",
+ "System.Runtime.Loader": "4.1.0.0",
+ "System.Runtime.Numerics": "4.1.1.0",
+ "System.Runtime.Serialization": "4.0.0.0",
+ "System.Runtime.Serialization.Formatters.Reference": "4.0.3.0",
+ "System.Runtime.Serialization.Json.Reference": "4.0.4.0",
+ "System.Runtime.Serialization.Primitives.Reference": "4.2.1.0",
+ "System.Runtime.Serialization.Xml": "4.1.4.0",
+ "System.Security.AccessControl.Reference": "4.1.1.0",
+ "System.Security.Claims": "4.1.1.0",
+ "System.Security.Cryptography.Algorithms": "4.3.1.0",
+ "System.Security.Cryptography.Cng": "4.3.2.0",
+ "System.Security.Cryptography.Csp": "4.1.1.0",
+ "System.Security.Cryptography.Encoding": "4.1.1.0",
+ "System.Security.Cryptography.Primitives.Reference": "4.1.1.0",
+ "System.Security.Cryptography.X509Certificates": "4.2.1.0",
+ "System.Security.Cryptography.Xml": "4.0.2.0",
+ "System.Security": "4.0.0.0",
+ "System.Security.Permissions.Reference": "4.0.2.0",
+ "System.Security.Principal": "4.1.1.0",
+ "System.Security.Principal.Windows.Reference": "4.1.1.0",
+ "System.Security.SecureString.Reference": "4.1.1.0",
+ "System.ServiceModel.Web": "4.0.0.0",
+ "System.ServiceProcess": "4.0.0.0",
+ "System.Text.Encoding.CodePages.Reference": "4.1.2.0",
+ "System.Text.Encoding.Reference": "4.1.1.0",
+ "System.Text.Encoding.Extensions.Reference": "4.1.1.0",
+ "System.Text.Encodings.Web": "4.0.4.0",
+ "System.Text.Json": "4.0.0.0",
+ "System.Text.RegularExpressions.Reference": "4.2.1.0",
+ "System.Threading.Channels": "4.0.1.0",
+ "System.Threading.Reference": "4.1.1.0",
+ "System.Threading.Overlapped": "4.1.1.0",
+ "System.Threading.Tasks.Dataflow": "4.6.4.0",
+ "System.Threading.Tasks.Reference": "4.1.1.0",
+ "System.Threading.Tasks.Extensions.Reference": "4.3.0.0",
+ "System.Threading.Tasks.Parallel": "4.0.3.0",
+ "System.Threading.Thread": "4.1.1.0",
+ "System.Threading.ThreadPool": "4.1.1.0",
+ "System.Threading.Timer": "4.1.1.0",
+ "System.Transactions": "4.0.0.0",
+ "System.Transactions.Local": "4.0.1.0",
+ "System.ValueTuple": "4.0.3.0",
+ "System.Web": "4.0.0.0",
+ "System.Web.HttpUtility": "4.0.1.0",
+ "System.Windows": "4.0.0.0",
+ "System.Windows.Extensions": "4.0.0.0",
+ "System.Xml": "4.0.0.0",
+ "System.Xml.Linq": "4.0.0.0",
+ "System.Xml.ReaderWriter.Reference": "4.2.1.0",
+ "System.Xml.Serialization": "4.0.0.0",
+ "System.Xml.XDocument.Reference": "4.1.1.0",
+ "System.Xml.XmlDocument.Reference": "4.1.1.0",
+ "System.Xml.XmlSerializer.Reference": "4.1.1.0",
+ "System.Xml.XPath": "4.1.1.0",
+ "System.Xml.XPath.XDocument": "4.1.1.0",
+ "WindowsBase": "4.0.0.0"
+ },
+ "runtime": {
+ "simpleApi.dll": {}
+ },
+ "compile": {
+ "simpleApi.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {},
+ "Microsoft.Data.SqlClient/1.0.19249.1": {
+ "dependencies": {
+ "Microsoft.Identity.Client": "3.0.8",
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Runtime.Caching": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0",
+ "System.Text.Encoding.CodePages": "4.5.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "assemblyVersion": "1.0.19249.1",
+ "fileVersion": "1.0.19249.1"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.19249.1",
+ "fileVersion": "1.0.19249.1"
+ },
+ "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.19249.1",
+ "fileVersion": "1.0.19249.1"
+ }
+ },
+ "compile": {
+ "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore/3.0.1": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "3.0.1",
+ "Microsoft.EntityFrameworkCore.Analyzers": "3.0.1",
+ "Microsoft.Extensions.Caching.Memory": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection": "3.0.1",
+ "Microsoft.Extensions.Logging": "3.0.1",
+ "System.Collections.Immutable": "1.6.0",
+ "System.ComponentModel.Annotations": "4.6.0",
+ "System.Diagnostics.DiagnosticSource": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/3.0.1": {
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/3.0.1": {},
+ "Microsoft.EntityFrameworkCore.InMemory/3.0.1": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "3.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/3.0.1": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "3.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/3.0.1": {
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "1.0.19249.1",
+ "Microsoft.EntityFrameworkCore.Relational": "3.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Options": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection": "3.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Options": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.0.1": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.Identity.Client/3.0.8": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Runtime.Serialization.Formatters": "4.3.0",
+ "System.Runtime.Serialization.Json": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Security.SecureString": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "3.0.8.0",
+ "fileVersion": "3.0.8.0"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Registry/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/sni.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x64/native/sni.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x86/native/sni.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.6.0": {
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.ComponentModel/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.Annotations/4.6.0": {
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "dependencies": {
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "compile": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.5.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Private.DataContractSerialization/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0",
+ "System.Xml.XmlSerializer": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Caching/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Configuration.ConfigurationManager": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.Caching.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Formatters/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Json/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Private.DataContractSerialization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0"
+ }
+ },
+ "System.Security.Principal.Windows/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0"
+ }
+ },
+ "System.Security.SecureString/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {},
+ "System.Xml.ReaderWriter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0"
+ }
+ },
+ "Microsoft.AspNetCore.Antiforgery/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Antiforgery.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Cookies/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.OAuth/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authorization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authorization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authorization.Policy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Authorization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Authorization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Forms/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Forms.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Server/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Server.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Web/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.CookiePolicy/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.CookiePolicy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cors/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cryptography.Internal/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection.Extensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HostFiltering/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HostFiltering.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Html.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Html.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Connections.Common/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Connections/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Connections.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Extensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Features/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Features.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HttpOverrides/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HttpOverrides.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HttpsPolicy/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HttpsPolicy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Identity/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Identity.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Localization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Localization.Routing/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Localization.Routing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Metadata/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Metadata.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Cors/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Cors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Localization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Razor/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Razor.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.RazorPages/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.TagHelpers/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Razor/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Razor.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Razor.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCaching/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCaching.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCompression/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCompression.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Rewrite/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Rewrite.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Routing/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Routing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.HttpSys/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.HttpSys.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.IIS/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.IIS.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.IISIntegration/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Session/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Session.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Common/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Protocols.Json/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.StaticFiles/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.StaticFiles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.WebSockets/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.WebSockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.WebUtilities/3.0.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.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Ini/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Ini.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Json/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.KeyPerFile/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Xml/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Embedded/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Embedded.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Hosting/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Hosting.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Http/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Identity.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Identity.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Identity.Stores/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Identity.Stores.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Localization/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Console/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Console.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Debug/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Debug.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.EventLog.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.EventSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.TraceSource/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.TraceSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.ObjectPool/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.ObjectPool.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options.DataAnnotations/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.WebEncoders/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.WebEncoders.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.JSInterop/3.0.0.0": {
+ "compile": {
+ "Microsoft.JSInterop.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Net.Http.Headers/3.0.0.0": {
+ "compile": {
+ "Microsoft.Net.Http.Headers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.VisualBasic.Core/10.0.4.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.1.0": {
+ "compile": {
+ "Microsoft.Win32.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Win32.Registry.Reference/4.1.2.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.1.0": {
+ "compile": {
+ "System.AppContext.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Buffers/4.0.2.0": {
+ "compile": {
+ "System.Buffers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Concurrent.Reference/4.0.14.0": {
+ "compile": {
+ "System.Collections.Concurrent.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Reference/4.1.1.0": {
+ "compile": {
+ "System.Collections.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Immutable.Reference/1.2.4.0": {
+ "compile": {
+ "System.Collections.Immutable.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.NonGeneric.Reference/4.1.1.0": {
+ "compile": {
+ "System.Collections.NonGeneric.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Specialized.Reference/4.1.1.0": {
+ "compile": {
+ "System.Collections.Specialized.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Annotations.Reference/4.3.0.0": {
+ "compile": {
+ "System.ComponentModel.Annotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.DataAnnotations/4.0.0.0": {
+ "compile": {
+ "System.ComponentModel.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Reference/4.0.3.0": {
+ "compile": {
+ "System.ComponentModel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.EventBasedAsync/4.1.1.0": {
+ "compile": {
+ "System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Primitives.Reference/4.2.1.0": {
+ "compile": {
+ "System.ComponentModel.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.TypeConverter.Reference/4.2.1.0": {
+ "compile": {
+ "System.ComponentModel.TypeConverter.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Configuration/4.0.0.0": {
+ "compile": {
+ "System.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Console/4.1.1.0": {
+ "compile": {
+ "System.Console.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Core/4.0.0.0": {
+ "compile": {
+ "System.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data.Common/4.2.1.0": {
+ "compile": {
+ "System.Data.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data.DataSetExtensions/4.0.0.0": {
+ "compile": {
+ "System.Data.DataSetExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data/4.0.0.0": {
+ "compile": {
+ "System.Data.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Contracts/4.0.3.0": {
+ "compile": {
+ "System.Diagnostics.Contracts.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Debug.Reference/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.Debug.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.DiagnosticSource.Reference/4.0.4.0": {
+ "compile": {
+ "System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.EventLog/4.0.1.0": {
+ "compile": {
+ "System.Diagnostics.EventLog.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.FileVersionInfo/4.0.3.0": {
+ "compile": {
+ "System.Diagnostics.FileVersionInfo.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Process/4.2.1.0": {
+ "compile": {
+ "System.Diagnostics.Process.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.StackTrace/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.StackTrace.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.TextWriterTraceListener.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Tools.Reference/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.Tools.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.TraceSource/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.TraceSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Tracing.Reference/4.2.1.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.0.0": {
+ "compile": {
+ "System.Drawing.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Dynamic.Runtime/4.1.1.0": {
+ "compile": {
+ "System.Dynamic.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Calendars/4.1.1.0": {
+ "compile": {
+ "System.Globalization.Calendars.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Reference/4.1.1.0": {
+ "compile": {
+ "System.Globalization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Extensions.Reference/4.1.1.0": {
+ "compile": {
+ "System.Globalization.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression.Brotli/4.2.1.0": {
+ "compile": {
+ "System.IO.Compression.Brotli.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression/4.2.1.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.4.0": {
+ "compile": {
+ "System.IO.Compression.ZipFile.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Reference/4.2.1.0": {
+ "compile": {
+ "System.IO.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Reference/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.DriveInfo/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.DriveInfo.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Watcher/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.Watcher.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.IsolatedStorage/4.1.1.0": {
+ "compile": {
+ "System.IO.IsolatedStorage.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.MemoryMappedFiles/4.1.1.0": {
+ "compile": {
+ "System.IO.MemoryMappedFiles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Pipelines/4.0.1.0": {
+ "compile": {
+ "System.IO.Pipelines.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Pipes/4.1.1.0": {
+ "compile": {
+ "System.IO.Pipes.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.UnmanagedMemoryStream/4.1.1.0": {
+ "compile": {
+ "System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Reference/4.2.1.0": {
+ "compile": {
+ "System.Linq.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Expressions/4.2.1.0": {
+ "compile": {
+ "System.Linq.Expressions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Parallel/4.0.3.0": {
+ "compile": {
+ "System.Linq.Parallel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Queryable/4.0.3.0": {
+ "compile": {
+ "System.Linq.Queryable.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Memory/4.2.0.0": {
+ "compile": {
+ "System.Memory.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net/4.0.0.0": {
+ "compile": {
+ "System.Net.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Http/4.2.1.0": {
+ "compile": {
+ "System.Net.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.HttpListener/4.0.1.0": {
+ "compile": {
+ "System.Net.HttpListener.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Mail/4.0.1.0": {
+ "compile": {
+ "System.Net.Mail.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.NameResolution.Reference/4.1.1.0": {
+ "compile": {
+ "System.Net.NameResolution.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.NetworkInformation/4.2.1.0": {
+ "compile": {
+ "System.Net.NetworkInformation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Ping/4.1.1.0": {
+ "compile": {
+ "System.Net.Ping.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.Net.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Requests/4.1.1.0": {
+ "compile": {
+ "System.Net.Requests.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Security/4.1.1.0": {
+ "compile": {
+ "System.Net.Security.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.ServicePoint/4.0.1.0": {
+ "compile": {
+ "System.Net.ServicePoint.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Sockets/4.2.1.0": {
+ "compile": {
+ "System.Net.Sockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebClient/4.0.1.0": {
+ "compile": {
+ "System.Net.WebClient.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebHeaderCollection/4.1.1.0": {
+ "compile": {
+ "System.Net.WebHeaderCollection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebProxy/4.0.1.0": {
+ "compile": {
+ "System.Net.WebProxy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebSockets.Client/4.1.1.0": {
+ "compile": {
+ "System.Net.WebSockets.Client.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebSockets/4.1.1.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.5.0": {
+ "compile": {
+ "System.Numerics.Vectors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ObjectModel/4.1.1.0": {
+ "compile": {
+ "System.ObjectModel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.DispatchProxy/4.0.5.0": {
+ "compile": {
+ "System.Reflection.DispatchProxy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Reference/4.2.1.0": {
+ "compile": {
+ "System.Reflection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.Reference/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Emit.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.ILGeneration.Reference/4.1.0.0": {
+ "compile": {
+ "System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.Lightweight.Reference/4.1.0.0": {
+ "compile": {
+ "System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Extensions.Reference/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Metadata/1.4.4.0": {
+ "compile": {
+ "System.Reflection.Metadata.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.TypeExtensions.Reference/4.1.2.0": {
+ "compile": {
+ "System.Reflection.TypeExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.Reader/4.1.1.0": {
+ "compile": {
+ "System.Resources.Reader.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.ResourceManager.Reference/4.1.1.0": {
+ "compile": {
+ "System.Resources.ResourceManager.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.Writer/4.1.1.0": {
+ "compile": {
+ "System.Resources.Writer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.CompilerServices.Unsafe.Reference/4.0.5.0": {
+ "compile": {
+ "System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.CompilerServices.VisualC/4.1.1.0": {
+ "compile": {
+ "System.Runtime.CompilerServices.VisualC.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Extensions.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Handles.Reference/4.1.1.0": {
+ "compile": {
+ "System.Runtime.Handles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.InteropServices.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.3.0": {
+ "compile": {
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.3.0": {
+ "compile": {
+ "System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Intrinsics/4.0.0.0": {
+ "compile": {
+ "System.Runtime.Intrinsics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Loader/4.1.0.0": {
+ "compile": {
+ "System.Runtime.Loader.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Numerics/4.1.1.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.Reference/4.0.3.0": {
+ "compile": {
+ "System.Runtime.Serialization.Formatters.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Json.Reference/4.0.4.0": {
+ "compile": {
+ "System.Runtime.Serialization.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Primitives.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Xml/4.1.4.0": {
+ "compile": {
+ "System.Runtime.Serialization.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.AccessControl.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.AccessControl.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Claims/4.1.1.0": {
+ "compile": {
+ "System.Security.Claims.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Algorithms/4.3.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Algorithms.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Cng/4.3.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Cng.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Csp/4.1.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Csp.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Encoding/4.1.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Encoding.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.X509Certificates/4.2.1.0": {
+ "compile": {
+ "System.Security.Cryptography.X509Certificates.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Xml/4.0.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security/4.0.0.0": {
+ "compile": {
+ "System.Security.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Permissions.Reference/4.0.2.0": {
+ "compile": {
+ "System.Security.Permissions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Principal/4.1.1.0": {
+ "compile": {
+ "System.Security.Principal.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Principal.Windows.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.Principal.Windows.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.SecureString.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.SecureString.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ServiceModel.Web/4.0.0.0": {
+ "compile": {
+ "System.ServiceModel.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ServiceProcess/4.0.0.0": {
+ "compile": {
+ "System.ServiceProcess.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.CodePages.Reference/4.1.2.0": {
+ "compile": {
+ "System.Text.Encoding.CodePages.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.Reference/4.1.1.0": {
+ "compile": {
+ "System.Text.Encoding.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.Extensions.Reference/4.1.1.0": {
+ "compile": {
+ "System.Text.Encoding.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encodings.Web/4.0.4.0": {
+ "compile": {
+ "System.Text.Encodings.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Json/4.0.0.0": {
+ "compile": {
+ "System.Text.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.RegularExpressions.Reference/4.2.1.0": {
+ "compile": {
+ "System.Text.RegularExpressions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Channels/4.0.1.0": {
+ "compile": {
+ "System.Threading.Channels.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Reference/4.1.1.0": {
+ "compile": {
+ "System.Threading.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Overlapped/4.1.1.0": {
+ "compile": {
+ "System.Threading.Overlapped.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Dataflow/4.6.4.0": {
+ "compile": {
+ "System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Reference/4.1.1.0": {
+ "compile": {
+ "System.Threading.Tasks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Extensions.Reference/4.3.0.0": {
+ "compile": {
+ "System.Threading.Tasks.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Parallel/4.0.3.0": {
+ "compile": {
+ "System.Threading.Tasks.Parallel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Thread/4.1.1.0": {
+ "compile": {
+ "System.Threading.Thread.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.ThreadPool/4.1.1.0": {
+ "compile": {
+ "System.Threading.ThreadPool.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Timer/4.1.1.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.1.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.1.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.0.0": {
+ "compile": {
+ "System.Windows.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml/4.0.0.0": {
+ "compile": {
+ "System.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.Linq/4.0.0.0": {
+ "compile": {
+ "System.Xml.Linq.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.ReaderWriter.Reference/4.2.1.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.Reference/4.1.1.0": {
+ "compile": {
+ "System.Xml.XDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XmlDocument.Reference/4.1.1.0": {
+ "compile": {
+ "System.Xml.XmlDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XmlSerializer.Reference/4.1.1.0": {
+ "compile": {
+ "System.Xml.XmlSerializer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XPath/4.1.1.0": {
+ "compile": {
+ "System.Xml.XPath.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XPath.XDocument/4.1.1.0": {
+ "compile": {
+ "System.Xml.XPath.XDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "WindowsBase/4.0.0.0": {
+ "compile": {
+ "WindowsBase.dll": {}
+ },
+ "compileOnly": true
+ }
+ }
+ },
+ "libraries": {
+ "simpleApi/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "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.Data.SqlClient/1.0.19249.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HpKyhtd6sVt6lJrF34XyKgve2o9gS9AMNn7SwpO/P3XZ3AZb67144SZZ/8b9JGwgsBxpXGomBUTKgofMfUAoRA==",
+ "path": "microsoft.data.sqlclient/1.0.19249.1",
+ "hashPath": "microsoft.data.sqlclient.1.0.19249.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdd0q99tTZb3y88TCrl6CDhh13yA8z5+iidXos9w65gEvuXMCfeP2XrMA76cWdRReQEUz23zJfQrxNJaF3hC0g==",
+ "path": "microsoft.entityframeworkcore/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fuGp121aptun1Ncoz1rhcxCCskYOJpVipoA10sR636sxOGBQBEgZtwoAHYlm66KXXdaTMDV/b6vmk2tIO80/CA==",
+ "path": "microsoft.entityframeworkcore.abstractions/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GxjR+HchS6C2Pdrq+w5GjAtLqfIP0Dj8hD2XsyDsdHtc7ZDwLVx/KOpRMwLov56Ztr9dPzbHjpNfGfZtSOKllg==",
+ "path": "microsoft.entityframeworkcore.analyzers/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.analyzers.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.InMemory/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iJoAabAAUr7tXRFDb1bKx4S311Kqzm+4EbLqZ18x54CnnkPmaFvrqDVfuxUvYid2Wyty3m8HIHeuTuI1Q+2KUg==",
+ "path": "microsoft.entityframeworkcore.inmemory/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.inmemory.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1+BXTwfzodjVJxJHwNfom5xtoR8OcwQ6pwEzannpnEsb7mh8ZpHU3wE4phtsHOc15h/FVog2C6bnKnNr7VGTnA==",
+ "path": "microsoft.entityframeworkcore.relational/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.relational.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z5yBGRbM/tfywVcFhHtA/EPL+ZJK+VhyxsnIQPSBV0lzmDKTx+mKSTnSpDCaDZwp4B1VZv//lws1+FaMoeu+xA==",
+ "path": "microsoft.entityframeworkcore.sqlserver/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.sqlserver.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qnTL9QPBOWTpO8ESX2pz3HE6n0u9P+KwH11XfHBwD9E/WgO7fzYU6fLJV4c6ASPw0s1JoCwS8XJUBqF1A0WRsQ==",
+ "path": "microsoft.extensions.caching.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.caching.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UOd/iCQuHdBeQsOnSob+yFxpVWn3JATh/Qrm3ZsO5FXuPFHr9MfQJU96yDahVSDhBPuV+oAqWeVj/QHMl9witw==",
+ "path": "microsoft.extensions.caching.memory/3.0.1",
+ "hashPath": "microsoft.extensions.caching.memory.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVnWU71HYeLcKBX58vQKx3aU3Vb9sQl+UGi7DiLwyyKBHHB+vXGQczg+JwPPvMNIu6bCyEzHGuJtkA4wUTraZA==",
+ "path": "microsoft.extensions.configuration/3.0.1",
+ "hashPath": "microsoft.extensions.configuration.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-R36lhvFgp56wE9YjjRyK2dgo3GHSf6CID2XZee8BLEpNXX8B9kjjKvp0UyDfOM3GWy1//s/fz1RkrG+pl2ycJQ==",
+ "path": "microsoft.extensions.configuration.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.configuration.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zZsgFWC0frrIJurPUQaLUHAFn45SwCAzwqrdxoYlNm0gS6bgAmzcTS5qIIox61783KUDco3eLfx4Bs+amU0J6Q==",
+ "path": "microsoft.extensions.configuration.binder/3.0.1",
+ "hashPath": "microsoft.extensions.configuration.binder.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LYe7cQ8bfWBzbBNZwXsCyvv8wxpiYO1ensbD/LbuUGRVlspSCpfWqUn0fglyZYVMH0wiWhLj1nFooAc8H/UoQA==",
+ "path": "microsoft.extensions.dependencyinjection/3.0.1",
+ "hashPath": "microsoft.extensions.dependencyinjection.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VnytRin0q78cwdhZZ5YAO+6cg0By0iJkk9IoK/vE1vI0qMM6oOjlXNlEFdDRtMXsAmxMPNaRcnpgEJCTe8l76Q==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CGYrO3D3fofdmAQ8JOWq0BcAUCAMYJcE/Paeen1IL3JwfnFmlCFcvnmi/fPOrtG4yrQXqa780RRP+BjLrs0TAQ==",
+ "path": "microsoft.extensions.logging/3.0.1",
+ "hashPath": "microsoft.extensions.logging.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hqEFHyp+IJleZ31SVRh/TYm1NKNqVFbxqJ9KN20GguYJ3V/cT4SftxuxTc71MI8cYl3myFAcrXyJf05hxJ3f4Q==",
+ "path": "microsoft.extensions.logging.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.logging.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8pk8CWGBy/er6yTWcKRPcszWNX9rvLprlOIzK6sQV7EKjA0yzFtgO7kbQuGKzFlu3IusBMAoXNM/tiJLiVC3Qw==",
+ "path": "microsoft.extensions.options/3.0.1",
+ "hashPath": "microsoft.extensions.options.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9RIADJEXOk3R2rQunxzFxQEazaD3FNOqCNed+yVf/U0HDbbkQcwsWOHrju1YwdQwtewt/0WRUYxRDf3USxezdA==",
+ "path": "microsoft.extensions.primitives/3.0.1",
+ "hashPath": "microsoft.extensions.primitives.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/3.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==",
+ "path": "microsoft.identity.client/3.0.8",
+ "hashPath": "microsoft.identity.client.3.0.8.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
+ "path": "microsoft.netcore.platforms/2.0.0",
+ "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "path": "microsoft.win32.registry/4.5.0",
+ "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
+ "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "path": "system.collections.concurrent/4.3.0",
+ "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+aL946rTSJyo4PqstwsVZ5RBfaxfkIx+nTMfpmaxzorqgifRJwndBZhXPWNWGJpys7cQ1/vCvilYN9ugM05JFA==",
+ "path": "system.collections.immutable/1.6.0",
+ "hashPath": "system.collections.immutable.1.6.0.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
+ "path": "system.collections.specialized/4.3.0",
+ "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
+ "path": "system.componentmodel/4.3.0",
+ "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pOd+UhZ3X8xfwKDlgAzowUJNjp8VYVmOHZm++vCd0kq1HZ0zK3mNo2yRXjYgv7Ik/Xi43fmJfND2PLEsQSALCg==",
+ "path": "system.componentmodel.annotations/4.6.0",
+ "hashPath": "system.componentmodel.annotations.4.6.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
+ "path": "system.componentmodel.primitives/4.3.0",
+ "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
+ "path": "system.componentmodel.typeconverter/4.3.0",
+ "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
+ "path": "system.configuration.configurationmanager/4.5.0",
+ "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
+ "path": "system.diagnostics.diagnosticsource/4.6.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "path": "system.diagnostics.tools/4.3.0",
+ "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "path": "system.io.filesystem/4.3.0",
+ "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
+ "path": "system.net.nameresolution/4.3.0",
+ "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "path": "system.net.primitives/4.3.0",
+ "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Private.DataContractSerialization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
+ "path": "system.private.datacontractserialization/4.3.0",
+ "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Caching/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==",
+ "path": "system.runtime.caching/4.5.0",
+ "hashPath": "system.runtime.caching.4.5.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==",
+ "path": "system.runtime.compilerservices.unsafe/4.5.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Formatters/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
+ "path": "system.runtime.serialization.formatters/4.3.0",
+ "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Json/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
+ "path": "system.runtime.serialization.json/4.3.0",
+ "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
+ "path": "system.runtime.serialization.primitives/4.3.0",
+ "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "path": "system.security.accesscontrol/4.5.0",
+ "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
+ "path": "system.security.cryptography.protecteddata/4.5.0",
+ "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
+ "path": "system.security.permissions/4.5.0",
+ "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
+ "path": "system.security.principal.windows/4.5.0",
+ "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
+ },
+ "System.Security.SecureString/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
+ "path": "system.security.securestring/4.3.0",
+ "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==",
+ "path": "system.text.encoding.codepages/4.5.0",
+ "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "path": "system.text.regularexpressions/4.3.0",
+ "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "path": "system.xml.readerwriter/4.3.0",
+ "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "path": "system.xml.xdocument/4.3.0",
+ "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
+ "path": "system.xml.xmldocument/4.3.0",
+ "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
+ "path": "system.xml.xmlserializer/4.3.0",
+ "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Antiforgery/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Cookies/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.OAuth/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Authorization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Forms/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Server/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Web/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.CookiePolicy/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cors/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cryptography.Internal/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection.Extensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HostFiltering/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Html.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Connections.Common/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Connections/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Extensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Features/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HttpOverrides/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HttpsPolicy/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Identity/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Localization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Localization.Routing/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Metadata/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Cors/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Localization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Razor/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.RazorPages/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.TagHelpers/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Razor/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCaching/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCompression/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Rewrite/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Routing/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.HttpSys/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.IIS/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.IISIntegration/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Session/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Common/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Protocols.Json/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.StaticFiles/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.WebSockets/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.WebUtilities/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.CSharp.Reference/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Ini/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Json/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.KeyPerFile/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Xml/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Embedded/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Hosting/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Http/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Identity.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Identity.Stores/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Localization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Console/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Debug/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.TraceSource/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.ObjectPool/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options.DataAnnotations/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.WebEncoders/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.JSInterop/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Net.Http.Headers/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.VisualBasic.Core/10.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.VisualBasic/10.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Win32.Primitives/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Win32.Registry.Reference/4.1.2.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.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Buffers/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Concurrent.Reference/4.0.14.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Immutable.Reference/1.2.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.NonGeneric.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Specialized.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Annotations.Reference/4.3.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.DataAnnotations/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Reference/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.EventBasedAsync/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Primitives.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.TypeConverter.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Configuration/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Console/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Core/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data.Common/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data.DataSetExtensions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Contracts/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Debug.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.DiagnosticSource.Reference/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.EventLog/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.FileVersionInfo/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Process/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.StackTrace/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Tools.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.TraceSource/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Tracing.Reference/4.2.1.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.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Dynamic.Runtime/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Calendars/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Extensions.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression.Brotli/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression/4.2.1.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.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.DriveInfo/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Watcher/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.IsolatedStorage/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.MemoryMappedFiles/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Pipelines/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Pipes/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.UnmanagedMemoryStream/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Expressions/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Parallel/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Queryable/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Memory/4.2.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Http/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.HttpListener/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Mail/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.NameResolution.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.NetworkInformation/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Ping/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Requests/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Security/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.ServicePoint/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Sockets/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebClient/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebHeaderCollection/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebProxy/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebSockets.Client/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebSockets/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Numerics/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Numerics.Vectors/4.1.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ObjectModel/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.DispatchProxy/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.ILGeneration.Reference/4.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.Lightweight.Reference/4.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Extensions.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Metadata/1.4.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.TypeExtensions.Reference/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.Reader/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.ResourceManager.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.Writer/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.CompilerServices.Unsafe.Reference/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.CompilerServices.VisualC/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Extensions.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Handles.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Intrinsics/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Loader/4.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Numerics/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Formatters.Reference/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Json.Reference/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Primitives.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Xml/4.1.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.AccessControl.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Claims/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Algorithms/4.3.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Cng/4.3.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Csp/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Encoding/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.X509Certificates/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Xml/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Permissions.Reference/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Principal/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Principal.Windows.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.SecureString.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ServiceModel.Web/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ServiceProcess/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.CodePages.Reference/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.Extensions.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encodings.Web/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Json/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.RegularExpressions.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Channels/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Overlapped/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Dataflow/4.6.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Extensions.Reference/4.3.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Parallel/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Thread/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.ThreadPool/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Timer/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Transactions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Transactions.Local/4.0.1.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.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Windows/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Windows.Extensions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.Linq/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.ReaderWriter.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.Serialization/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XDocument.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XmlDocument.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XmlSerializer.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XPath/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XPath.XDocument/4.1.1.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/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.dll b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.dll
new file mode 100644
index 0000000..1f77fc3
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.dll differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.exe b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.exe
new file mode 100644
index 0000000..1c1abca
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.exe differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.pdb b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.pdb
new file mode 100644
index 0000000..7e32733
Binary files /dev/null and b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.pdb differ
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.runtimeconfig.dev.json b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.runtimeconfig.dev.json
new file mode 100644
index 0000000..9512f18
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.runtimeconfig.dev.json
@@ -0,0 +1,10 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\MSI Infinite\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\MSI Infinite\\.nuget\\packages",
+ "C:\\Microsoft\\Xamarin\\NuGet",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.runtimeconfig.json b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.runtimeconfig.json
new file mode 100644
index 0000000..6d96cb0
--- /dev/null
+++ b/simpleApi/bin/Debug/netcoreapp3.0/simpleApi.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.0",
+ "framework": {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "3.0.0"
+ },
+ "configProperties": {
+ "System.GC.Server": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/simpleApi/bin/Prod/Microsoft.Data.SqlClient.dll b/simpleApi/bin/Prod/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..f4d8520
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Data.SqlClient.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.Abstractions.dll b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.Abstractions.dll
new file mode 100644
index 0000000..1cb6e5a
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.Abstractions.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.InMemory.dll b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.InMemory.dll
new file mode 100644
index 0000000..8be5e4c
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.InMemory.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.Relational.dll b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.Relational.dll
new file mode 100644
index 0000000..0ca62e3
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.Relational.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.SqlServer.dll b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.SqlServer.dll
new file mode 100644
index 0000000..6606139
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.SqlServer.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.dll b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.dll
new file mode 100644
index 0000000..32639a9
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.EntityFrameworkCore.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Caching.Abstractions.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Caching.Abstractions.dll
new file mode 100644
index 0000000..6ff07b2
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Caching.Abstractions.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Caching.Memory.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Caching.Memory.dll
new file mode 100644
index 0000000..9e8d5a1
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Caching.Memory.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.Abstractions.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.Abstractions.dll
new file mode 100644
index 0000000..e594aca
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.Abstractions.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.Binder.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.Binder.dll
new file mode 100644
index 0000000..b6bfe99
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.Binder.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.dll
new file mode 100644
index 0000000..1259b5e
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Configuration.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/simpleApi/bin/Prod/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 0000000..c76e7e9
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.DependencyInjection.dll b/simpleApi/bin/Prod/Microsoft.Extensions.DependencyInjection.dll
new file mode 100644
index 0000000..8a79bae
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.DependencyInjection.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Logging.Abstractions.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 0000000..3570e0c
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Logging.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Logging.dll
new file mode 100644
index 0000000..81c010c
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Logging.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Options.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Options.dll
new file mode 100644
index 0000000..163fd26
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Options.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Extensions.Primitives.dll b/simpleApi/bin/Prod/Microsoft.Extensions.Primitives.dll
new file mode 100644
index 0000000..9e4817f
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Extensions.Primitives.dll differ
diff --git a/simpleApi/bin/Prod/Microsoft.Identity.Client.dll b/simpleApi/bin/Prod/Microsoft.Identity.Client.dll
new file mode 100644
index 0000000..e540038
Binary files /dev/null and b/simpleApi/bin/Prod/Microsoft.Identity.Client.dll differ
diff --git a/simpleApi/bin/Prod/Newtonsoft.Json.dll b/simpleApi/bin/Prod/Newtonsoft.Json.dll
new file mode 100644
index 0000000..b501fb6
Binary files /dev/null and b/simpleApi/bin/Prod/Newtonsoft.Json.dll differ
diff --git a/simpleApi/bin/Prod/Properties/launchSettings.json b/simpleApi/bin/Prod/Properties/launchSettings.json
new file mode 100644
index 0000000..6231273
--- /dev/null
+++ b/simpleApi/bin/Prod/Properties/launchSettings.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:1518",
+ "sslPort": 44351
+ }
+ },
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "simpleorders",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "simpleApi": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "launchUrl": "simpleorders",
+ "applicationUrl": "https://localhost:5001;http://localhost:5000",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/simpleApi/bin/Prod/System.Configuration.ConfigurationManager.dll b/simpleApi/bin/Prod/System.Configuration.ConfigurationManager.dll
new file mode 100644
index 0000000..7d0b114
Binary files /dev/null and b/simpleApi/bin/Prod/System.Configuration.ConfigurationManager.dll differ
diff --git a/simpleApi/bin/Prod/System.Runtime.Caching.dll b/simpleApi/bin/Prod/System.Runtime.Caching.dll
new file mode 100644
index 0000000..e57fb59
Binary files /dev/null and b/simpleApi/bin/Prod/System.Runtime.Caching.dll differ
diff --git a/simpleApi/bin/Prod/System.Security.Cryptography.ProtectedData.dll b/simpleApi/bin/Prod/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 0000000..3feb9f9
Binary files /dev/null and b/simpleApi/bin/Prod/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/simpleApi/bin/Prod/appsettings.Development.json b/simpleApi/bin/Prod/appsettings.Development.json
new file mode 100644
index 0000000..e203e94
--- /dev/null
+++ b/simpleApi/bin/Prod/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Debug",
+ "System": "Information",
+ "Microsoft": "Information"
+ }
+ }
+}
diff --git a/simpleApi/bin/Prod/appsettings.json b/simpleApi/bin/Prod/appsettings.json
new file mode 100644
index 0000000..d9d9a9b
--- /dev/null
+++ b/simpleApi/bin/Prod/appsettings.json
@@ -0,0 +1,10 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/simpleApi/bin/Prod/data/orderInfo.json b/simpleApi/bin/Prod/data/orderInfo.json
new file mode 100644
index 0000000..e9a6a59
--- /dev/null
+++ b/simpleApi/bin/Prod/data/orderInfo.json
@@ -0,0 +1,136 @@
+[
+ {
+ "OrderID": 36,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-12T05:10:00",
+ "Status": 10,
+ "Code": "R4C877FF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+
+ },
+ {
+ "OrderID": 37,
+ "ShipperID": 4,
+ "DriverID": 243,
+ "CompletionDte": "2018-02-15T05:10:00",
+ "Status": 10,
+ "Code": "R47077FF",
+ "MSA": 1,
+ "Duration": "43.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 38,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R6453FF",
+ "MSA": 2,
+ "Duration": "120.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 39,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C877DS",
+ "MSA": 4,
+ "Duration": "15.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 40,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C9999F",
+ "MSA": 1,
+ "Duration": "111.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 41,
+ "ShipperID": 67,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C87S32",
+ "MSA": 1,
+ "Duration": "54.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 42,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C87123",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 43,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R42G77FF",
+ "MSA": 1,
+ "Duration": "40.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 44,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4002WFF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 2
+ },
+ {
+ "OrderID": 45,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 20,
+ "Code": "R400KHFF",
+ "MSA": 3,
+ "Duration": "23.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 46,
+ "ShipperID": 24,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 61,
+ "Code": "R4C437FF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 47,
+ "ShipperID": 121,
+ "DriverID": 35,
+ "CompletionDte": "2018-03-1T05:10:00",
+ "Status": 10,
+ "Code": "R422AQF",
+ "MSA": 1,
+ "Duration": "66.00",
+ "OfferType": 2
+ }
+
+]
\ No newline at end of file
diff --git a/simpleApi/bin/Prod/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll b/simpleApi/bin/Prod/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll
new file mode 100644
index 0000000..6af5204
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll b/simpleApi/bin/Prod/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..de9f82c
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/win-arm64/native/sni.dll b/simpleApi/bin/Prod/runtimes/win-arm64/native/sni.dll
new file mode 100644
index 0000000..7b8f9d8
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/win-arm64/native/sni.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/win-x64/native/sni.dll b/simpleApi/bin/Prod/runtimes/win-x64/native/sni.dll
new file mode 100644
index 0000000..c1a05a5
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/win-x64/native/sni.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/win-x86/native/sni.dll b/simpleApi/bin/Prod/runtimes/win-x86/native/sni.dll
new file mode 100644
index 0000000..5fc21ac
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/win-x86/native/sni.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll b/simpleApi/bin/Prod/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll
new file mode 100644
index 0000000..4178067
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll b/simpleApi/bin/Prod/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll
new file mode 100644
index 0000000..739de17
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll differ
diff --git a/simpleApi/bin/Prod/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/simpleApi/bin/Prod/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
new file mode 100644
index 0000000..73536ac
Binary files /dev/null and b/simpleApi/bin/Prod/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ
diff --git a/simpleApi/bin/Prod/simpleApi.deps.json b/simpleApi/bin/Prod/simpleApi.deps.json
new file mode 100644
index 0000000..01fc2e8
--- /dev/null
+++ b/simpleApi/bin/Prod/simpleApi.deps.json
@@ -0,0 +1,4777 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.0",
+ "signature": ""
+ },
+ "compilationOptions": {
+ "defines": [
+ "TRACE",
+ "DEBUG",
+ "NETCOREAPP",
+ "NETCOREAPP3_0"
+ ],
+ "languageVersion": "",
+ "platform": "",
+ "allowUnsafe": false,
+ "warningsAsErrors": false,
+ "optimize": false,
+ "keyFile": "",
+ "emitEntryPoint": true,
+ "xmlDoc": false,
+ "debugType": "portable"
+ },
+ "targets": {
+ ".NETCoreApp,Version=v3.0": {
+ "simpleApi/1.0.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.InMemory": "3.0.1",
+ "Microsoft.EntityFrameworkCore.SqlServer": "3.0.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Microsoft.AspNetCore.Antiforgery": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication": "3.0.0.0",
+ "Microsoft.AspNetCore.Authentication.OAuth": "3.0.0.0",
+ "Microsoft.AspNetCore.Authorization": "3.0.0.0",
+ "Microsoft.AspNetCore.Authorization.Policy": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Authorization": "3.0.0.0",
+ "Microsoft.AspNetCore.Components": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Forms": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Server": "3.0.0.0",
+ "Microsoft.AspNetCore.Components.Web": "3.0.0.0",
+ "Microsoft.AspNetCore.Connections.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.CookiePolicy": "3.0.0.0",
+ "Microsoft.AspNetCore.Cors": "3.0.0.0",
+ "Microsoft.AspNetCore.Cryptography.Internal": "3.0.0.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.0.0.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.DataProtection": "3.0.0.0",
+ "Microsoft.AspNetCore.DataProtection.Extensions": "3.0.0.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Diagnostics": "3.0.0.0",
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.0.0.0",
+ "Microsoft.AspNetCore": "3.0.0.0",
+ "Microsoft.AspNetCore.HostFiltering": "3.0.0.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Hosting": "3.0.0.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Connections.Common": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Connections": "3.0.0.0",
+ "Microsoft.AspNetCore.Http": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Extensions": "3.0.0.0",
+ "Microsoft.AspNetCore.Http.Features": "3.0.0.0",
+ "Microsoft.AspNetCore.HttpOverrides": "3.0.0.0",
+ "Microsoft.AspNetCore.HttpsPolicy": "3.0.0.0",
+ "Microsoft.AspNetCore.Identity": "3.0.0.0",
+ "Microsoft.AspNetCore.Localization": "3.0.0.0",
+ "Microsoft.AspNetCore.Localization.Routing": "3.0.0.0",
+ "Microsoft.AspNetCore.Metadata": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.RazorPages": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "3.0.0.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.0.0.0",
+ "Microsoft.AspNetCore.Razor": "3.0.0.0",
+ "Microsoft.AspNetCore.Razor.Runtime": "3.0.0.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.ResponseCaching": "3.0.0.0",
+ "Microsoft.AspNetCore.ResponseCompression": "3.0.0.0",
+ "Microsoft.AspNetCore.Rewrite": "3.0.0.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "3.0.0.0",
+ "Microsoft.AspNetCore.Routing": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.HttpSys": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.IIS": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "3.0.0.0",
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.0.0.0",
+ "Microsoft.AspNetCore.Session": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR.Common": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR.Core": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR": "3.0.0.0",
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.0.0.0",
+ "Microsoft.AspNetCore.StaticFiles": "3.0.0.0",
+ "Microsoft.AspNetCore.WebSockets": "3.0.0.0",
+ "Microsoft.AspNetCore.WebUtilities": "3.0.0.0",
+ "Microsoft.CSharp.Reference": "4.0.0.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.Ini": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.Json": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.0.0.0",
+ "Microsoft.Extensions.Configuration.Xml": "3.0.0.0",
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Composite": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Embedded": "3.0.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "3.0.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.0.0.0",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.Hosting": "3.0.0.0",
+ "Microsoft.Extensions.Http": "3.0.0.0",
+ "Microsoft.Extensions.Identity.Core": "3.0.0.0",
+ "Microsoft.Extensions.Identity.Stores": "3.0.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "3.0.0.0",
+ "Microsoft.Extensions.Localization": "3.0.0.0",
+ "Microsoft.Extensions.Logging.Configuration": "3.0.0.0",
+ "Microsoft.Extensions.Logging.Console": "3.0.0.0",
+ "Microsoft.Extensions.Logging.Debug": "3.0.0.0",
+ "Microsoft.Extensions.Logging.EventLog": "3.0.0.0",
+ "Microsoft.Extensions.Logging.EventSource": "3.0.0.0",
+ "Microsoft.Extensions.Logging.TraceSource": "3.0.0.0",
+ "Microsoft.Extensions.ObjectPool": "3.0.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.0.0.0",
+ "Microsoft.Extensions.Options.DataAnnotations": "3.0.0.0",
+ "Microsoft.Extensions.WebEncoders": "3.0.0.0",
+ "Microsoft.JSInterop": "3.0.0.0",
+ "Microsoft.Net.Http.Headers": "3.0.0.0",
+ "Microsoft.VisualBasic.Core": "10.0.4.0",
+ "Microsoft.VisualBasic": "10.0.0.0",
+ "Microsoft.Win32.Primitives": "4.1.1.0",
+ "Microsoft.Win32.Registry.Reference": "4.1.2.0",
+ "mscorlib": "4.0.0.0",
+ "netstandard": "2.1.0.0",
+ "System.AppContext": "4.2.1.0",
+ "System.Buffers": "4.0.2.0",
+ "System.Collections.Concurrent.Reference": "4.0.14.0",
+ "System.Collections.Reference": "4.1.1.0",
+ "System.Collections.Immutable.Reference": "1.2.4.0",
+ "System.Collections.NonGeneric.Reference": "4.1.1.0",
+ "System.Collections.Specialized.Reference": "4.1.1.0",
+ "System.ComponentModel.Annotations.Reference": "4.3.0.0",
+ "System.ComponentModel.DataAnnotations": "4.0.0.0",
+ "System.ComponentModel.Reference": "4.0.3.0",
+ "System.ComponentModel.EventBasedAsync": "4.1.1.0",
+ "System.ComponentModel.Primitives.Reference": "4.2.1.0",
+ "System.ComponentModel.TypeConverter.Reference": "4.2.1.0",
+ "System.Configuration": "4.0.0.0",
+ "System.Console": "4.1.1.0",
+ "System.Core": "4.0.0.0",
+ "System.Data.Common": "4.2.1.0",
+ "System.Data.DataSetExtensions": "4.0.0.0",
+ "System.Data": "4.0.0.0",
+ "System.Diagnostics.Contracts": "4.0.3.0",
+ "System.Diagnostics.Debug.Reference": "4.1.1.0",
+ "System.Diagnostics.DiagnosticSource.Reference": "4.0.4.0",
+ "System.Diagnostics.EventLog": "4.0.1.0",
+ "System.Diagnostics.FileVersionInfo": "4.0.3.0",
+ "System.Diagnostics.Process": "4.2.1.0",
+ "System.Diagnostics.StackTrace": "4.1.1.0",
+ "System.Diagnostics.TextWriterTraceListener": "4.1.1.0",
+ "System.Diagnostics.Tools.Reference": "4.1.1.0",
+ "System.Diagnostics.TraceSource": "4.1.1.0",
+ "System.Diagnostics.Tracing.Reference": "4.2.1.0",
+ "System": "4.0.0.0",
+ "System.Drawing": "4.0.0.0",
+ "System.Drawing.Primitives": "4.2.0.0",
+ "System.Dynamic.Runtime": "4.1.1.0",
+ "System.Globalization.Calendars": "4.1.1.0",
+ "System.Globalization.Reference": "4.1.1.0",
+ "System.Globalization.Extensions.Reference": "4.1.1.0",
+ "System.IO.Compression.Brotli": "4.2.1.0",
+ "System.IO.Compression": "4.2.1.0",
+ "System.IO.Compression.FileSystem": "4.0.0.0",
+ "System.IO.Compression.ZipFile": "4.0.4.0",
+ "System.IO.Reference": "4.2.1.0",
+ "System.IO.FileSystem.Reference": "4.1.1.0",
+ "System.IO.FileSystem.DriveInfo": "4.1.1.0",
+ "System.IO.FileSystem.Primitives.Reference": "4.1.1.0",
+ "System.IO.FileSystem.Watcher": "4.1.1.0",
+ "System.IO.IsolatedStorage": "4.1.1.0",
+ "System.IO.MemoryMappedFiles": "4.1.1.0",
+ "System.IO.Pipelines": "4.0.1.0",
+ "System.IO.Pipes": "4.1.1.0",
+ "System.IO.UnmanagedMemoryStream": "4.1.1.0",
+ "System.Linq.Reference": "4.2.1.0",
+ "System.Linq.Expressions": "4.2.1.0",
+ "System.Linq.Parallel": "4.0.3.0",
+ "System.Linq.Queryable": "4.0.3.0",
+ "System.Memory": "4.2.0.0",
+ "System.Net": "4.0.0.0",
+ "System.Net.Http": "4.2.1.0",
+ "System.Net.HttpListener": "4.0.1.0",
+ "System.Net.Mail": "4.0.1.0",
+ "System.Net.NameResolution.Reference": "4.1.1.0",
+ "System.Net.NetworkInformation": "4.2.1.0",
+ "System.Net.Ping": "4.1.1.0",
+ "System.Net.Primitives.Reference": "4.1.1.0",
+ "System.Net.Requests": "4.1.1.0",
+ "System.Net.Security": "4.1.1.0",
+ "System.Net.ServicePoint": "4.0.1.0",
+ "System.Net.Sockets": "4.2.1.0",
+ "System.Net.WebClient": "4.0.1.0",
+ "System.Net.WebHeaderCollection": "4.1.1.0",
+ "System.Net.WebProxy": "4.0.1.0",
+ "System.Net.WebSockets.Client": "4.1.1.0",
+ "System.Net.WebSockets": "4.1.1.0",
+ "System.Numerics": "4.0.0.0",
+ "System.Numerics.Vectors": "4.1.5.0",
+ "System.ObjectModel": "4.1.1.0",
+ "System.Reflection.DispatchProxy": "4.0.5.0",
+ "System.Reflection.Reference": "4.2.1.0",
+ "System.Reflection.Emit.Reference": "4.1.1.0",
+ "System.Reflection.Emit.ILGeneration.Reference": "4.1.0.0",
+ "System.Reflection.Emit.Lightweight.Reference": "4.1.0.0",
+ "System.Reflection.Extensions.Reference": "4.1.1.0",
+ "System.Reflection.Metadata": "1.4.4.0",
+ "System.Reflection.Primitives.Reference": "4.1.1.0",
+ "System.Reflection.TypeExtensions.Reference": "4.1.2.0",
+ "System.Resources.Reader": "4.1.1.0",
+ "System.Resources.ResourceManager.Reference": "4.1.1.0",
+ "System.Resources.Writer": "4.1.1.0",
+ "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.5.0",
+ "System.Runtime.CompilerServices.VisualC": "4.1.1.0",
+ "System.Runtime.Reference": "4.2.1.0",
+ "System.Runtime.Extensions.Reference": "4.2.1.0",
+ "System.Runtime.Handles.Reference": "4.1.1.0",
+ "System.Runtime.InteropServices.Reference": "4.2.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.3.0",
+ "System.Runtime.InteropServices.WindowsRuntime": "4.0.3.0",
+ "System.Runtime.Intrinsics": "4.0.0.0",
+ "System.Runtime.Loader": "4.1.0.0",
+ "System.Runtime.Numerics": "4.1.1.0",
+ "System.Runtime.Serialization": "4.0.0.0",
+ "System.Runtime.Serialization.Formatters.Reference": "4.0.3.0",
+ "System.Runtime.Serialization.Json.Reference": "4.0.4.0",
+ "System.Runtime.Serialization.Primitives.Reference": "4.2.1.0",
+ "System.Runtime.Serialization.Xml": "4.1.4.0",
+ "System.Security.AccessControl.Reference": "4.1.1.0",
+ "System.Security.Claims": "4.1.1.0",
+ "System.Security.Cryptography.Algorithms": "4.3.1.0",
+ "System.Security.Cryptography.Cng": "4.3.2.0",
+ "System.Security.Cryptography.Csp": "4.1.1.0",
+ "System.Security.Cryptography.Encoding": "4.1.1.0",
+ "System.Security.Cryptography.Primitives.Reference": "4.1.1.0",
+ "System.Security.Cryptography.X509Certificates": "4.2.1.0",
+ "System.Security.Cryptography.Xml": "4.0.2.0",
+ "System.Security": "4.0.0.0",
+ "System.Security.Permissions.Reference": "4.0.2.0",
+ "System.Security.Principal": "4.1.1.0",
+ "System.Security.Principal.Windows.Reference": "4.1.1.0",
+ "System.Security.SecureString.Reference": "4.1.1.0",
+ "System.ServiceModel.Web": "4.0.0.0",
+ "System.ServiceProcess": "4.0.0.0",
+ "System.Text.Encoding.CodePages.Reference": "4.1.2.0",
+ "System.Text.Encoding.Reference": "4.1.1.0",
+ "System.Text.Encoding.Extensions.Reference": "4.1.1.0",
+ "System.Text.Encodings.Web": "4.0.4.0",
+ "System.Text.Json": "4.0.0.0",
+ "System.Text.RegularExpressions.Reference": "4.2.1.0",
+ "System.Threading.Channels": "4.0.1.0",
+ "System.Threading.Reference": "4.1.1.0",
+ "System.Threading.Overlapped": "4.1.1.0",
+ "System.Threading.Tasks.Dataflow": "4.6.4.0",
+ "System.Threading.Tasks.Reference": "4.1.1.0",
+ "System.Threading.Tasks.Extensions.Reference": "4.3.0.0",
+ "System.Threading.Tasks.Parallel": "4.0.3.0",
+ "System.Threading.Thread": "4.1.1.0",
+ "System.Threading.ThreadPool": "4.1.1.0",
+ "System.Threading.Timer": "4.1.1.0",
+ "System.Transactions": "4.0.0.0",
+ "System.Transactions.Local": "4.0.1.0",
+ "System.ValueTuple": "4.0.3.0",
+ "System.Web": "4.0.0.0",
+ "System.Web.HttpUtility": "4.0.1.0",
+ "System.Windows": "4.0.0.0",
+ "System.Windows.Extensions": "4.0.0.0",
+ "System.Xml": "4.0.0.0",
+ "System.Xml.Linq": "4.0.0.0",
+ "System.Xml.ReaderWriter.Reference": "4.2.1.0",
+ "System.Xml.Serialization": "4.0.0.0",
+ "System.Xml.XDocument.Reference": "4.1.1.0",
+ "System.Xml.XmlDocument.Reference": "4.1.1.0",
+ "System.Xml.XmlSerializer.Reference": "4.1.1.0",
+ "System.Xml.XPath": "4.1.1.0",
+ "System.Xml.XPath.XDocument": "4.1.1.0",
+ "WindowsBase": "4.0.0.0"
+ },
+ "runtime": {
+ "simpleApi.dll": {}
+ },
+ "compile": {
+ "simpleApi.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {},
+ "Microsoft.Data.SqlClient/1.0.19249.1": {
+ "dependencies": {
+ "Microsoft.Identity.Client": "3.0.8",
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Runtime.Caching": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0",
+ "System.Text.Encoding.CodePages": "4.5.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "assemblyVersion": "1.0.19249.1",
+ "fileVersion": "1.0.19249.1"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.19249.1",
+ "fileVersion": "1.0.19249.1"
+ },
+ "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "1.0.19249.1",
+ "fileVersion": "1.0.19249.1"
+ }
+ },
+ "compile": {
+ "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore/3.0.1": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "3.0.1",
+ "Microsoft.EntityFrameworkCore.Analyzers": "3.0.1",
+ "Microsoft.Extensions.Caching.Memory": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection": "3.0.1",
+ "Microsoft.Extensions.Logging": "3.0.1",
+ "System.Collections.Immutable": "1.6.0",
+ "System.ComponentModel.Annotations": "4.6.0",
+ "System.Diagnostics.DiagnosticSource": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/3.0.1": {
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/3.0.1": {},
+ "Microsoft.EntityFrameworkCore.InMemory/3.0.1": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "3.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/3.0.1": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "3.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/3.0.1": {
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "1.0.19249.1",
+ "Microsoft.EntityFrameworkCore.Relational": "3.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53112"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Options": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection": "3.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Options": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.0.1": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.0.1": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "3.0.1.0",
+ "fileVersion": "3.0.119.53103"
+ }
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.Identity.Client/3.0.8": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Runtime.Serialization.Formatters": "4.3.0",
+ "System.Runtime.Serialization.Json": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Security.SecureString": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "3.0.8.0",
+ "fileVersion": "3.0.8.0"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Registry/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ },
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/sni.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x64/native/sni.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x86/native/sni.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "4.6.25512.1"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.6.0": {
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.ComponentModel/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.Annotations/4.6.0": {
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "dependencies": {
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "compile": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.5.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Private.DataContractSerialization/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0",
+ "System.Xml.XmlSerializer": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.Caching/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Configuration.ConfigurationManager": "4.5.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.Caching.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Formatters/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Json/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Private.DataContractSerialization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0"
+ }
+ },
+ "System.Security.Principal.Windows/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0"
+ }
+ },
+ "System.Security.SecureString/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {},
+ "System.Xml.ReaderWriter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0"
+ }
+ },
+ "Microsoft.AspNetCore.Antiforgery/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Antiforgery.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Cookies/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authentication.OAuth/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authorization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authorization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Authorization.Policy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Authorization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Authorization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Forms/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Forms.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Server/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Server.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Components.Web/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Components.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.CookiePolicy/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.CookiePolicy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cors/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cryptography.Internal/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.DataProtection.Extensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HostFiltering/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HostFiltering.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Html.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Html.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Connections.Common/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Connections/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Connections.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Extensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Http.Features/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Http.Features.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HttpOverrides/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HttpOverrides.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.HttpsPolicy/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.HttpsPolicy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Identity/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Identity.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Localization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Localization.Routing/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Localization.Routing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Metadata/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Metadata.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Cors/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Cors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Localization/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.Razor/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.Razor.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.RazorPages/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.TagHelpers/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Razor/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Razor.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Razor.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCaching/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCaching.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.ResponseCompression/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.ResponseCompression.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Rewrite/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Rewrite.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Routing/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Routing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.HttpSys/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.HttpSys.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.IIS/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.IIS.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.IISIntegration/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.Session/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.Session.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Common/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.SignalR.Protocols.Json/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.StaticFiles/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.StaticFiles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.WebSockets/3.0.0.0": {
+ "compile": {
+ "Microsoft.AspNetCore.WebSockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.AspNetCore.WebUtilities/3.0.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.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Ini/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Ini.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Json/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.KeyPerFile/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Configuration.Xml/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Configuration.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Embedded/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Embedded.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Hosting/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Hosting.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Http/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Identity.Core/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Identity.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Identity.Stores/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Identity.Stores.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Localization/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Localization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Console/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Console.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.Debug/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.Debug.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.EventLog.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.EventSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Logging.TraceSource/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Logging.TraceSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.ObjectPool/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.ObjectPool.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.Options.DataAnnotations/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.Options.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Extensions.WebEncoders/3.0.0.0": {
+ "compile": {
+ "Microsoft.Extensions.WebEncoders.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.JSInterop/3.0.0.0": {
+ "compile": {
+ "Microsoft.JSInterop.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Net.Http.Headers/3.0.0.0": {
+ "compile": {
+ "Microsoft.Net.Http.Headers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.VisualBasic.Core/10.0.4.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.1.0": {
+ "compile": {
+ "Microsoft.Win32.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "Microsoft.Win32.Registry.Reference/4.1.2.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.1.0": {
+ "compile": {
+ "System.AppContext.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Buffers/4.0.2.0": {
+ "compile": {
+ "System.Buffers.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Concurrent.Reference/4.0.14.0": {
+ "compile": {
+ "System.Collections.Concurrent.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Reference/4.1.1.0": {
+ "compile": {
+ "System.Collections.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Immutable.Reference/1.2.4.0": {
+ "compile": {
+ "System.Collections.Immutable.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.NonGeneric.Reference/4.1.1.0": {
+ "compile": {
+ "System.Collections.NonGeneric.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Collections.Specialized.Reference/4.1.1.0": {
+ "compile": {
+ "System.Collections.Specialized.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Annotations.Reference/4.3.0.0": {
+ "compile": {
+ "System.ComponentModel.Annotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.DataAnnotations/4.0.0.0": {
+ "compile": {
+ "System.ComponentModel.DataAnnotations.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Reference/4.0.3.0": {
+ "compile": {
+ "System.ComponentModel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.EventBasedAsync/4.1.1.0": {
+ "compile": {
+ "System.ComponentModel.EventBasedAsync.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.Primitives.Reference/4.2.1.0": {
+ "compile": {
+ "System.ComponentModel.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ComponentModel.TypeConverter.Reference/4.2.1.0": {
+ "compile": {
+ "System.ComponentModel.TypeConverter.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Configuration/4.0.0.0": {
+ "compile": {
+ "System.Configuration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Console/4.1.1.0": {
+ "compile": {
+ "System.Console.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Core/4.0.0.0": {
+ "compile": {
+ "System.Core.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data.Common/4.2.1.0": {
+ "compile": {
+ "System.Data.Common.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data.DataSetExtensions/4.0.0.0": {
+ "compile": {
+ "System.Data.DataSetExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Data/4.0.0.0": {
+ "compile": {
+ "System.Data.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Contracts/4.0.3.0": {
+ "compile": {
+ "System.Diagnostics.Contracts.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Debug.Reference/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.Debug.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.DiagnosticSource.Reference/4.0.4.0": {
+ "compile": {
+ "System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.EventLog/4.0.1.0": {
+ "compile": {
+ "System.Diagnostics.EventLog.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.FileVersionInfo/4.0.3.0": {
+ "compile": {
+ "System.Diagnostics.FileVersionInfo.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Process/4.2.1.0": {
+ "compile": {
+ "System.Diagnostics.Process.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.StackTrace/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.StackTrace.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.TextWriterTraceListener.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Tools.Reference/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.Tools.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.TraceSource/4.1.1.0": {
+ "compile": {
+ "System.Diagnostics.TraceSource.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Diagnostics.Tracing.Reference/4.2.1.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.0.0": {
+ "compile": {
+ "System.Drawing.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Dynamic.Runtime/4.1.1.0": {
+ "compile": {
+ "System.Dynamic.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Calendars/4.1.1.0": {
+ "compile": {
+ "System.Globalization.Calendars.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Reference/4.1.1.0": {
+ "compile": {
+ "System.Globalization.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Globalization.Extensions.Reference/4.1.1.0": {
+ "compile": {
+ "System.Globalization.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression.Brotli/4.2.1.0": {
+ "compile": {
+ "System.IO.Compression.Brotli.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Compression/4.2.1.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.4.0": {
+ "compile": {
+ "System.IO.Compression.ZipFile.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Reference/4.2.1.0": {
+ "compile": {
+ "System.IO.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Reference/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.DriveInfo/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.DriveInfo.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.FileSystem.Watcher/4.1.1.0": {
+ "compile": {
+ "System.IO.FileSystem.Watcher.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.IsolatedStorage/4.1.1.0": {
+ "compile": {
+ "System.IO.IsolatedStorage.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.MemoryMappedFiles/4.1.1.0": {
+ "compile": {
+ "System.IO.MemoryMappedFiles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Pipelines/4.0.1.0": {
+ "compile": {
+ "System.IO.Pipelines.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.Pipes/4.1.1.0": {
+ "compile": {
+ "System.IO.Pipes.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.IO.UnmanagedMemoryStream/4.1.1.0": {
+ "compile": {
+ "System.IO.UnmanagedMemoryStream.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Reference/4.2.1.0": {
+ "compile": {
+ "System.Linq.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Expressions/4.2.1.0": {
+ "compile": {
+ "System.Linq.Expressions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Parallel/4.0.3.0": {
+ "compile": {
+ "System.Linq.Parallel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Linq.Queryable/4.0.3.0": {
+ "compile": {
+ "System.Linq.Queryable.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Memory/4.2.0.0": {
+ "compile": {
+ "System.Memory.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net/4.0.0.0": {
+ "compile": {
+ "System.Net.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Http/4.2.1.0": {
+ "compile": {
+ "System.Net.Http.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.HttpListener/4.0.1.0": {
+ "compile": {
+ "System.Net.HttpListener.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Mail/4.0.1.0": {
+ "compile": {
+ "System.Net.Mail.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.NameResolution.Reference/4.1.1.0": {
+ "compile": {
+ "System.Net.NameResolution.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.NetworkInformation/4.2.1.0": {
+ "compile": {
+ "System.Net.NetworkInformation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Ping/4.1.1.0": {
+ "compile": {
+ "System.Net.Ping.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.Net.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Requests/4.1.1.0": {
+ "compile": {
+ "System.Net.Requests.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Security/4.1.1.0": {
+ "compile": {
+ "System.Net.Security.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.ServicePoint/4.0.1.0": {
+ "compile": {
+ "System.Net.ServicePoint.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.Sockets/4.2.1.0": {
+ "compile": {
+ "System.Net.Sockets.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebClient/4.0.1.0": {
+ "compile": {
+ "System.Net.WebClient.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebHeaderCollection/4.1.1.0": {
+ "compile": {
+ "System.Net.WebHeaderCollection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebProxy/4.0.1.0": {
+ "compile": {
+ "System.Net.WebProxy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebSockets.Client/4.1.1.0": {
+ "compile": {
+ "System.Net.WebSockets.Client.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Net.WebSockets/4.1.1.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.5.0": {
+ "compile": {
+ "System.Numerics.Vectors.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ObjectModel/4.1.1.0": {
+ "compile": {
+ "System.ObjectModel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.DispatchProxy/4.0.5.0": {
+ "compile": {
+ "System.Reflection.DispatchProxy.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Reference/4.2.1.0": {
+ "compile": {
+ "System.Reflection.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.Reference/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Emit.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.ILGeneration.Reference/4.1.0.0": {
+ "compile": {
+ "System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Emit.Lightweight.Reference/4.1.0.0": {
+ "compile": {
+ "System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Extensions.Reference/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Metadata/1.4.4.0": {
+ "compile": {
+ "System.Reflection.Metadata.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.Reflection.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Reflection.TypeExtensions.Reference/4.1.2.0": {
+ "compile": {
+ "System.Reflection.TypeExtensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.Reader/4.1.1.0": {
+ "compile": {
+ "System.Resources.Reader.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.ResourceManager.Reference/4.1.1.0": {
+ "compile": {
+ "System.Resources.ResourceManager.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Resources.Writer/4.1.1.0": {
+ "compile": {
+ "System.Resources.Writer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.CompilerServices.Unsafe.Reference/4.0.5.0": {
+ "compile": {
+ "System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.CompilerServices.VisualC/4.1.1.0": {
+ "compile": {
+ "System.Runtime.CompilerServices.VisualC.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Extensions.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Handles.Reference/4.1.1.0": {
+ "compile": {
+ "System.Runtime.Handles.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.InteropServices.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.3.0": {
+ "compile": {
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.3.0": {
+ "compile": {
+ "System.Runtime.InteropServices.WindowsRuntime.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Intrinsics/4.0.0.0": {
+ "compile": {
+ "System.Runtime.Intrinsics.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Loader/4.1.0.0": {
+ "compile": {
+ "System.Runtime.Loader.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Numerics/4.1.1.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.Reference/4.0.3.0": {
+ "compile": {
+ "System.Runtime.Serialization.Formatters.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Json.Reference/4.0.4.0": {
+ "compile": {
+ "System.Runtime.Serialization.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Primitives.Reference/4.2.1.0": {
+ "compile": {
+ "System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Runtime.Serialization.Xml/4.1.4.0": {
+ "compile": {
+ "System.Runtime.Serialization.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.AccessControl.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.AccessControl.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Claims/4.1.1.0": {
+ "compile": {
+ "System.Security.Claims.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Algorithms/4.3.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Algorithms.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Cng/4.3.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Cng.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Csp/4.1.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Csp.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Encoding/4.1.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Encoding.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Primitives.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.Cryptography.Primitives.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.X509Certificates/4.2.1.0": {
+ "compile": {
+ "System.Security.Cryptography.X509Certificates.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Cryptography.Xml/4.0.2.0": {
+ "compile": {
+ "System.Security.Cryptography.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security/4.0.0.0": {
+ "compile": {
+ "System.Security.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Permissions.Reference/4.0.2.0": {
+ "compile": {
+ "System.Security.Permissions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Principal/4.1.1.0": {
+ "compile": {
+ "System.Security.Principal.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.Principal.Windows.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.Principal.Windows.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Security.SecureString.Reference/4.1.1.0": {
+ "compile": {
+ "System.Security.SecureString.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ServiceModel.Web/4.0.0.0": {
+ "compile": {
+ "System.ServiceModel.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.ServiceProcess/4.0.0.0": {
+ "compile": {
+ "System.ServiceProcess.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.CodePages.Reference/4.1.2.0": {
+ "compile": {
+ "System.Text.Encoding.CodePages.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.Reference/4.1.1.0": {
+ "compile": {
+ "System.Text.Encoding.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encoding.Extensions.Reference/4.1.1.0": {
+ "compile": {
+ "System.Text.Encoding.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Encodings.Web/4.0.4.0": {
+ "compile": {
+ "System.Text.Encodings.Web.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.Json/4.0.0.0": {
+ "compile": {
+ "System.Text.Json.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Text.RegularExpressions.Reference/4.2.1.0": {
+ "compile": {
+ "System.Text.RegularExpressions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Channels/4.0.1.0": {
+ "compile": {
+ "System.Threading.Channels.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Reference/4.1.1.0": {
+ "compile": {
+ "System.Threading.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Overlapped/4.1.1.0": {
+ "compile": {
+ "System.Threading.Overlapped.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Dataflow/4.6.4.0": {
+ "compile": {
+ "System.Threading.Tasks.Dataflow.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Reference/4.1.1.0": {
+ "compile": {
+ "System.Threading.Tasks.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Extensions.Reference/4.3.0.0": {
+ "compile": {
+ "System.Threading.Tasks.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Tasks.Parallel/4.0.3.0": {
+ "compile": {
+ "System.Threading.Tasks.Parallel.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Thread/4.1.1.0": {
+ "compile": {
+ "System.Threading.Thread.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.ThreadPool/4.1.1.0": {
+ "compile": {
+ "System.Threading.ThreadPool.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Threading.Timer/4.1.1.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.1.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.1.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.0.0": {
+ "compile": {
+ "System.Windows.Extensions.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml/4.0.0.0": {
+ "compile": {
+ "System.Xml.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.Linq/4.0.0.0": {
+ "compile": {
+ "System.Xml.Linq.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.ReaderWriter.Reference/4.2.1.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.Reference/4.1.1.0": {
+ "compile": {
+ "System.Xml.XDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XmlDocument.Reference/4.1.1.0": {
+ "compile": {
+ "System.Xml.XmlDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XmlSerializer.Reference/4.1.1.0": {
+ "compile": {
+ "System.Xml.XmlSerializer.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XPath/4.1.1.0": {
+ "compile": {
+ "System.Xml.XPath.dll": {}
+ },
+ "compileOnly": true
+ },
+ "System.Xml.XPath.XDocument/4.1.1.0": {
+ "compile": {
+ "System.Xml.XPath.XDocument.dll": {}
+ },
+ "compileOnly": true
+ },
+ "WindowsBase/4.0.0.0": {
+ "compile": {
+ "WindowsBase.dll": {}
+ },
+ "compileOnly": true
+ }
+ }
+ },
+ "libraries": {
+ "simpleApi/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "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.Data.SqlClient/1.0.19249.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HpKyhtd6sVt6lJrF34XyKgve2o9gS9AMNn7SwpO/P3XZ3AZb67144SZZ/8b9JGwgsBxpXGomBUTKgofMfUAoRA==",
+ "path": "microsoft.data.sqlclient/1.0.19249.1",
+ "hashPath": "microsoft.data.sqlclient.1.0.19249.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdd0q99tTZb3y88TCrl6CDhh13yA8z5+iidXos9w65gEvuXMCfeP2XrMA76cWdRReQEUz23zJfQrxNJaF3hC0g==",
+ "path": "microsoft.entityframeworkcore/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fuGp121aptun1Ncoz1rhcxCCskYOJpVipoA10sR636sxOGBQBEgZtwoAHYlm66KXXdaTMDV/b6vmk2tIO80/CA==",
+ "path": "microsoft.entityframeworkcore.abstractions/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GxjR+HchS6C2Pdrq+w5GjAtLqfIP0Dj8hD2XsyDsdHtc7ZDwLVx/KOpRMwLov56Ztr9dPzbHjpNfGfZtSOKllg==",
+ "path": "microsoft.entityframeworkcore.analyzers/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.analyzers.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.InMemory/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iJoAabAAUr7tXRFDb1bKx4S311Kqzm+4EbLqZ18x54CnnkPmaFvrqDVfuxUvYid2Wyty3m8HIHeuTuI1Q+2KUg==",
+ "path": "microsoft.entityframeworkcore.inmemory/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.inmemory.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1+BXTwfzodjVJxJHwNfom5xtoR8OcwQ6pwEzannpnEsb7mh8ZpHU3wE4phtsHOc15h/FVog2C6bnKnNr7VGTnA==",
+ "path": "microsoft.entityframeworkcore.relational/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.relational.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z5yBGRbM/tfywVcFhHtA/EPL+ZJK+VhyxsnIQPSBV0lzmDKTx+mKSTnSpDCaDZwp4B1VZv//lws1+FaMoeu+xA==",
+ "path": "microsoft.entityframeworkcore.sqlserver/3.0.1",
+ "hashPath": "microsoft.entityframeworkcore.sqlserver.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qnTL9QPBOWTpO8ESX2pz3HE6n0u9P+KwH11XfHBwD9E/WgO7fzYU6fLJV4c6ASPw0s1JoCwS8XJUBqF1A0WRsQ==",
+ "path": "microsoft.extensions.caching.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.caching.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UOd/iCQuHdBeQsOnSob+yFxpVWn3JATh/Qrm3ZsO5FXuPFHr9MfQJU96yDahVSDhBPuV+oAqWeVj/QHMl9witw==",
+ "path": "microsoft.extensions.caching.memory/3.0.1",
+ "hashPath": "microsoft.extensions.caching.memory.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVnWU71HYeLcKBX58vQKx3aU3Vb9sQl+UGi7DiLwyyKBHHB+vXGQczg+JwPPvMNIu6bCyEzHGuJtkA4wUTraZA==",
+ "path": "microsoft.extensions.configuration/3.0.1",
+ "hashPath": "microsoft.extensions.configuration.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-R36lhvFgp56wE9YjjRyK2dgo3GHSf6CID2XZee8BLEpNXX8B9kjjKvp0UyDfOM3GWy1//s/fz1RkrG+pl2ycJQ==",
+ "path": "microsoft.extensions.configuration.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.configuration.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zZsgFWC0frrIJurPUQaLUHAFn45SwCAzwqrdxoYlNm0gS6bgAmzcTS5qIIox61783KUDco3eLfx4Bs+amU0J6Q==",
+ "path": "microsoft.extensions.configuration.binder/3.0.1",
+ "hashPath": "microsoft.extensions.configuration.binder.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LYe7cQ8bfWBzbBNZwXsCyvv8wxpiYO1ensbD/LbuUGRVlspSCpfWqUn0fglyZYVMH0wiWhLj1nFooAc8H/UoQA==",
+ "path": "microsoft.extensions.dependencyinjection/3.0.1",
+ "hashPath": "microsoft.extensions.dependencyinjection.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VnytRin0q78cwdhZZ5YAO+6cg0By0iJkk9IoK/vE1vI0qMM6oOjlXNlEFdDRtMXsAmxMPNaRcnpgEJCTe8l76Q==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CGYrO3D3fofdmAQ8JOWq0BcAUCAMYJcE/Paeen1IL3JwfnFmlCFcvnmi/fPOrtG4yrQXqa780RRP+BjLrs0TAQ==",
+ "path": "microsoft.extensions.logging/3.0.1",
+ "hashPath": "microsoft.extensions.logging.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hqEFHyp+IJleZ31SVRh/TYm1NKNqVFbxqJ9KN20GguYJ3V/cT4SftxuxTc71MI8cYl3myFAcrXyJf05hxJ3f4Q==",
+ "path": "microsoft.extensions.logging.abstractions/3.0.1",
+ "hashPath": "microsoft.extensions.logging.abstractions.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8pk8CWGBy/er6yTWcKRPcszWNX9rvLprlOIzK6sQV7EKjA0yzFtgO7kbQuGKzFlu3IusBMAoXNM/tiJLiVC3Qw==",
+ "path": "microsoft.extensions.options/3.0.1",
+ "hashPath": "microsoft.extensions.options.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/3.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9RIADJEXOk3R2rQunxzFxQEazaD3FNOqCNed+yVf/U0HDbbkQcwsWOHrju1YwdQwtewt/0WRUYxRDf3USxezdA==",
+ "path": "microsoft.extensions.primitives/3.0.1",
+ "hashPath": "microsoft.extensions.primitives.3.0.1.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/3.0.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==",
+ "path": "microsoft.identity.client/3.0.8",
+ "hashPath": "microsoft.identity.client.3.0.8.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
+ "path": "microsoft.netcore.platforms/2.0.0",
+ "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "path": "microsoft.win32.registry/4.5.0",
+ "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
+ "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "path": "system.collections.concurrent/4.3.0",
+ "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+aL946rTSJyo4PqstwsVZ5RBfaxfkIx+nTMfpmaxzorqgifRJwndBZhXPWNWGJpys7cQ1/vCvilYN9ugM05JFA==",
+ "path": "system.collections.immutable/1.6.0",
+ "hashPath": "system.collections.immutable.1.6.0.nupkg.sha512"
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "path": "system.collections.nongeneric/4.3.0",
+ "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
+ "path": "system.collections.specialized/4.3.0",
+ "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
+ "path": "system.componentmodel/4.3.0",
+ "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pOd+UhZ3X8xfwKDlgAzowUJNjp8VYVmOHZm++vCd0kq1HZ0zK3mNo2yRXjYgv7Ik/Xi43fmJfND2PLEsQSALCg==",
+ "path": "system.componentmodel.annotations/4.6.0",
+ "hashPath": "system.componentmodel.annotations.4.6.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
+ "path": "system.componentmodel.primitives/4.3.0",
+ "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
+ "path": "system.componentmodel.typeconverter/4.3.0",
+ "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
+ "path": "system.configuration.configurationmanager/4.5.0",
+ "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
+ "path": "system.diagnostics.diagnosticsource/4.6.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "path": "system.diagnostics.tools/4.3.0",
+ "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "path": "system.io.filesystem/4.3.0",
+ "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
+ "path": "system.net.nameresolution/4.3.0",
+ "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "path": "system.net.primitives/4.3.0",
+ "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Private.DataContractSerialization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
+ "path": "system.private.datacontractserialization/4.3.0",
+ "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Caching/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==",
+ "path": "system.runtime.caching/4.5.0",
+ "hashPath": "system.runtime.caching.4.5.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==",
+ "path": "system.runtime.compilerservices.unsafe/4.5.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Formatters/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
+ "path": "system.runtime.serialization.formatters/4.3.0",
+ "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Json/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
+ "path": "system.runtime.serialization.json/4.3.0",
+ "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
+ "path": "system.runtime.serialization.primitives/4.3.0",
+ "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "path": "system.security.accesscontrol/4.5.0",
+ "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
+ "path": "system.security.cryptography.protecteddata/4.5.0",
+ "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
+ "path": "system.security.permissions/4.5.0",
+ "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
+ "path": "system.security.principal.windows/4.5.0",
+ "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
+ },
+ "System.Security.SecureString/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
+ "path": "system.security.securestring/4.3.0",
+ "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==",
+ "path": "system.text.encoding.codepages/4.5.0",
+ "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "path": "system.text.regularexpressions/4.3.0",
+ "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "path": "system.xml.readerwriter/4.3.0",
+ "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "path": "system.xml.xdocument/4.3.0",
+ "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
+ "path": "system.xml.xmldocument/4.3.0",
+ "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
+ "path": "system.xml.xmlserializer/4.3.0",
+ "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Antiforgery/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Cookies/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authentication.OAuth/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Authorization.Policy/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Authorization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Forms/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Server/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Components.Web/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Connections.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.CookiePolicy/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cors/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cryptography.Internal/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.DataProtection.Extensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HostFiltering/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Html.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Connections.Common/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Connections/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Extensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Http.Features/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HttpOverrides/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.HttpsPolicy/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Identity/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Localization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Localization.Routing/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Metadata/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Cors/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Localization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.Razor/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.RazorPages/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.TagHelpers/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Razor/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCaching/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.ResponseCompression/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Rewrite/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Routing.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Routing/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.HttpSys/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.IIS/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.IISIntegration/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.Session/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Common/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.SignalR.Protocols.Json/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.StaticFiles/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.WebSockets/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.WebUtilities/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.CSharp.Reference/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Ini/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Json/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.KeyPerFile/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Configuration.Xml/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Diagnostics.HealthChecks/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Embedded/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Hosting/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Http/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Identity.Core/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Identity.Stores/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Localization/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Configuration/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Console/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.Debug/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.EventLog/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.EventSource/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Logging.TraceSource/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.ObjectPool/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.Options.DataAnnotations/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Extensions.WebEncoders/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.JSInterop/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Net.Http.Headers/3.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.VisualBasic.Core/10.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.VisualBasic/10.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Win32.Primitives/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.Win32.Registry.Reference/4.1.2.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.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Buffers/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Concurrent.Reference/4.0.14.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Immutable.Reference/1.2.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.NonGeneric.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Collections.Specialized.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Annotations.Reference/4.3.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.DataAnnotations/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Reference/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.EventBasedAsync/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.Primitives.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ComponentModel.TypeConverter.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Configuration/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Console/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Core/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data.Common/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data.DataSetExtensions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Data/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Contracts/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Debug.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.DiagnosticSource.Reference/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.EventLog/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.FileVersionInfo/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Process/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.StackTrace/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Tools.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.TraceSource/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Diagnostics.Tracing.Reference/4.2.1.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.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Dynamic.Runtime/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Calendars/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Globalization.Extensions.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression.Brotli/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Compression/4.2.1.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.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.DriveInfo/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.FileSystem.Watcher/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.IsolatedStorage/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.MemoryMappedFiles/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Pipelines/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.Pipes/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.IO.UnmanagedMemoryStream/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Expressions/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Parallel/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Linq.Queryable/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Memory/4.2.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Http/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.HttpListener/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Mail/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.NameResolution.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.NetworkInformation/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Ping/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Requests/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Security/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.ServicePoint/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.Sockets/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebClient/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebHeaderCollection/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebProxy/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebSockets.Client/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Net.WebSockets/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Numerics/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Numerics.Vectors/4.1.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ObjectModel/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.DispatchProxy/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.ILGeneration.Reference/4.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Emit.Lightweight.Reference/4.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Extensions.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Metadata/1.4.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Reflection.TypeExtensions.Reference/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.Reader/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.ResourceManager.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Resources.Writer/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.CompilerServices.Unsafe.Reference/4.0.5.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.CompilerServices.VisualC/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Extensions.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Handles.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.InteropServices.WindowsRuntime/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Intrinsics/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Loader/4.1.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Numerics/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Formatters.Reference/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Json.Reference/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Primitives.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Runtime.Serialization.Xml/4.1.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.AccessControl.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Claims/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Algorithms/4.3.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Cng/4.3.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Csp/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Encoding/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Primitives.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.X509Certificates/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Cryptography.Xml/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Permissions.Reference/4.0.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Principal/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.Principal.Windows.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Security.SecureString.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ServiceModel.Web/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.ServiceProcess/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.CodePages.Reference/4.1.2.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encoding.Extensions.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Encodings.Web/4.0.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.Json/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Text.RegularExpressions.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Channels/4.0.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Overlapped/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Dataflow/4.6.4.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Extensions.Reference/4.3.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Tasks.Parallel/4.0.3.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Thread/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.ThreadPool/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Threading.Timer/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Transactions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Transactions.Local/4.0.1.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.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Windows/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Windows.Extensions/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.Linq/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.ReaderWriter.Reference/4.2.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.Serialization/4.0.0.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XDocument.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XmlDocument.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XmlSerializer.Reference/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XPath/4.1.1.0": {
+ "type": "referenceassembly",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "System.Xml.XPath.XDocument/4.1.1.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/simpleApi/bin/Prod/simpleApi.dll b/simpleApi/bin/Prod/simpleApi.dll
new file mode 100644
index 0000000..20a6753
Binary files /dev/null and b/simpleApi/bin/Prod/simpleApi.dll differ
diff --git a/simpleApi/bin/Prod/simpleApi.exe b/simpleApi/bin/Prod/simpleApi.exe
new file mode 100644
index 0000000..1c1abca
Binary files /dev/null and b/simpleApi/bin/Prod/simpleApi.exe differ
diff --git a/simpleApi/bin/Prod/simpleApi.pdb b/simpleApi/bin/Prod/simpleApi.pdb
new file mode 100644
index 0000000..f9866cc
Binary files /dev/null and b/simpleApi/bin/Prod/simpleApi.pdb differ
diff --git a/simpleApi/bin/Prod/simpleApi.runtimeconfig.dev.json b/simpleApi/bin/Prod/simpleApi.runtimeconfig.dev.json
new file mode 100644
index 0000000..9512f18
--- /dev/null
+++ b/simpleApi/bin/Prod/simpleApi.runtimeconfig.dev.json
@@ -0,0 +1,10 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\MSI Infinite\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\MSI Infinite\\.nuget\\packages",
+ "C:\\Microsoft\\Xamarin\\NuGet",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/simpleApi/bin/Prod/simpleApi.runtimeconfig.json b/simpleApi/bin/Prod/simpleApi.runtimeconfig.json
new file mode 100644
index 0000000..6d96cb0
--- /dev/null
+++ b/simpleApi/bin/Prod/simpleApi.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.0",
+ "framework": {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "3.0.0"
+ },
+ "configProperties": {
+ "System.GC.Server": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/simpleApi/data/orderInfo.json b/simpleApi/data/orderInfo.json
new file mode 100644
index 0000000..e9a6a59
--- /dev/null
+++ b/simpleApi/data/orderInfo.json
@@ -0,0 +1,136 @@
+[
+ {
+ "OrderID": 36,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-12T05:10:00",
+ "Status": 10,
+ "Code": "R4C877FF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+
+ },
+ {
+ "OrderID": 37,
+ "ShipperID": 4,
+ "DriverID": 243,
+ "CompletionDte": "2018-02-15T05:10:00",
+ "Status": 10,
+ "Code": "R47077FF",
+ "MSA": 1,
+ "Duration": "43.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 38,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R6453FF",
+ "MSA": 2,
+ "Duration": "120.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 39,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C877DS",
+ "MSA": 4,
+ "Duration": "15.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 40,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C9999F",
+ "MSA": 1,
+ "Duration": "111.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 41,
+ "ShipperID": 67,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C87S32",
+ "MSA": 1,
+ "Duration": "54.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 42,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4C87123",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 43,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R42G77FF",
+ "MSA": 1,
+ "Duration": "40.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 44,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 10,
+ "Code": "R4002WFF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 2
+ },
+ {
+ "OrderID": 45,
+ "ShipperID": 4,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 20,
+ "Code": "R400KHFF",
+ "MSA": 3,
+ "Duration": "23.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 46,
+ "ShipperID": 24,
+ "DriverID": 35,
+ "CompletionDte": "2018-01-31T05:10:00",
+ "Status": 61,
+ "Code": "R4C437FF",
+ "MSA": 1,
+ "Duration": "92.00",
+ "OfferType": 1
+ },
+ {
+ "OrderID": 47,
+ "ShipperID": 121,
+ "DriverID": 35,
+ "CompletionDte": "2018-03-1T05:10:00",
+ "Status": 10,
+ "Code": "R422AQF",
+ "MSA": 1,
+ "Duration": "66.00",
+ "OfferType": 2
+ }
+
+]
\ No newline at end of file
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/project.razor.json b/simpleApi/obj/Debug/netcoreapp3.0/project.razor.json
new file mode 100644
index 0000000..b5fea14
--- /dev/null
+++ b/simpleApi/obj/Debug/netcoreapp3.0/project.razor.json
@@ -0,0 +1,14347 @@
+{
+ "FilePath": "c:\\Users\\MSI Infinite\\Documents\\projects\\simpleApi\\simpleApi.csproj",
+ "Configuration": {
+ "ConfigurationName": "MVC-3.0",
+ "LanguageVersion": "3.0",
+ "Extensions": [
+ {
+ "ExtensionName": "MVC-3.0"
+ }
+ ]
+ },
+ "ProjectWorkspaceState": {
+ "TagHelpers": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n Combines the behaviors of and ,\n so that it displays the page matching the specified route but only if the user\n is authorized to see it.\n \n Additionally, this component supplies a cascading parameter of type ,\n which makes the user's current authentication state available to descendants.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "AuthorizeRouteView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Authorizing",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Authorizing",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "NotAuthorized",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "NotAuthorized",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DefaultLayout",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "DefaultLayout"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "RouteData",
+ "TypeName": "Microsoft.AspNetCore.Components.RouteData",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteData"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n Combines the behaviors of and ,\n so that it displays the page matching the specified route but only if the user\n is authorized to see it.\n \n Additionally, this component supplies a cascading parameter of type ,\n which makes the user's current authentication state available to descendants.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Authorizing",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Authorizing",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "NotAuthorized",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "NotAuthorized",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DefaultLayout",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "DefaultLayout"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "RouteData",
+ "TypeName": "Microsoft.AspNetCore.Components.RouteData",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteData"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Authorizing",
+ "ParentTag": "AuthorizeRouteView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Authorizing",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NotAuthorized",
+ "ParentTag": "AuthorizeRouteView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NotAuthorized",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n Displays differing content depending on the user's authorization status.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "AuthorizeView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Policy",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Policy"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Roles",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Roles"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Authorized",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Authorized",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Authorizing",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Authorizing",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "NotAuthorized",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "NotAuthorized",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Resource",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Resource"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n Displays differing content depending on the user's authorization status.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Policy",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Policy"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Roles",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Roles"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Authorized",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Authorized",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Authorizing",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Authorizing",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "NotAuthorized",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "NotAuthorized",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Resource",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Resource"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Authorized",
+ "ParentTag": "AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Authorized",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Authorizing",
+ "ParentTag": "AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Authorizing",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NotAuthorized",
+ "ParentTag": "AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NotAuthorized",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": null,
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CascadingAuthenticationState",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": null,
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "CascadingAuthenticationState",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
+ "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.CascadingValue",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CascadingValue",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content to which the value should be provided.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "IsFixed",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "IsFixed"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The value to be provided.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.CascadingValue",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.CascadingValue",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The content to which the value should be provided.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "IsFixed",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "IsFixed"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The value to be provided.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n The content to which the value should be provided.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "CascadingValue",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n The content to which the value should be provided.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.CascadingValue",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.LayoutView",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LayoutView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the content to display.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Layout",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Layout"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.LayoutView",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.LayoutView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the content to display.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Layout",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Layout"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Gets or sets the content to display.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "LayoutView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Gets or sets the content to display.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.LayoutView",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.RouteView",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "RouteView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "DefaultLayout",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "DefaultLayout"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "RouteData",
+ "TypeName": "Microsoft.AspNetCore.Components.RouteData",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteData"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.RouteView",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.RouteView",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "DefaultLayout",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "DefaultLayout"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "RouteData",
+ "TypeName": "Microsoft.AspNetCore.Components.RouteData",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteData"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Routing.Router",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Router",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAssemblies",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAssemblies"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AppAssembly",
+ "TypeName": "System.Reflection.Assembly",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AppAssembly"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Found",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Found",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "NotFound",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "NotFound",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Routing.Router",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Routing.Router",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAssemblies",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAssemblies"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AppAssembly",
+ "TypeName": "System.Reflection.Assembly",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AppAssembly"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Found",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Found",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "NotFound",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "NotFound",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Found",
+ "ParentTag": "Router",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'Found' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Found",
+ "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'Found' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NotFound",
+ "ParentTag": "Router",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NotFound",
+ "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Forms",
+ "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "DataAnnotationsValidator",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Forms",
+ "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "EditForm",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "EditContext",
+ "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "EditContext"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Model",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Model"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnInvalidSubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "OnInvalidSubmit",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnSubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "OnSubmit",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnValidSubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "OnValidSubmit",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.EditForm",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "EditContext",
+ "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "EditContext"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Model",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Model"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnInvalidSubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "OnInvalidSubmit",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnSubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "OnSubmit",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnValidSubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "OnValidSubmit",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "EditForm",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.Forms.EditForm",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.ChildContentParameterName": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing values.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputCheckbox",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing values.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputDate",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ParsingErrorMessage",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ParsingErrorMessage"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ParsingErrorMessage",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ParsingErrorMessage"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputNumber",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ParsingErrorMessage",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ParsingErrorMessage"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ParsingErrorMessage",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ParsingErrorMessage"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n A dropdown selection component.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputSelect",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n A dropdown selection component.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "TValue",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "InputSelect",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing values.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputText",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n An input component for editing values.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n A multiline input component for editing values.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputTextArea",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n A multiline input component for editing values.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueChanged",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueChanged",
+ "Components.EventCallback": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ValueExpression",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValueExpression"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ValidationMessage",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "For",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TValue",
+ "TypeName": "System.Type",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "TValue",
+ "Components.TypeParameter": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "For",
+ "TypeName": "System.Linq.Expressions.Expression>",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For",
+ "Components.GenericTyped": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ValidationSummary",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "NavLink",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "ActiveClass",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ActiveClass"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Match",
+ "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch",
+ "IsEnum": true,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Match"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Routing.NavLink",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "ActiveClass",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ActiveClass"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AdditionalAttributes",
+ "TypeName": "System.Collections.Generic.IReadOnlyDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AdditionalAttributes"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Components.ChildContent": "True"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Match",
+ "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch",
+ "IsEnum": true,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Match"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "NavLink",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "Microsoft.AspNetCore.Components.Routing.NavLink",
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onabort",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onabort",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onabort",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onabort"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onactivate",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onactivate",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onactivate",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onactivate"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onbeforeactivate",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onbeforeactivate",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onbeforeactivate",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onbeforeactivate"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onbeforecopy",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onbeforecopy",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onbeforecopy",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onbeforecopy"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onbeforecut",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onbeforecut",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onbeforecut",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onbeforecut"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onbeforedeactivate",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onbeforedeactivate",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onbeforedeactivate",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onbeforedeactivate"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onbeforepaste",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onbeforepaste",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onbeforepaste",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onbeforepaste"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onblur",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onblur",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onblur",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onblur"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oncanplay",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oncanplay",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oncanplay",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oncanplay"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oncanplaythrough",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oncanplaythrough",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oncanplaythrough",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oncanplaythrough"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onchange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onchange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onchange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onchange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onclick",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onclick",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onclick",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onclick"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oncontextmenu",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oncontextmenu",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oncontextmenu",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oncontextmenu"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oncopy",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oncopy",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oncopy",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oncopy"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oncuechange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oncuechange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oncuechange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oncuechange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oncut",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oncut",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oncut",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oncut"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondblclick",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondblclick",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondblclick",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondblclick"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondeactivate",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondeactivate",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondeactivate",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondeactivate"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondrag",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondrag",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondrag",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondrag"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondragend",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondragend",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondragend",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondragend"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondragenter",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondragenter",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondragenter",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondragenter"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondragleave",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondragleave",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondragleave",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondragleave"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondragover",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondragover",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondragover",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondragover"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondragstart",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondragstart",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondragstart",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondragstart"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondrop",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondrop",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondrop",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondrop"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ondurationchange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ondurationchange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ondurationchange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ondurationchange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onemptied",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onemptied",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onemptied",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onemptied"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onended",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onended",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onended",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onended"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onerror",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onerror",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onerror",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onerror"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ErrorEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onfocus",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onfocus",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onfocus",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onfocus"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onfocusin",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onfocusin",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onfocusin",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onfocusin"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onfocusout",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onfocusout",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onfocusout",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onfocusout"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onfullscreenchange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onfullscreenchange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onfullscreenchange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onfullscreenchange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onfullscreenerror",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onfullscreenerror",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onfullscreenerror",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onfullscreenerror"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ongotpointercapture",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ongotpointercapture",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ongotpointercapture",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ongotpointercapture"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oninput",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oninput",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oninput",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oninput"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "oninvalid",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@oninvalid",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@oninvalid",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "oninvalid"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onkeydown",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onkeydown",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onkeydown",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onkeydown"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onkeypress",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onkeypress",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onkeypress",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onkeypress"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onkeyup",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onkeyup",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onkeyup",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onkeyup"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onload",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onload",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onload",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onload"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onloadeddata",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onloadeddata",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onloadeddata",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onloadeddata"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onloadedmetadata",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onloadedmetadata",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onloadedmetadata",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onloadedmetadata"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onloadend",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onloadend",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onloadend",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onloadend"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onloadstart",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onloadstart",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onloadstart",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onloadstart"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onlostpointercapture",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onlostpointercapture",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onlostpointercapture",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onlostpointercapture"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onmousedown",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onmousedown",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onmousedown",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onmousedown"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onmousemove",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onmousemove",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onmousemove",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onmousemove"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onmouseout",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onmouseout",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onmouseout",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onmouseout"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onmouseover",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onmouseover",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onmouseover",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onmouseover"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onmouseup",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onmouseup",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onmouseup",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onmouseup"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onmousewheel",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onmousewheel",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onmousewheel",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onmousewheel"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpaste",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpaste",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpaste",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpaste"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpause",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpause",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpause",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpause"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onplay",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onplay",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onplay",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onplay"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onplaying",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onplaying",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onplaying",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onplaying"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointercancel",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointercancel",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointercancel",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointercancel"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerdown",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerdown",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerdown",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerdown"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerenter",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerenter",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerenter",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerenter"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerleave",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerleave",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerleave",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerleave"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerlockchange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerlockchange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerlockchange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerlockchange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerlockerror",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerlockerror",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerlockerror",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerlockerror"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointermove",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointermove",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointermove",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointermove"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerout",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerout",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerout",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerout"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerover",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerover",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerover",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerover"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onpointerup",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onpointerup",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onpointerup",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onpointerup"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onprogress",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onprogress",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onprogress",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onprogress"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onratechange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onratechange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onratechange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onratechange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onreadystatechange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onreadystatechange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onreadystatechange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onreadystatechange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onreset",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onreset",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onreset",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onreset"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onscroll",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onscroll",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onscroll",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onscroll"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onseeked",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onseeked",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onseeked",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onseeked"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onseeking",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onseeking",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onseeking",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onseeking"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onselect",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onselect",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onselect",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onselect"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onselectionchange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onselectionchange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onselectionchange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onselectionchange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onselectstart",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onselectstart",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onselectstart",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onselectstart"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onstalled",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onstalled",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onstalled",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onstalled"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onstop",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onstop",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onstop",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onstop"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onsubmit",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onsubmit",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onsubmit",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onsubmit"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onsuspend",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onsuspend",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onsuspend",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onsuspend"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontimeout",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontimeout",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontimeout",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontimeout"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontimeupdate",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontimeupdate",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontimeupdate",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontimeupdate"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontouchcancel",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontouchcancel",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontouchcancel",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontouchcancel"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontouchend",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontouchend",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontouchend",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontouchend"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontouchenter",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontouchenter",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontouchenter",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontouchenter"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontouchleave",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontouchleave",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontouchleave",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontouchleave"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontouchmove",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontouchmove",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontouchmove",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontouchmove"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "ontouchstart",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ontouchstart",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@ontouchstart",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "ontouchstart"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onvolumechange",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onvolumechange",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onvolumechange",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onvolumechange"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onwaiting",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onwaiting",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onwaiting",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onwaiting"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "onwheel",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@onwheel",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.EventHandler",
+ "Name": "@onwheel",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Components.IsWeaklyTyped": "True",
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "onwheel"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers"
+ }
+ },
+ {
+ "Kind": "Components.Splat",
+ "Name": "Attributes",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Merges a collection of attributes into the current element or component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@attributes",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Splat",
+ "Name": "@attributes",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Merges a collection of attributes into the current element or component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Attributes",
+ "Common.DirectiveAttribute": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Splat",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor",
+ "Documentation": "\n \n implementation targeting elements containing attributes with URL expected values.\n \n Resolves URLs starting with '~/' (relative to the application's 'webroot' setting) that are not\n targeted by other s. Runs prior to other s to ensure\n application-relative URLs are resolved.\n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "itemid",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "href",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "applet",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "archive",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "area",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "href",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "audio",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "base",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "href",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "blockquote",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "cite",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "formaction",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "del",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "cite",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "embed",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "form",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "action",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "html",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "manifest",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "iframe",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "img",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "img",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "srcset",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "formaction",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "ins",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "cite",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "href",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "menuitem",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "icon",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "object",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "archive",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "object",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "data",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "q",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "cite",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "source",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "source",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "srcset",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "track",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "video",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "poster",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "video",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": "~/",
+ "ValueComparison": 2,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <a> elements.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-action",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-all-route-data",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-area",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-controller",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-fragment",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-host",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-page",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-page-handler",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-protocol",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-route",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "a",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-route-",
+ "NameComparison": 1,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-action",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the action method.\n \n \n Must be null if or is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Action"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-area",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the area.\n \n \n Must be null if is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Area"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-controller",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the controller.\n \n \n Must be null if or is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Controller"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fragment",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The URL fragment name.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Fragment"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-host",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The host name.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Host"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-page",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the page.\n \n \n Must be null if or , \n is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Page"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-page-handler",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the page handler.\n \n \n Must be null if or , or \n is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "PageHandler"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-protocol",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The protocol for the URL, such as \"http\" or \"https\".\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Protocol"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-route",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Name of the route.\n \n \n Must be null if one of , , \n or is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Route"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-all-route-data",
+ "TypeName": "System.Collections.Generic.IDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": "asp-route-",
+ "IndexerTypeName": "System.String",
+ "Documentation": "\n \n Additional parameters for the route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteValues"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <cache> elements.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "cache",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "priority",
+ "TypeName": "Microsoft.Extensions.Caching.Memory.CacheItemPriority?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the policy for the cache entry.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Priority"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "enabled",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Enabled"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "expires-after",
+ "TypeName": "System.TimeSpan?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ExpiresAfter"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "expires-on",
+ "TypeName": "System.DateTimeOffset?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ExpiresOn"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "expires-sliding",
+ "TypeName": "System.TimeSpan?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ExpiresSliding"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryBy"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-cookie",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByCookie"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-culture",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByCulture"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-header",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByHeader"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-query",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByQuery"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-route",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByRoute"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-user",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByUser"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <distributed-cache> elements.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "distributed-cache",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "name",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a unique name to discriminate cached entries.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "enabled",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Enabled"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "expires-after",
+ "TypeName": "System.TimeSpan?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ExpiresAfter"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "expires-on",
+ "TypeName": "System.DateTimeOffset?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ExpiresOn"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "expires-sliding",
+ "TypeName": "System.TimeSpan?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ExpiresSliding"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryBy"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-cookie",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByCookie"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-culture",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByCulture"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-header",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByHeader"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-query",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByQuery"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-route",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByRoute"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "vary-by-user",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "VaryByUser"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <environment> elements that conditionally renders\n content based on the current value of .\n If the environment is not listed in the specified or , \n or if it is in , the content will not be rendered.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "environment",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "exclude",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of environment names in which the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Exclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "include",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Include"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "names",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Names"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <button> elements and <input> elements with\n their type attribute set to image or submit.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-action",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-all-route-data",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-area",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-controller",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-fragment",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-page",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-page-handler",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-route",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "button",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-route-",
+ "NameComparison": 1,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-action",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-all-route-data",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-area",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-controller",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-fragment",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-page",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-page-handler",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-route",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "image",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-route-",
+ "NameComparison": 1,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-action",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-all-route-data",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-area",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-controller",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-fragment",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-page",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-page-handler",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-route",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "submit",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "asp-route-",
+ "NameComparison": 1,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-action",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the action method.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Action"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-area",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the area.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Area"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-controller",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the controller.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Controller"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fragment",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the URL fragment.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Fragment"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-page",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the page.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Page"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-page-handler",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the page handler.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "PageHandler"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-route",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Route"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-all-route-data",
+ "TypeName": "System.Collections.Generic.IDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": "asp-route-",
+ "IndexerTypeName": "System.String",
+ "Documentation": "\n \n Additional parameters for the route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteValues"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <form> elements.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "form",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-action",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the action method.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Action"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-antiforgery",
+ "TypeName": "System.Boolean?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Whether the antiforgery token should be generated.\n \n Defaults to false if user provides an action attribute\n or if the method is ; true otherwise.\n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Antiforgery"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-area",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the area.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Area"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-controller",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the controller.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Controller"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fragment",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets or sets the URL fragment.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Fragment"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-page",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the page.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Page"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-page-handler",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the page handler.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "PageHandler"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-route",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Route"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-all-route-data",
+ "TypeName": "System.Collections.Generic.IDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": "asp-route-",
+ "IndexerTypeName": "System.String",
+ "Documentation": "\n \n Additional parameters for the route.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "RouteValues"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <img> elements that supports file versioning.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "img",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-append-version",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "src",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-append-version",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Value indicating if file version should be appended to the src urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AppendVersion"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "src",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Source of the image.\n \n \n Passed through to the generated HTML in all cases.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Src"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <input> elements with an asp-for attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-for",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-for",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\n result. Sets the generated \"value\" attribute to that formatted string.\n \n \n Not used if the provided (see ) or calculated \"type\" attribute value is\n checkbox, password, or radio. That is, is used when calling\n .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "type",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The type of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the \n helper to call and the default value. A default is not calculated\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\n hidden, password, or radio.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "InputTypeName"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The value of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\n if is \"radio\". Must not be null in that case.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <label> elements with an asp-for attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "label",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-for",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-for",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <link> elements that supports fallback href paths.\n \n \n The tag helper won't process for cases with just the 'href' attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-append-version",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-href",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-href-exclude",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-href-include",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-test-class",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-test-property",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-test-value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-href-exclude",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "link",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "asp-href-include",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-append-version",
+ "TypeName": "System.Boolean?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Value indicating if file version should be appended to the href urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AppendVersion"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-href",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackHref"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-href-exclude",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackHrefExclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-href-include",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\n one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackHrefInclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-test-class",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The class name defined in the stylesheet to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackTestClass"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-test-property",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The CSS property name to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackTestProperty"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-test-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The CSS property value to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackTestValue"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "href",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Address of the linked resource.\n \n \n Passed through to the generated HTML in all cases.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Href"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-href-exclude",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "HrefExclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-href-include",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "HrefInclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-suppress-fallback-integrity",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "SuppressFallbackIntegrity"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <option> elements.\n \n \n This works in conjunction with . It reads elements\n content but does not modify that content. The only modification it makes is to add a selected attribute\n in some cases.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "option",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Specifies a value for the <option> element.\n \n \n Passed through to the generated HTML in all cases.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n Renders a partial view.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "partial",
+ "ParentTag": null,
+ "TagStructure": 2,
+ "Attributes": [
+ {
+ "Name": "name",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "fallback-name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n View to lookup if the view specified by cannot be located.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackName"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "for",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n An expression to be evaluated against the current model. Cannot be used together with .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "model",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The model to pass into the partial view. Cannot be used together with .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Model"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name or path of the partial view that is rendered to the response.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "optional",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n When optional, executing the tag helper will no-op if the view cannot be located. \n Otherwise will throw stating the view could not be found.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Optional"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "view-data",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": "view-data-",
+ "IndexerTypeName": "System.Object",
+ "Documentation": "\n \n A to pass into the partial view.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ViewData"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <script> elements that supports fallback src paths.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-append-version",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-src",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-src-exclude",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-src-include",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-fallback-test",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-src-exclude",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "script",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-src-include",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-append-version",
+ "TypeName": "System.Boolean?",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Value indicating if file version should be appended to src urls.\n \n \n A query string \"v\" with the encoded content of the file is added.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "AppendVersion"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-src",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The URL of a Script tag to fallback to in the case the primary one fails.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackSrc"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-src-exclude",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackSrcExclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-src-include",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\n primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackSrcInclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-fallback-test",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The script method defined in the primary script to use for the fallback test.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "FallbackTestExpression"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "src",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Address of the external script to use.\n \n \n Passed through to the generated HTML in all cases.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Src"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-src-exclude",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "SrcExclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-src-include",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "SrcInclude"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-suppress-fallback-integrity",
+ "TypeName": "System.Boolean",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "SuppressFallbackIntegrity"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <select> elements with asp-for and/or\n asp-items attribute(s).\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "select",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-for",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ },
+ {
+ "TagName": "select",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-items",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-for",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-items",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n A collection of objects used to populate the <select> element with\n <optgroup> and <option> elements.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Items"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting <textarea> elements with an asp-for attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "textarea",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-for",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-for",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For"
+ },
+ "BoundAttributeParameters": []
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "name",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Name"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-for\n attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "span",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-validation-for",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-validation-for",
+ "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n Gets an expression to be evaluated against the current model.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "For"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper"
+ }
+ },
+ {
+ "Kind": "ITagHelper",
+ "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper",
+ "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
+ "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-summary\n attribute.\n \n ",
+ "TagOutputHint": null,
+ "CaseSensitive": false,
+ "TagMatchingRules": [
+ {
+ "TagName": "div",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "asp-validation-summary",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {}
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "ITagHelper",
+ "Name": "asp-validation-summary",
+ "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary",
+ "IsEnum": true,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "\n \n If or , appends a validation\n summary. Otherwise (, the default), this tag helper does nothing.\n \n \n Thrown if setter is called with an undefined value e.g.\n (ValidationSummary)23.\n \n ",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "ValidationSummary"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "ITagHelper",
+ "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-",
+ "NameComparison": 1,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-...",
+ "TypeName": "System.Collections.Generic.Dictionary",
+ "IsEnum": false,
+ "IndexerNamePrefix": "@bind-",
+ "IndexerTypeName": "System.Object",
+ "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.Fallback": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Bind"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "select",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "False",
+ "Components.Bind.Format": null,
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "textarea",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "False",
+ "Components.Bind.Format": null,
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "checkbox",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_checked"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_checked"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-checked",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_checked"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "checked",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "False",
+ "Components.Bind.Format": null,
+ "Components.Bind.TypeAttribute": "checkbox",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind_value",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "date",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "@bind-value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-value",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind_value"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "True",
+ "Components.Bind.Format": "yyyy-MM-dd",
+ "Components.Bind.TypeAttribute": "date",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "date",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "True",
+ "Components.Bind.Format": "yyyy-MM-dd",
+ "Components.Bind.TypeAttribute": "date",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind_value",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "number",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "@bind-value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-value",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind_value"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "True",
+ "Components.Bind.Format": null,
+ "Components.Bind.TypeAttribute": "number",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "number",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "True",
+ "Components.Bind.Format": null,
+ "Components.Bind.TypeAttribute": "number",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "type",
+ "NameComparison": 0,
+ "Value": "text",
+ "ValueComparison": 1,
+ "Diagnostics": [],
+ "Metadata": {}
+ },
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "False",
+ "Components.Bind.Format": null,
+ "Components.Bind.TypeAttribute": "text",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind_value",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-value",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind_value"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "False",
+ "Components.Bind.Format": null,
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Bind",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "input",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Bind"
+ },
+ "BoundAttributeParameters": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "format",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "event",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Event_value"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "culture",
+ "TypeName": "System.Globalization.CultureInfo",
+ "IsEnum": false,
+ "Documentation": "Specifies the culture to use for conversions.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Culture"
+ }
+ }
+ ]
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "format-value",
+ "TypeName": "System.String",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Format_value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Common.ClassifyAttributesOnly": "True",
+ "Components.Bind.ValueAttribute": "value",
+ "Components.Bind.ChangeAttribute": "onchange",
+ "Components.Bind.IsInvariantCulture": "False",
+ "Components.Bind.Format": null,
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputCheckbox",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputDate",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputNumber",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputSelect",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputText",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "InputTextArea",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea"
+ }
+ },
+ {
+ "Kind": "Components.Bind",
+ "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "AssemblyName": "Microsoft.AspNetCore.Components.Web",
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@bind-Value",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Bind",
+ "Name": "@bind-Value",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True",
+ "Common.PropertyName": "Value"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Bind",
+ "Components.Bind.ValueAttribute": "Value",
+ "Components.Bind.ChangeAttribute": "ValueChanged",
+ "Components.Bind.ExpressionAttribute": "ValueExpression",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "Kind": "Components.Ref",
+ "Name": "Ref",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Populates the specified field or property with a reference to the element or component.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@ref",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Ref",
+ "Name": "@ref",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Populates the specified field or property with a reference to the element or component.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Ref",
+ "Common.DirectiveAttribute": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Ref",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Ref"
+ }
+ },
+ {
+ "Kind": "Components.Key",
+ "Name": "Key",
+ "AssemblyName": "Microsoft.AspNetCore.Components",
+ "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.",
+ "TagOutputHint": null,
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "*",
+ "ParentTag": null,
+ "TagStructure": 0,
+ "Attributes": [
+ {
+ "Name": "@key",
+ "NameComparison": 0,
+ "Value": null,
+ "ValueComparison": 0,
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.DirectiveAttribute": "True"
+ }
+ }
+ ],
+ "Diagnostics": []
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Key",
+ "Name": "@key",
+ "TypeName": "System.Object",
+ "IsEnum": false,
+ "IndexerNamePrefix": null,
+ "IndexerTypeName": null,
+ "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.",
+ "Diagnostics": [],
+ "Metadata": {
+ "Common.PropertyName": "Key",
+ "Common.DirectiveAttribute": "True"
+ },
+ "BoundAttributeParameters": []
+ }
+ ],
+ "AllowedChildTags": [],
+ "Diagnostics": [],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Components.IsSpecialKind": "Components.Key",
+ "Common.ClassifyAttributesOnly": "True",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Key"
+ }
+ }
+ ],
+ "CSharpLanguageVersion": 800
+ },
+ "RootNamespace": "simpleApi",
+ "Documents": [],
+ "SerializationFormat": "0.2"
+}
\ No newline at end of file
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.AssemblyInfo.cs b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.AssemblyInfo.cs
new file mode 100644
index 0000000..6ab3cbd
--- /dev/null
+++ b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.AssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// Generated by the MSBuild WriteCodeFragment class.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("simpleApi")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("simpleApi")]
+[assembly: System.Reflection.AssemblyTitleAttribute("simpleApi")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.AssemblyInfoInputs.cache b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..1f6484f
--- /dev/null
+++ b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+e9904d4961f58744ab55e94a7705c331667c0071
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.MvcApplicationPartsAssemblyInfo.cache b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.RazorTargetAssemblyInfo.cache b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.RazorTargetAssemblyInfo.cache
new file mode 100644
index 0000000..ca4c7f6
--- /dev/null
+++ b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.RazorTargetAssemblyInfo.cache
@@ -0,0 +1 @@
+2fd4266f07c0f6e1c308ab90f57252f89e70883b
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.assets.cache b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.assets.cache
new file mode 100644
index 0000000..d219d6e
Binary files /dev/null and b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.assets.cache differ
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csproj.CopyComplete b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csproj.FileListAbsolute.txt b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..54bf63d
--- /dev/null
+++ b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csproj.FileListAbsolute.txt
@@ -0,0 +1,139 @@
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\appsettings.Development.json
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\appsettings.json
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Properties\launchSettings.json
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.exe
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.deps.json
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.runtimeconfig.json
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.runtimeconfig.dev.json
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.InMemory.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.Relational.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.SqlServer.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Caching.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Caching.Memory.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Configuration.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Logging.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Options.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Primitives.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Identity.Client.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\System.Configuration.ConfigurationManager.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\System.Security.Cryptography.ProtectedData.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win-arm64\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win-x64\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win-x86\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.csprojAssemblyReference.cache
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\staticwebassets\simpleApi.StaticWebAssets.Manifest.cache
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\staticwebassets\simpleApi.StaticWebAssets.xml
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.AssemblyInfoInputs.cache
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.AssemblyInfo.cs
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.RazorTargetAssemblyInfo.cache
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.csproj.CopyComplete
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.dll
+C:\Users\MSI Infinite\Documents\projects\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleApi\bin\Debug\netcoreapp3.0\data\orderInfo.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\appsettings.Development.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\appsettings.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\data\orderInfo.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Properties\launchSettings.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.exe
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.deps.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.runtimeconfig.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.runtimeconfig.dev.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\simpleApi.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.InMemory.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.Relational.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.EntityFrameworkCore.SqlServer.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Caching.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Caching.Memory.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Configuration.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Logging.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Options.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Extensions.Primitives.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Microsoft.Identity.Client.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\System.Configuration.ConfigurationManager.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\System.Security.Cryptography.ProtectedData.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win-arm64\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win-x64\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win-x86\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.csprojAssemblyReference.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\staticwebassets\simpleApi.StaticWebAssets.Manifest.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\staticwebassets\simpleApi.StaticWebAssets.xml
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.AssemblyInfoInputs.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.AssemblyInfo.cs
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.RazorTargetAssemblyInfo.cache
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.csproj.CopyComplete
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\obj\Debug\netcoreapp3.0\simpleApi.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Debug\netcoreapp3.0\Newtonsoft.Json.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\appsettings.Development.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\appsettings.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\data\orderInfo.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Properties\launchSettings.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\simpleApi.exe
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\simpleApi.deps.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\simpleApi.runtimeconfig.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\simpleApi.runtimeconfig.dev.json
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\simpleApi.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\simpleApi.pdb
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.EntityFrameworkCore.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.EntityFrameworkCore.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.EntityFrameworkCore.InMemory.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.EntityFrameworkCore.Relational.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.EntityFrameworkCore.SqlServer.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Caching.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Caching.Memory.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Configuration.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Configuration.Binder.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Logging.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Options.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Extensions.Primitives.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Microsoft.Identity.Client.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\Newtonsoft.Json.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\System.Configuration.ConfigurationManager.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\System.Security.Cryptography.ProtectedData.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\win-arm64\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\win-x64\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\win-x86\native\sni.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll
+C:\Users\MSI Infinite\Documents\projects\simpleOrderSearch\simpleApi\bin\Prod\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csprojAssemblyReference.cache b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csprojAssemblyReference.cache
new file mode 100644
index 0000000..0685ccc
Binary files /dev/null and b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.csprojAssemblyReference.cache differ
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.dll b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.dll
new file mode 100644
index 0000000..20a6753
Binary files /dev/null and b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.dll differ
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.exe b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.exe
new file mode 100644
index 0000000..1c1abca
Binary files /dev/null and b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.exe differ
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.pdb b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.pdb
new file mode 100644
index 0000000..f9866cc
Binary files /dev/null and b/simpleApi/obj/Debug/netcoreapp3.0/simpleApi.pdb differ
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/staticwebassets/simpleApi.StaticWebAssets.Manifest.cache b/simpleApi/obj/Debug/netcoreapp3.0/staticwebassets/simpleApi.StaticWebAssets.Manifest.cache
new file mode 100644
index 0000000..e69de29
diff --git a/simpleApi/obj/Debug/netcoreapp3.0/staticwebassets/simpleApi.StaticWebAssets.xml b/simpleApi/obj/Debug/netcoreapp3.0/staticwebassets/simpleApi.StaticWebAssets.xml
new file mode 100644
index 0000000..7b21d22
--- /dev/null
+++ b/simpleApi/obj/Debug/netcoreapp3.0/staticwebassets/simpleApi.StaticWebAssets.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/simpleApi/obj/project.assets.json b/simpleApi/obj/project.assets.json
new file mode 100644
index 0000000..ab83fa5
--- /dev/null
+++ b/simpleApi/obj/project.assets.json
@@ -0,0 +1,4966 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v3.0": {
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/_._": {}
+ }
+ },
+ "Microsoft.Data.SqlClient/1.0.19249.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Identity.Client": "3.0.8",
+ "Microsoft.Win32.Registry": "4.5.0",
+ "System.Configuration.ConfigurationManager": "4.5.0",
+ "System.Runtime.Caching": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0",
+ "System.Text.Encoding.CodePages": "4.5.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ },
+ "compile": {
+ "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "3.0.1",
+ "Microsoft.EntityFrameworkCore.Analyzers": "3.0.1",
+ "Microsoft.Extensions.Caching.Memory": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection": "3.0.1",
+ "Microsoft.Extensions.Logging": "3.0.1",
+ "System.Collections.Immutable": "1.6.0",
+ "System.ComponentModel.Annotations": "4.6.0",
+ "System.Diagnostics.DiagnosticSource": "4.6.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/3.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/3.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/_._": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.InMemory/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "3.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "3.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Data.SqlClient": "1.0.19249.1",
+ "Microsoft.EntityFrameworkCore.Relational": "3.0.1"
+ },
+ "compile": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Options": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.0.1",
+ "Microsoft.Extensions.DependencyInjection": "3.0.1",
+ "Microsoft.Extensions.Logging.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Options": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.1",
+ "Microsoft.Extensions.Primitives": "3.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.Identity.Client/3.0.8": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "System.ComponentModel.TypeConverter": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Runtime.Serialization.Formatters": "4.3.0",
+ "System.Runtime.Serialization.Json": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Security.SecureString": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.Win32.Registry/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/sni.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ }
+ }
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-x64/native/sni.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ }
+ }
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-x86/native/sni.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.6.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.Specialized.dll": {}
+ }
+ },
+ "System.ComponentModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.6.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
+ }
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.ProtectedData": "4.5.0",
+ "System.Security.Permissions": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Private.DataContractSerialization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0",
+ "System.Xml.XmlSerializer": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Caching/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Configuration.ConfigurationManager": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.Caching.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/_._": {}
+ }
+ },
+ "System.Runtime.Serialization.Formatters/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Json/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Private.DataContractSerialization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Security.Principal.Windows": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Permissions/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Permissions.dll": {}
+ }
+ },
+ "System.Security.Principal.Windows/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.SecureString/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "2.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.XDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XmlDocument": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "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.Data.SqlClient/1.0.19249.1": {
+ "sha512": "HpKyhtd6sVt6lJrF34XyKgve2o9gS9AMNn7SwpO/P3XZ3AZb67144SZZ/8b9JGwgsBxpXGomBUTKgofMfUAoRA==",
+ "type": "package",
+ "path": "microsoft.data.sqlclient/1.0.19249.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net46/Microsoft.Data.SqlClient.dll",
+ "lib/net46/Microsoft.Data.SqlClient.pdb",
+ "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
+ "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
+ "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
+ "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
+ "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
+ "microsoft.data.sqlclient.1.0.19249.1.nupkg.sha512",
+ "microsoft.data.sqlclient.nuspec",
+ "ref/net46/Microsoft.Data.SqlClient.dll",
+ "ref/net46/Microsoft.Data.SqlClient.pdb",
+ "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
+ "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
+ "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
+ "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
+ "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
+ "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
+ "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore/3.0.1": {
+ "sha512": "bdd0q99tTZb3y88TCrl6CDhh13yA8z5+iidXos9w65gEvuXMCfeP2XrMA76cWdRReQEUz23zJfQrxNJaF3hC0g==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
+ "microsoft.entityframeworkcore.3.0.1.nupkg.sha512",
+ "microsoft.entityframeworkcore.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/3.0.1": {
+ "sha512": "fuGp121aptun1Ncoz1rhcxCCskYOJpVipoA10sR636sxOGBQBEgZtwoAHYlm66KXXdaTMDV/b6vmk2tIO80/CA==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.abstractions/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
+ "microsoft.entityframeworkcore.abstractions.3.0.1.nupkg.sha512",
+ "microsoft.entityframeworkcore.abstractions.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/3.0.1": {
+ "sha512": "GxjR+HchS6C2Pdrq+w5GjAtLqfIP0Dj8hD2XsyDsdHtc7ZDwLVx/KOpRMwLov56Ztr9dPzbHjpNfGfZtSOKllg==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.analyzers/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
+ "lib/netstandard1.3/_._",
+ "microsoft.entityframeworkcore.analyzers.3.0.1.nupkg.sha512",
+ "microsoft.entityframeworkcore.analyzers.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.InMemory/3.0.1": {
+ "sha512": "iJoAabAAUr7tXRFDb1bKx4S311Kqzm+4EbLqZ18x54CnnkPmaFvrqDVfuxUvYid2Wyty3m8HIHeuTuI1Q+2KUg==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.inmemory/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.dll",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.InMemory.xml",
+ "microsoft.entityframeworkcore.inmemory.3.0.1.nupkg.sha512",
+ "microsoft.entityframeworkcore.inmemory.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Relational/3.0.1": {
+ "sha512": "1+BXTwfzodjVJxJHwNfom5xtoR8OcwQ6pwEzannpnEsb7mh8ZpHU3wE4phtsHOc15h/FVog2C6bnKnNr7VGTnA==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.relational/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
+ "microsoft.entityframeworkcore.relational.3.0.1.nupkg.sha512",
+ "microsoft.entityframeworkcore.relational.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer/3.0.1": {
+ "sha512": "z5yBGRbM/tfywVcFhHtA/EPL+ZJK+VhyxsnIQPSBV0lzmDKTx+mKSTnSpDCaDZwp4B1VZv//lws1+FaMoeu+xA==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.sqlserver/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll",
+ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.xml",
+ "microsoft.entityframeworkcore.sqlserver.3.0.1.nupkg.sha512",
+ "microsoft.entityframeworkcore.sqlserver.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.0.1": {
+ "sha512": "qnTL9QPBOWTpO8ESX2pz3HE6n0u9P+KwH11XfHBwD9E/WgO7fzYU6fLJV4c6ASPw0s1JoCwS8XJUBqF1A0WRsQ==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.abstractions/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/netcoreapp3.0/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.0.1.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Memory/3.0.1": {
+ "sha512": "UOd/iCQuHdBeQsOnSob+yFxpVWn3JATh/Qrm3ZsO5FXuPFHr9MfQJU96yDahVSDhBPuV+oAqWeVj/QHMl9witw==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.memory/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/netcoreapp3.0/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.0.1.nupkg.sha512",
+ "microsoft.extensions.caching.memory.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/3.0.1": {
+ "sha512": "YVnWU71HYeLcKBX58vQKx3aU3Vb9sQl+UGi7DiLwyyKBHHB+vXGQczg+JwPPvMNIu6bCyEzHGuJtkA4wUTraZA==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.3.0.1.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.0.1": {
+ "sha512": "R36lhvFgp56wE9YjjRyK2dgo3GHSf6CID2XZee8BLEpNXX8B9kjjKvp0UyDfOM3GWy1//s/fz1RkrG+pl2ycJQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netcoreapp3.0/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.0.1.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.0.1": {
+ "sha512": "zZsgFWC0frrIJurPUQaLUHAFn45SwCAzwqrdxoYlNm0gS6bgAmzcTS5qIIox61783KUDco3eLfx4Bs+amU0J6Q==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netcoreapp3.0/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.0.1.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/3.0.1": {
+ "sha512": "LYe7cQ8bfWBzbBNZwXsCyvv8wxpiYO1ensbD/LbuUGRVlspSCpfWqUn0fglyZYVMH0wiWhLj1nFooAc8H/UoQA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.3.0.1.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.0.1": {
+ "sha512": "VnytRin0q78cwdhZZ5YAO+6cg0By0iJkk9IoK/vE1vI0qMM6oOjlXNlEFdDRtMXsAmxMPNaRcnpgEJCTe8l76Q==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.3.0.1.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Logging/3.0.1": {
+ "sha512": "CGYrO3D3fofdmAQ8JOWq0BcAUCAMYJcE/Paeen1IL3JwfnFmlCFcvnmi/fPOrtG4yrQXqa780RRP+BjLrs0TAQ==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.3.0.1.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.0.1": {
+ "sha512": "hqEFHyp+IJleZ31SVRh/TYm1NKNqVFbxqJ9KN20GguYJ3V/cT4SftxuxTc71MI8cYl3myFAcrXyJf05hxJ3f4Q==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.3.0.1.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Options/3.0.1": {
+ "sha512": "8pk8CWGBy/er6yTWcKRPcszWNX9rvLprlOIzK6sQV7EKjA0yzFtgO7kbQuGKzFlu3IusBMAoXNM/tiJLiVC3Qw==",
+ "type": "package",
+ "path": "microsoft.extensions.options/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.3.0.1.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/3.0.1": {
+ "sha512": "9RIADJEXOk3R2rQunxzFxQEazaD3FNOqCNed+yVf/U0HDbbkQcwsWOHrju1YwdQwtewt/0WRUYxRDf3USxezdA==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/3.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.3.0.1.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Microsoft.Identity.Client/3.0.8": {
+ "sha512": "9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==",
+ "type": "package",
+ "path": "microsoft.identity.client/3.0.8",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/monoandroid90/Microsoft.Identity.Client.dll",
+ "lib/monoandroid90/Microsoft.Identity.Client.xml",
+ "lib/net45/Microsoft.Identity.Client.dll",
+ "lib/net45/Microsoft.Identity.Client.xml",
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
+ "lib/netstandard1.3/Microsoft.Identity.Client.dll",
+ "lib/netstandard1.3/Microsoft.Identity.Client.xml",
+ "lib/uap10.0/Microsoft.Identity.Client.dll",
+ "lib/uap10.0/Microsoft.Identity.Client.pri",
+ "lib/uap10.0/Microsoft.Identity.Client.xml",
+ "lib/xamarinios10/Microsoft.Identity.Client.dll",
+ "lib/xamarinios10/Microsoft.Identity.Client.xml",
+ "lib/xamarinmac20/Microsoft.Identity.Client.dll",
+ "lib/xamarinmac20/Microsoft.Identity.Client.xml",
+ "microsoft.identity.client.3.0.8.nupkg.sha512",
+ "microsoft.identity.client.nuspec",
+ "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
+ "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
+ "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
+ "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
+ "ref/net45/Microsoft.Identity.Client.dll",
+ "ref/net45/Microsoft.Identity.Client.xml",
+ "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
+ "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
+ "ref/netstandard1.3/Microsoft.Identity.Client.dll",
+ "ref/netstandard1.3/Microsoft.Identity.Client.xml",
+ "ref/uap10.0/Microsoft.Identity.Client.dll",
+ "ref/uap10.0/Microsoft.Identity.Client.xml",
+ "ref/xamarinmac20/Microsoft.Identity.Client.dll",
+ "ref/xamarinmac20/Microsoft.Identity.Client.xml"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/2.0.0": {
+ "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.Win32.Registry/4.5.0": {
+ "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
+ "type": "package",
+ "path": "microsoft.win32.registry/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.dll",
+ "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "microsoft.win32.registry.4.5.0.nupkg.sha512",
+ "microsoft.win32.registry.nuspec",
+ "ref/net46/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.system/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.4.3.0.nupkg.sha512",
+ "runtime.native.system.nuspec"
+ ]
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
+ "type": "package",
+ "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.native.system.data.sqlclient.sni.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "type": "package",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
+ "runtimes/win-arm64/native/sni.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "type": "package",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
+ "runtimes/win-x64/native/sni.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "type": "package",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
+ "runtimes/win-x86/native/sni.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "type": "package",
+ "path": "system.collections.concurrent/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.Concurrent.dll",
+ "lib/netstandard1.3/System.Collections.Concurrent.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.Concurrent.dll",
+ "ref/netcore50/System.Collections.Concurrent.xml",
+ "ref/netcore50/de/System.Collections.Concurrent.xml",
+ "ref/netcore50/es/System.Collections.Concurrent.xml",
+ "ref/netcore50/fr/System.Collections.Concurrent.xml",
+ "ref/netcore50/it/System.Collections.Concurrent.xml",
+ "ref/netcore50/ja/System.Collections.Concurrent.xml",
+ "ref/netcore50/ko/System.Collections.Concurrent.xml",
+ "ref/netcore50/ru/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/System.Collections.Concurrent.dll",
+ "ref/netstandard1.1/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/System.Collections.Concurrent.dll",
+ "ref/netstandard1.3/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.concurrent.4.3.0.nupkg.sha512",
+ "system.collections.concurrent.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.6.0": {
+ "sha512": "+aL946rTSJyo4PqstwsVZ5RBfaxfkIx+nTMfpmaxzorqgifRJwndBZhXPWNWGJpys7cQ1/vCvilYN9ugM05JFA==",
+ "type": "package",
+ "path": "system.collections.immutable/1.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.6.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
+ "type": "package",
+ "path": "system.collections.nongeneric/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/netstandard1.3/System.Collections.NonGeneric.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.dll",
+ "ref/netstandard1.3/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.nongeneric.4.3.0.nupkg.sha512",
+ "system.collections.nongeneric.nuspec"
+ ]
+ },
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
+ "type": "package",
+ "path": "system.collections.specialized/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.Specialized.dll",
+ "lib/netstandard1.3/System.Collections.Specialized.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.Specialized.dll",
+ "ref/netstandard1.3/System.Collections.Specialized.dll",
+ "ref/netstandard1.3/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/de/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/es/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/it/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.specialized.4.3.0.nupkg.sha512",
+ "system.collections.specialized.nuspec"
+ ]
+ },
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
+ "type": "package",
+ "path": "system.componentmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ComponentModel.dll",
+ "lib/netstandard1.3/System.ComponentModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ComponentModel.dll",
+ "ref/netcore50/System.ComponentModel.xml",
+ "ref/netcore50/de/System.ComponentModel.xml",
+ "ref/netcore50/es/System.ComponentModel.xml",
+ "ref/netcore50/fr/System.ComponentModel.xml",
+ "ref/netcore50/it/System.ComponentModel.xml",
+ "ref/netcore50/ja/System.ComponentModel.xml",
+ "ref/netcore50/ko/System.ComponentModel.xml",
+ "ref/netcore50/ru/System.ComponentModel.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.xml",
+ "ref/netstandard1.0/System.ComponentModel.dll",
+ "ref/netstandard1.0/System.ComponentModel.xml",
+ "ref/netstandard1.0/de/System.ComponentModel.xml",
+ "ref/netstandard1.0/es/System.ComponentModel.xml",
+ "ref/netstandard1.0/fr/System.ComponentModel.xml",
+ "ref/netstandard1.0/it/System.ComponentModel.xml",
+ "ref/netstandard1.0/ja/System.ComponentModel.xml",
+ "ref/netstandard1.0/ko/System.ComponentModel.xml",
+ "ref/netstandard1.0/ru/System.ComponentModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.4.3.0.nupkg.sha512",
+ "system.componentmodel.nuspec"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.6.0": {
+ "sha512": "pOd+UhZ3X8xfwKDlgAzowUJNjp8VYVmOHZm++vCd0kq1HZ0zK3mNo2yRXjYgv7Ik/Xi43fmJfND2PLEsQSALCg==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.6.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.6.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
+ "type": "package",
+ "path": "system.componentmodel.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.ComponentModel.Primitives.dll",
+ "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.ComponentModel.Primitives.dll",
+ "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
+ "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.primitives.4.3.0.nupkg.sha512",
+ "system.componentmodel.primitives.nuspec"
+ ]
+ },
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
+ "type": "package",
+ "path": "system.componentmodel.typeconverter/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/System.ComponentModel.TypeConverter.dll",
+ "lib/net462/System.ComponentModel.TypeConverter.dll",
+ "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
+ "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.ComponentModel.TypeConverter.dll",
+ "ref/net462/System.ComponentModel.TypeConverter.dll",
+ "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
+ "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
+ "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
+ "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
+ "system.componentmodel.typeconverter.nuspec"
+ ]
+ },
+ "System.Configuration.ConfigurationManager/4.5.0": {
+ "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "ref/net461/System.Configuration.ConfigurationManager.dll",
+ "ref/net461/System.Configuration.ConfigurationManager.xml",
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/4.6.0": {
+ "sha512": "mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/4.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "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.6.0.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "type": "package",
+ "path": "system.diagnostics.tools/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
+ "ref/netcore50/System.Diagnostics.Tools.xml",
+ "ref/netcore50/de/System.Diagnostics.Tools.xml",
+ "ref/netcore50/es/System.Diagnostics.Tools.xml",
+ "ref/netcore50/fr/System.Diagnostics.Tools.xml",
+ "ref/netcore50/it/System.Diagnostics.Tools.xml",
+ "ref/netcore50/ja/System.Diagnostics.Tools.xml",
+ "ref/netcore50/ko/System.Diagnostics.Tools.xml",
+ "ref/netcore50/ru/System.Diagnostics.Tools.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll",
+ "ref/netstandard1.0/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.tools.4.3.0.nupkg.sha512",
+ "system.diagnostics.tools.nuspec"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "type": "package",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Diagnostics.Tracing.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Diagnostics.Tracing.dll",
+ "ref/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/netcore50/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/de/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/es/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/it/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.tracing.4.3.0.nupkg.sha512",
+ "system.diagnostics.tracing.nuspec"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "type": "package",
+ "path": "system.globalization.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "system.globalization.extensions.4.3.0.nupkg.sha512",
+ "system.globalization.extensions.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "type": "package",
+ "path": "system.io.filesystem/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.4.3.0.nupkg.sha512",
+ "system.io.filesystem.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "type": "package",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "system.io.filesystem.primitives.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
+ "type": "package",
+ "path": "system.net.nameresolution/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Net.NameResolution.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Net.NameResolution.dll",
+ "ref/netstandard1.3/System.Net.NameResolution.dll",
+ "ref/netstandard1.3/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/de/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/es/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/it/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
+ "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
+ "runtimes/win/lib/net46/System.Net.NameResolution.dll",
+ "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
+ "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
+ "system.net.nameresolution.4.3.0.nupkg.sha512",
+ "system.net.nameresolution.nuspec"
+ ]
+ },
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "type": "package",
+ "path": "system.net.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Net.Primitives.dll",
+ "ref/netcore50/System.Net.Primitives.xml",
+ "ref/netcore50/de/System.Net.Primitives.xml",
+ "ref/netcore50/es/System.Net.Primitives.xml",
+ "ref/netcore50/fr/System.Net.Primitives.xml",
+ "ref/netcore50/it/System.Net.Primitives.xml",
+ "ref/netcore50/ja/System.Net.Primitives.xml",
+ "ref/netcore50/ko/System.Net.Primitives.xml",
+ "ref/netcore50/ru/System.Net.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Net.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.0/System.Net.Primitives.dll",
+ "ref/netstandard1.0/System.Net.Primitives.xml",
+ "ref/netstandard1.0/de/System.Net.Primitives.xml",
+ "ref/netstandard1.0/es/System.Net.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.0/it/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.1/System.Net.Primitives.dll",
+ "ref/netstandard1.1/System.Net.Primitives.xml",
+ "ref/netstandard1.1/de/System.Net.Primitives.xml",
+ "ref/netstandard1.1/es/System.Net.Primitives.xml",
+ "ref/netstandard1.1/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.1/it/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.3/System.Net.Primitives.dll",
+ "ref/netstandard1.3/System.Net.Primitives.xml",
+ "ref/netstandard1.3/de/System.Net.Primitives.xml",
+ "ref/netstandard1.3/es/System.Net.Primitives.xml",
+ "ref/netstandard1.3/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.3/it/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.net.primitives.4.3.0.nupkg.sha512",
+ "system.net.primitives.nuspec"
+ ]
+ },
+ "System.Private.DataContractSerialization/4.3.0": {
+ "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
+ "type": "package",
+ "path": "system.private.datacontractserialization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
+ "ref/netstandard/_._",
+ "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
+ "system.private.datacontractserialization.4.3.0.nupkg.sha512",
+ "system.private.datacontractserialization.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Caching/4.5.0": {
+ "sha512": "95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==",
+ "type": "package",
+ "path": "system.runtime.caching/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netstandard2.0/System.Runtime.Caching.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard2.0/System.Runtime.Caching.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll",
+ "runtimes/win/lib/net45/_._",
+ "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll",
+ "system.runtime.caching.4.5.0.nupkg.sha512",
+ "system.runtime.caching.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.5.0": {
+ "sha512": "YrzNWduCDHhUaSRBxHxL11UkM2fD6y8hITHis4/LbQZ6vj3vdRjoH3IoPWWC9uDXK2wHIqn+b5gv1Np/VKyM1g==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/uap10.0.16300/_._",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/uap10.0.16300/_._",
+ "system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "type": "package",
+ "path": "system.runtime.handles/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/netstandard1.3/System.Runtime.Handles.dll",
+ "ref/netstandard1.3/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/de/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/es/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/it/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.handles.4.3.0.nupkg.sha512",
+ "system.runtime.handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "type": "package",
+ "path": "system.runtime.interopservices/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.2/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.3/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.5/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Formatters/4.3.0": {
+ "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
+ "type": "package",
+ "path": "system.runtime.serialization.formatters/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Runtime.Serialization.Formatters.dll",
+ "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Runtime.Serialization.Formatters.dll",
+ "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
+ "system.runtime.serialization.formatters.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Json/4.3.0": {
+ "sha512": "CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
+ "type": "package",
+ "path": "system.runtime.serialization.json/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.Serialization.Json.dll",
+ "lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Runtime.Serialization.Json.dll",
+ "ref/netcore50/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
+ "ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.serialization.json.4.3.0.nupkg.sha512",
+ "system.runtime.serialization.json.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
+ "type": "package",
+ "path": "system.runtime.serialization.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Runtime.Serialization.Primitives.dll",
+ "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
+ "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Runtime.Serialization.Primitives.dll",
+ "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
+ "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
+ "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
+ "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
+ "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
+ "system.runtime.serialization.primitives.nuspec"
+ ]
+ },
+ "System.Security.AccessControl/4.5.0": {
+ "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
+ "type": "package",
+ "path": "system.security.accesscontrol/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/netstandard1.3/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/System.Security.AccessControl.dll",
+ "ref/netstandard1.3/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/de/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/es/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/it/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
+ "ref/netstandard2.0/System.Security.AccessControl.dll",
+ "ref/netstandard2.0/System.Security.AccessControl.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/win/lib/net46/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.accesscontrol.4.5.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "type": "package",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Primitives.dll",
+ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Primitives.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
+ "system.security.cryptography.primitives.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.ProtectedData/4.5.0": {
+ "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.ProtectedData.dll",
+ "ref/net461/System.Security.Cryptography.ProtectedData.dll",
+ "ref/net461/System.Security.Cryptography.ProtectedData.xml",
+ "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Permissions/4.5.0": {
+ "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
+ "type": "package",
+ "path": "system.security.permissions/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Security.Permissions.dll",
+ "lib/netstandard2.0/System.Security.Permissions.dll",
+ "ref/net461/System.Security.Permissions.dll",
+ "ref/net461/System.Security.Permissions.xml",
+ "ref/netstandard2.0/System.Security.Permissions.dll",
+ "ref/netstandard2.0/System.Security.Permissions.xml",
+ "system.security.permissions.4.5.0.nupkg.sha512",
+ "system.security.permissions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.Principal.Windows/4.5.0": {
+ "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
+ "type": "package",
+ "path": "system.security.principal.windows/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.dll",
+ "lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/System.Security.Principal.Windows.dll",
+ "ref/netstandard1.3/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
+ "ref/netstandard2.0/System.Security.Principal.Windows.dll",
+ "ref/netstandard2.0/System.Security.Principal.Windows.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.principal.windows.4.5.0.nupkg.sha512",
+ "system.security.principal.windows.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Security.SecureString/4.3.0": {
+ "sha512": "PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
+ "type": "package",
+ "path": "system.security.securestring/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.SecureString.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.SecureString.dll",
+ "ref/netstandard1.3/System.Security.SecureString.dll",
+ "ref/netstandard1.3/System.Security.SecureString.xml",
+ "ref/netstandard1.3/de/System.Security.SecureString.xml",
+ "ref/netstandard1.3/es/System.Security.SecureString.xml",
+ "ref/netstandard1.3/fr/System.Security.SecureString.xml",
+ "ref/netstandard1.3/it/System.Security.SecureString.xml",
+ "ref/netstandard1.3/ja/System.Security.SecureString.xml",
+ "ref/netstandard1.3/ko/System.Security.SecureString.xml",
+ "ref/netstandard1.3/ru/System.Security.SecureString.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.SecureString.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.SecureString.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll",
+ "runtimes/win/lib/net46/System.Security.SecureString.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll",
+ "system.security.securestring.4.3.0.nupkg.sha512",
+ "system.security.securestring.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding.CodePages/4.5.0": {
+ "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==",
+ "type": "package",
+ "path": "system.text.encoding.codepages/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Text.Encoding.CodePages.dll",
+ "lib/net461/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
+ "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
+ "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
+ "system.text.encoding.codepages.4.5.0.nupkg.sha512",
+ "system.text.encoding.codepages.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "type": "package",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.Extensions.dll",
+ "ref/netcore50/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.extensions.4.3.0.nupkg.sha512",
+ "system.text.encoding.extensions.nuspec"
+ ]
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "type": "package",
+ "path": "system.text.regularexpressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Text.RegularExpressions.dll",
+ "lib/netcore50/System.Text.RegularExpressions.dll",
+ "lib/netstandard1.6/System.Text.RegularExpressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.xml",
+ "ref/netcore50/de/System.Text.RegularExpressions.xml",
+ "ref/netcore50/es/System.Text.RegularExpressions.xml",
+ "ref/netcore50/fr/System.Text.RegularExpressions.xml",
+ "ref/netcore50/it/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ja/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ko/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ru/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.0/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.0/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.3/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/System.Text.RegularExpressions.dll",
+ "ref/netstandard1.6/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.regularexpressions.4.3.0.nupkg.sha512",
+ "system.text.regularexpressions.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "type": "package",
+ "path": "system.xml.readerwriter/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
+ "lib/netcore50/System.Xml.ReaderWriter.dll",
+ "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
+ "ref/netcore50/System.Xml.ReaderWriter.dll",
+ "ref/netcore50/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/de/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/es/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/it/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
+ "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
+ "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.xml.readerwriter.4.3.0.nupkg.sha512",
+ "system.xml.readerwriter.nuspec"
+ ]
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "type": "package",
+ "path": "system.xml.xdocument/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Xml.XDocument.dll",
+ "lib/netstandard1.3/System.Xml.XDocument.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Xml.XDocument.dll",
+ "ref/netcore50/System.Xml.XDocument.xml",
+ "ref/netcore50/de/System.Xml.XDocument.xml",
+ "ref/netcore50/es/System.Xml.XDocument.xml",
+ "ref/netcore50/fr/System.Xml.XDocument.xml",
+ "ref/netcore50/it/System.Xml.XDocument.xml",
+ "ref/netcore50/ja/System.Xml.XDocument.xml",
+ "ref/netcore50/ko/System.Xml.XDocument.xml",
+ "ref/netcore50/ru/System.Xml.XDocument.xml",
+ "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
+ "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/System.Xml.XDocument.dll",
+ "ref/netstandard1.0/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/de/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/es/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/it/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
+ "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/System.Xml.XDocument.dll",
+ "ref/netstandard1.3/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/de/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/es/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/it/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.xml.xdocument.4.3.0.nupkg.sha512",
+ "system.xml.xdocument.nuspec"
+ ]
+ },
+ "System.Xml.XmlDocument/4.3.0": {
+ "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
+ "type": "package",
+ "path": "system.xml.xmldocument/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Xml.XmlDocument.dll",
+ "lib/netstandard1.3/System.Xml.XmlDocument.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Xml.XmlDocument.dll",
+ "ref/netstandard1.3/System.Xml.XmlDocument.dll",
+ "ref/netstandard1.3/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.xml.xmldocument.4.3.0.nupkg.sha512",
+ "system.xml.xmldocument.nuspec"
+ ]
+ },
+ "System.Xml.XmlSerializer/4.3.0": {
+ "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
+ "type": "package",
+ "path": "system.xml.xmlserializer/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Xml.XmlSerializer.dll",
+ "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Xml.XmlSerializer.dll",
+ "ref/netcore50/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/de/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/es/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/it/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
+ "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
+ "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
+ "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
+ "system.xml.xmlserializer.4.3.0.nupkg.sha512",
+ "system.xml.xmlserializer.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v3.0": [
+ "Microsoft.EntityFrameworkCore.InMemory >= 3.0.1",
+ "Microsoft.EntityFrameworkCore.SqlServer >= 3.0.1",
+ "Newtonsoft.Json >= 12.0.3"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\MSI Infinite\\.nuget\\packages\\": {},
+ "C:\\Microsoft\\Xamarin\\NuGet\\": {},
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\simpleApi.csproj",
+ "projectName": "simpleApi",
+ "projectPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\simpleApi.csproj",
+ "packagesPath": "C:\\Users\\MSI Infinite\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\MSI Infinite\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.InMemory": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[12.0.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/simpleApi/obj/simpleApi.csproj.nuget.cache b/simpleApi/obj/simpleApi.csproj.nuget.cache
new file mode 100644
index 0000000..41f2475
--- /dev/null
+++ b/simpleApi/obj/simpleApi.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "ZLzik72/UcLq6Q0Ga2Ka8IZfy/AzFq3LFCG9EL60cfXzbmtwsrE1Ip6dUYyxy5yaWluTHURmR/G4P/evIpJEng==",
+ "success": true
+}
\ No newline at end of file
diff --git a/simpleApi/obj/simpleApi.csproj.nuget.dgspec.json b/simpleApi/obj/simpleApi.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..5d41600
--- /dev/null
+++ b/simpleApi/obj/simpleApi.csproj.nuget.dgspec.json
@@ -0,0 +1,82 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\simpleApi.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\simpleApi.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\simpleApi.csproj",
+ "projectName": "simpleApi",
+ "projectPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\simpleApi.csproj",
+ "packagesPath": "C:\\Users\\MSI Infinite\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\MSI Infinite\\Documents\\projects\\simpleOrderSearch\\simpleApi\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\MSI Infinite\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.InMemory": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Microsoft.EntityFrameworkCore.SqlServer": {
+ "target": "Package",
+ "version": "[3.0.1, )"
+ },
+ "Newtonsoft.Json": {
+ "target": "Package",
+ "version": "[12.0.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.0.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/simpleApi/obj/simpleApi.csproj.nuget.g.props b/simpleApi/obj/simpleApi.csproj.nuget.g.props
new file mode 100644
index 0000000..9ac2c1d
--- /dev/null
+++ b/simpleApi/obj/simpleApi.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\MSI Infinite\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 5.3.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/simpleApi/obj/simpleApi.csproj.nuget.g.targets b/simpleApi/obj/simpleApi.csproj.nuget.g.targets
new file mode 100644
index 0000000..53cfaa1
--- /dev/null
+++ b/simpleApi/obj/simpleApi.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/simpleApi/simpleApi.csproj b/simpleApi/simpleApi.csproj
new file mode 100644
index 0000000..0ffe874
--- /dev/null
+++ b/simpleApi/simpleApi.csproj
@@ -0,0 +1,16 @@
+
+
+
+ netcoreapp3.0
+
+
+
+
+
+
+
+
+
+
+
+