diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8c2c4a3..1e0ac2d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,7 +28,7 @@ frontend:
- dotnet build
# Define the job for running the tests
-test:
+backend-test:
stage: test
image: golang:1.17.4-alpine3.14
services:
@@ -51,3 +51,12 @@ test:
- export DB_NAME=$POSTGRES_DB
script:
- go test -v ./...
+
+frontend-test:
+ stage: test
+ image: mcr.microsoft.com/dotnet/sdk:6.0
+ before_script:
+ - cd src/PanoptesTest
+ - dotnet restore
+ script:
+ - dotnet test
diff --git a/src/PanoptesFrontend/PanoptesFrontend.csproj b/src/PanoptesFrontend/PanoptesFrontend.csproj
index 9c62f3a..8993fbf 100644
--- a/src/PanoptesFrontend/PanoptesFrontend.csproj
+++ b/src/PanoptesFrontend/PanoptesFrontend.csproj
@@ -8,6 +8,9 @@
+
+
+
diff --git a/src/PanoptesTest/Counter.razor b/src/PanoptesTest/Counter.razor
new file mode 100644
index 0000000..69e04c6
--- /dev/null
+++ b/src/PanoptesTest/Counter.razor
@@ -0,0 +1,16 @@
+
Counter
+
+
+ Current count: @currentCount
+
+
+Click me
+
+@code {
+ int currentCount = 0;
+
+ void IncrementCount()
+ {
+ currentCount++;
+ }
+}
diff --git a/src/PanoptesTest/CounterCSharpTests.cs b/src/PanoptesTest/CounterCSharpTests.cs
new file mode 100644
index 0000000..d3056fb
--- /dev/null
+++ b/src/PanoptesTest/CounterCSharpTests.cs
@@ -0,0 +1,31 @@
+namespace PanoptesTest;
+
+///
+/// These tests are written entirely in C#.
+/// Learn more at https://bunit.dev/docs/getting-started/writing-tests.html#creating-basic-tests-in-cs-files
+///
+public class CounterCSharpTests : TestContext
+{
+ [Fact]
+ public void CounterStartsAtZero()
+ {
+ // Arrange
+ var cut = RenderComponent();
+
+ // Assert that content of the paragraph shows counter at zero
+ cut.Find("p").MarkupMatches("Current count: 0
");
+ }
+
+ [Fact]
+ public void ClickingButtonIncrementsCounter()
+ {
+ // Arrange
+ var cut = RenderComponent();
+
+ // Act - click button to increment counter
+ cut.Find("button").Click();
+
+ // Assert that the counter was incremented
+ cut.Find("p").MarkupMatches("Current count: 1
");
+ }
+}
diff --git a/src/PanoptesTest/CounterRazorTests.razor b/src/PanoptesTest/CounterRazorTests.razor
new file mode 100644
index 0000000..d871fd1
--- /dev/null
+++ b/src/PanoptesTest/CounterRazorTests.razor
@@ -0,0 +1,29 @@
+@inherits TestContext
+
+These tests are written entirely in razor and C# syntax.
+
+Learn more at https://bunit.dev/docs/getting-started/writing-tests.html#creating-basic-tests-in-razor-files
+
+@code {
+ [Fact]
+ public void CounterStartsAtZero()
+ {
+ // Arrange
+ var cut = Render(@ );
+
+ // Assert that content of the paragraph shows counter at zero
+ cut.Find("p").MarkupMatches(@Current count: 0
);
+ }
+ [Fact]
+ public void ClickingButtonIncrementsCounter()
+ {
+ // Arrange
+ var cut = Render(@ );
+
+ // Act - click button to increment counter
+ cut.Find("button").Click();
+
+ // Assert that the counter was incremented
+ cut.Find("p").MarkupMatches(@Current count: 1
);
+ }
+}
diff --git a/src/PanoptesTest/PanoptesTest.csproj b/src/PanoptesTest/PanoptesTest.csproj
new file mode 100644
index 0000000..1db61a6
--- /dev/null
+++ b/src/PanoptesTest/PanoptesTest.csproj
@@ -0,0 +1,40 @@
+
+
+
+ net6.0
+ enable
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+ all
+
+
+
+
+
+
+
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+ all
+
+
+
+
+
+
+
+
+
+
diff --git a/src/PanoptesTest/_Imports.razor b/src/PanoptesTest/_Imports.razor
new file mode 100644
index 0000000..eb35905
--- /dev/null
+++ b/src/PanoptesTest/_Imports.razor
@@ -0,0 +1,9 @@
+@using Microsoft.AspNetCore.Components.Web
+@using Microsoft.JSInterop
+@using Microsoft.Extensions.DependencyInjection
+@using Bunit
+@using Bunit.TestDoubles
+@using Xunit
+@using System.Net;
+@using System.Net.Http;
+@using System.Threading.Tasks;
diff --git a/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.Css.dll b/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.Css.dll
new file mode 100644
index 0000000..c7624ec
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.Css.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.Diffing.dll b/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.Diffing.dll
new file mode 100644
index 0000000..c1615d0
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.Diffing.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.dll b/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.dll
new file mode 100644
index 0000000..49dd5ca
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/AngleSharp.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/AngleSharpWrappers.dll b/src/PanoptesTest/bin/Debug/net6.0/AngleSharpWrappers.dll
new file mode 100644
index 0000000..f0d3bbe
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/AngleSharpWrappers.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Blazor-ApexCharts.dll b/src/PanoptesTest/bin/Debug/net6.0/Blazor-ApexCharts.dll
new file mode 100644
index 0000000..1e07de3
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Blazor-ApexCharts.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Bunit.Core.dll b/src/PanoptesTest/bin/Debug/net6.0/Bunit.Core.dll
new file mode 100644
index 0000000..3daf957
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Bunit.Core.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Bunit.Web.dll b/src/PanoptesTest/bin/Debug/net6.0/Bunit.Web.dll
new file mode 100644
index 0000000..57f2343
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Bunit.Web.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Castle.Core.dll b/src/PanoptesTest/bin/Debug/net6.0/Castle.Core.dll
new file mode 100644
index 0000000..eb7fd3b
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Castle.Core.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/CoverletSourceRootsMapping b/src/PanoptesTest/bin/Debug/net6.0/CoverletSourceRootsMapping
new file mode 100644
index 0000000..fa07275
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/CoverletSourceRootsMapping differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
new file mode 100644
index 0000000..5975a08
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
new file mode 100644
index 0000000..f7fcb84
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
new file mode 100644
index 0000000..95cb31d
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
new file mode 100644
index 0000000..5a6ee35
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll
new file mode 100644
index 0000000..c040add
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
new file mode 100644
index 0000000..ec47640
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
new file mode 100644
index 0000000..09bca3f
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 0000000..a42ea83
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll
new file mode 100644
index 0000000..2af12ca
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.JSInterop.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.JSInterop.dll
new file mode 100644
index 0000000..1562c29
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.JSInterop.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll
new file mode 100644
index 0000000..3c162cd
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll
new file mode 100644
index 0000000..795c0aa
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll
new file mode 100644
index 0000000..0e617b3
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll
new file mode 100644
index 0000000..7ff04b0
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll
new file mode 100644
index 0000000..2af84a3
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
new file mode 100644
index 0000000..ae93be2
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll
new file mode 100644
index 0000000..acd6e8c
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
new file mode 100644
index 0000000..b82b869
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Moq.dll b/src/PanoptesTest/bin/Debug/net6.0/Moq.dll
new file mode 100644
index 0000000..3b1106a
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Moq.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/Newtonsoft.Json.dll b/src/PanoptesTest/bin/Debug/net6.0/Newtonsoft.Json.dll
new file mode 100644
index 0000000..1ffeabe
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/Newtonsoft.Json.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/NuGet.Frameworks.dll b/src/PanoptesTest/bin/Debug/net6.0/NuGet.Frameworks.dll
new file mode 100644
index 0000000..0fabf0c
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/NuGet.Frameworks.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.deps.json b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.deps.json
new file mode 100644
index 0000000..3661261
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.deps.json
@@ -0,0 +1,2275 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {
+ "PanoptesFrontend/1.0.0": {
+ "dependencies": {
+ "Blazor-ApexCharts": "0.9.20-beta",
+ "bunit": "1.19.14",
+ "Microsoft.NET.Test.Sdk": "17.5.0",
+ "Moq": "4.18.4",
+ "xunit": "2.4.2"
+ },
+ "runtime": {
+ "PanoptesFrontend.dll": {}
+ }
+ },
+ "AngleSharp/0.17.1": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/AngleSharp.dll": {
+ "assemblyVersion": "0.17.1.0",
+ "fileVersion": "0.17.1.0"
+ }
+ }
+ },
+ "AngleSharp.Css/0.17.0": {
+ "dependencies": {
+ "AngleSharp": "0.17.1"
+ },
+ "runtime": {
+ "lib/net6.0/AngleSharp.Css.dll": {
+ "assemblyVersion": "0.17.0.0",
+ "fileVersion": "0.17.0.0"
+ }
+ }
+ },
+ "AngleSharp.Diffing/0.18.1": {
+ "dependencies": {
+ "AngleSharp": "0.17.1",
+ "AngleSharp.Css": "0.17.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/AngleSharp.Diffing.dll": {
+ "assemblyVersion": "0.18.1.0",
+ "fileVersion": "0.18.1.0"
+ }
+ }
+ },
+ "Blazor-ApexCharts/0.9.20-beta": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3",
+ "Microsoft.AspNetCore.Components.Web": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Blazor-ApexCharts.dll": {
+ "assemblyVersion": "0.9.20.0",
+ "fileVersion": "0.9.20.0"
+ }
+ }
+ },
+ "bunit/1.19.14": {
+ "dependencies": {
+ "bunit.core": "1.19.14",
+ "bunit.web": "1.19.14"
+ }
+ },
+ "bunit.core/1.19.14": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3",
+ "Microsoft.Extensions.Logging": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1"
+ },
+ "runtime": {
+ "lib/net6.0/Bunit.Core.dll": {
+ "assemblyVersion": "1.19.14.56588",
+ "fileVersion": "1.19.14.56588"
+ }
+ }
+ },
+ "bunit.web/1.19.14": {
+ "dependencies": {
+ "AngleSharp": "0.17.1",
+ "AngleSharp.Diffing": "0.18.1",
+ "Microsoft.AspNetCore.Components.Authorization": "6.0.0",
+ "Microsoft.AspNetCore.Components.Web": "6.0.3",
+ "Microsoft.AspNetCore.Components.WebAssembly": "6.0.0",
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication": "6.0.0",
+ "Microsoft.Extensions.Caching.Memory": "6.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "6.0.0",
+ "bunit.core": "1.19.14"
+ },
+ "runtime": {
+ "lib/net6.0/AngleSharpWrappers.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "lib/net6.0/Bunit.Web.dll": {
+ "assemblyVersion": "1.19.14.56588",
+ "fileVersion": "1.19.14.56588"
+ }
+ }
+ },
+ "Castle.Core/5.1.1": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Castle.Core.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.1.1.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "6.0.3",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
+ "Microsoft.Extensions.Options": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authorization": "6.0.3",
+ "Microsoft.AspNetCore.Components.Analyzers": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/6.0.3": {},
+ "Microsoft.AspNetCore.Components.Authorization/6.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authorization": "6.0.3",
+ "Microsoft.AspNetCore.Components": "6.0.3"
+ }
+ },
+ "Microsoft.AspNetCore.Components.Forms/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Web/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3",
+ "Microsoft.AspNetCore.Components.Forms": "6.0.3",
+ "Microsoft.Extensions.DependencyInjection": "6.0.0",
+ "Microsoft.JSInterop": "6.0.3",
+ "System.IO.Pipelines": "6.0.2"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly/6.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Web": "6.0.3",
+ "Microsoft.Extensions.Configuration.Binder": "6.0.0",
+ "Microsoft.Extensions.Configuration.Json": "6.0.0",
+ "Microsoft.Extensions.Logging": "6.0.0",
+ "Microsoft.JSInterop.WebAssembly": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52608"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Authorization": "6.0.0",
+ "Microsoft.AspNetCore.Components.Web": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52608"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/6.0.3": {
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.CodeCoverage/17.5.0": {
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "17.500.222.62001"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
+ "Microsoft.Extensions.Options": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "6.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "6.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
+ "System.Text.Json": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
+ "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {},
+ "Microsoft.Extensions.Localization.Abstractions/6.0.0": {},
+ "Microsoft.Extensions.Logging/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "6.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
+ "Microsoft.Extensions.Options": "6.0.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
+ "runtime": {
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12309"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Primitives/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.JSInterop/6.0.3": {
+ "runtime": {
+ "lib/net6.0/Microsoft.JSInterop.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.JSInterop.WebAssembly/6.0.0": {
+ "dependencies": {
+ "Microsoft.JSInterop": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52608"
+ }
+ }
+ },
+ "Microsoft.NET.Test.Sdk/17.5.0": {
+ "dependencies": {
+ "Microsoft.CodeCoverage": "17.5.0",
+ "Microsoft.TestPlatform.TestHost": "17.5.0"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.TestPlatform.ObjectModel/17.5.0": {
+ "dependencies": {
+ "NuGet.Frameworks": "5.11.0",
+ "System.Reflection.Metadata": "1.6.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.TestPlatform.TestHost/17.5.0": {
+ "dependencies": {
+ "Microsoft.TestPlatform.ObjectModel": "17.5.0",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/testhost.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "Moq/4.18.4": {
+ "dependencies": {
+ "Castle.Core": "5.1.1"
+ },
+ "runtime": {
+ "lib/net6.0/Moq.dll": {
+ "assemblyVersion": "4.18.0.0",
+ "fileVersion": "4.18.4.0"
+ }
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.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.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "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.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.1.25517"
+ }
+ }
+ },
+ "NuGet.Frameworks/5.11.0": {
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "assemblyVersion": "5.11.0.10",
+ "fileVersion": "5.11.0.10"
+ }
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "System.AppContext/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.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.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Diagnostics.EventLog/6.0.0": {},
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "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"
+ }
+ },
+ "System.IO/4.3.0": {
+ "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"
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.5.1",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "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.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "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"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Pipelines/6.0.2": {
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.222.6406"
+ }
+ }
+ },
+ "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.Linq.Expressions/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.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "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.Threading": "4.3.0"
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "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.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.ObjectModel/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.Threading": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "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"
+ }
+ },
+ "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": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {},
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.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": "1.1.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": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "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"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "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.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "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.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "System.Collections": "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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.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.X509Certificates/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "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.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "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.Text.Encodings.Web/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Json/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "6.0.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": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "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.3.0"
+ }
+ },
+ "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"
+ }
+ },
+ "xunit/2.4.2": {
+ "dependencies": {
+ "xunit.analyzers": "1.0.0",
+ "xunit.assert": "2.4.2",
+ "xunit.core": "2.4.2"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "xunit.analyzers/1.0.0": {},
+ "xunit.assert/2.4.2": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.assert.dll": {
+ "assemblyVersion": "2.4.2.0",
+ "fileVersion": "2.4.2.0"
+ }
+ }
+ },
+ "xunit.core/2.4.2": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.4.2",
+ "xunit.extensibility.execution": "2.4.2"
+ }
+ },
+ "xunit.extensibility.core/2.4.2": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "xunit.abstractions": "2.0.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "assemblyVersion": "2.4.2.0",
+ "fileVersion": "2.4.2.0"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.4.2": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "xunit.extensibility.core": "2.4.2"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "assemblyVersion": "2.4.2.0",
+ "fileVersion": "2.4.2.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "PanoptesFrontend/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AngleSharp/0.17.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5MPI4bbixlwxb0W/smOMeIR+QlxMy5/5jD+WnIAw4pBC+7AhLPe5bS3cLgQMJyvd6q0A48sG+uYOt/ep406GLA==",
+ "path": "anglesharp/0.17.1",
+ "hashPath": "anglesharp.0.17.1.nupkg.sha512"
+ },
+ "AngleSharp.Css/0.17.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bg0AcugmX6BFEi/DHG61QrwRU8iuiX4H8LZehdIzYdqOM/dgb3BsCTzNIcc1XADn4+xfQEdVwJYTSwUxroL4vg==",
+ "path": "anglesharp.css/0.17.0",
+ "hashPath": "anglesharp.css.0.17.0.nupkg.sha512"
+ },
+ "AngleSharp.Diffing/0.18.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s2SemqrL0yn1FTe+UwUnfJbSi+gz4GNH0jbxvI3i5VjPoJWKAIWZxqGx7FkwAK+tu9l1/qr+53Jiz4gvvTk4uw==",
+ "path": "anglesharp.diffing/0.18.1",
+ "hashPath": "anglesharp.diffing.0.18.1.nupkg.sha512"
+ },
+ "Blazor-ApexCharts/0.9.20-beta": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gRYtKIbrR+S9y8GP6zpXwM/zZENHeXkfuQLj2KtGVzGcOmLn/PO4Exv7MZLeuxs5gKvCP6Sj/CZMAdsuxyRd2w==",
+ "path": "blazor-apexcharts/0.9.20-beta",
+ "hashPath": "blazor-apexcharts.0.9.20-beta.nupkg.sha512"
+ },
+ "bunit/1.19.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mxorCTFw0VZvdBOLTqgcz0qC8NbS8h4zNkqL8GrKCBgN6BVVh4DXljoeBL0TeoYSWLTNPbbyapWzn7diQkRfkw==",
+ "path": "bunit/1.19.14",
+ "hashPath": "bunit.1.19.14.nupkg.sha512"
+ },
+ "bunit.core/1.19.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z+QdJFls6yDsX0TS270muBcFGriP/MqdyI/SQ8fzdLgkEMGl2l0rZHPJzX11O71iHudk7F5is9H8vtcSHHv8SQ==",
+ "path": "bunit.core/1.19.14",
+ "hashPath": "bunit.core.1.19.14.nupkg.sha512"
+ },
+ "bunit.web/1.19.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dKYkR45X5/k2p0HaqMIjpih7xfd1lSF9N55Py6Euhj7qsPpb0Gw+1HiFPnEU5iXzMZwK5xkDhafyMNcaNwG5Tg==",
+ "path": "bunit.web/1.19.14",
+ "hashPath": "bunit.web.1.19.14.nupkg.sha512"
+ },
+ "Castle.Core/5.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==",
+ "path": "castle.core/5.1.1",
+ "hashPath": "castle.core.5.1.1.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eWgsWE7IY7Az2lGBvoYk20290ZqTI0Y9ATyprrwfaC7w8MvBXu2jU+tv90Zt6lbEE3RP55XL+dFydGExcunHbw==",
+ "path": "microsoft.aspnetcore.authorization/6.0.3",
+ "hashPath": "microsoft.aspnetcore.authorization.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Mqk/tAA+RWBnaz8uhn18VaEqVIY/G6LTpBX+Ap65/3vq4RwFZIDFK8gYMrV3JSQXkBYk3rYxPtwgEutCt4ZGww==",
+ "path": "microsoft.aspnetcore.components/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zM6GIzF9bAnjVhiXNFQ2viF7W9FPASHjiDmV53M+ArRKBS8LFvzTfC4sgGYDoaikxm+zdx9mH7x98I1Dh3/INQ==",
+ "path": "microsoft.aspnetcore.components.analyzers/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.analyzers.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Authorization/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AdrLj0S71GgcGUm7MMzwjzpkmAO044nFhzmvT+x/acB0HNyolWo6jMZBXxEm93iQDSeFlfRQGsw+bD+6mdMhYg==",
+ "path": "microsoft.aspnetcore.components.authorization/6.0.0",
+ "hashPath": "microsoft.aspnetcore.components.authorization.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Forms/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bSGNnkAAzalMJl3Kv4HIOZ2sVeIc/+UopY27fO8v5Km9mS3jMzDiuCdvi4pXgnSsJj/bFjjO5KASd/KB9feFkw==",
+ "path": "microsoft.aspnetcore.components.forms/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.forms.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Web/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-otsm2nj+nFPI1rGENDkbbDWWsdn4VKMa3nY6crAMzgXESIiaT0iLSWN3cC3yCUIarTsNJOz4nhT+z6/lkiqKEQ==",
+ "path": "microsoft.aspnetcore.components.web/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.web.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2U+qxFoDIafWgo6HZzKLGyICTWT9RMKVnkLrvcbcXCMiLj5JogfTW6uyD8JsHWOojHRmHRF4qB7DsHjJ1z1bMQ==",
+ "path": "microsoft.aspnetcore.components.webassembly/6.0.0",
+ "hashPath": "microsoft.aspnetcore.components.webassembly.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S0Asj9Bdj5bqmmX8nR8wGzVNJo8UiKLKkg7UJm58BUOMCXKcL0rvU8lYcX1sB/wxyZ2f7Y+YznLTCQ0doMkZmg==",
+ "path": "microsoft.aspnetcore.components.webassembly.authentication/6.0.0",
+ "hashPath": "microsoft.aspnetcore.components.webassembly.authentication.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Metadata/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I3FVSfaLdSLs4XmBq5DbK7PuVF/aSf0Xc63/AeNIJFt6/chYvcJaxnKbd4yZo9OXGw5OT9KOIxGWZ/2CucvgJw==",
+ "path": "microsoft.aspnetcore.metadata/6.0.3",
+ "hashPath": "microsoft.aspnetcore.metadata.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.CodeCoverage/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6FQo0O6LKDqbCiIgVQhJAf810HSjFlOj7FunWaeOGDKxy8DAbpHzPk4SfBTXz9ytaaceuIIeR6hZgplt09m+ig==",
+ "path": "microsoft.codecoverage/17.5.0",
+ "hashPath": "microsoft.codecoverage.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
+ "path": "microsoft.extensions.caching.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==",
+ "path": "microsoft.extensions.caching.memory/6.0.0",
+ "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
+ "path": "microsoft.extensions.configuration/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
+ "path": "microsoft.extensions.configuration.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
+ "path": "microsoft.extensions.configuration.binder/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
+ "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
+ "path": "microsoft.extensions.configuration.json/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
+ "path": "microsoft.extensions.dependencyinjection/6.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
+ "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
+ "path": "microsoft.extensions.fileproviders.physical/6.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
+ "path": "microsoft.extensions.filesystemglobbing/6.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==",
+ "path": "microsoft.extensions.localization.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
+ "path": "microsoft.extensions.logging/6.0.0",
+ "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
+ "path": "microsoft.extensions.logging.abstractions/6.0.1",
+ "hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
+ "path": "microsoft.extensions.options/6.0.0",
+ "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
+ "path": "microsoft.extensions.primitives/6.0.0",
+ "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.JSInterop/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3QCDEyxcjhfQQeGRGtJFP4F8ne4D6Gf2w1nkdQCRy79yzSGHcoUbBkziVVmoppRbipIh9ickyHD7wXB+m0GiIw==",
+ "path": "microsoft.jsinterop/6.0.3",
+ "hashPath": "microsoft.jsinterop.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.JSInterop.WebAssembly/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zV++7El8O0GU57pMzX0hquixXzkojsCkIiIILMelhJkojH8hkrpiEJTmzSRyb7vVDr7s/RvfiRPbNt/7jQqEWQ==",
+ "path": "microsoft.jsinterop.webassembly/6.0.0",
+ "hashPath": "microsoft.jsinterop.webassembly.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.NET.Test.Sdk/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IJ4eSPcsRbwbAZehh1M9KgejSy0u3d0wAdkJytfCh67zOaCl5U3ltruUEe15MqirdRqGmm/ngbjeaVeGapSZxg==",
+ "path": "microsoft.net.test.sdk/17.5.0",
+ "hashPath": "microsoft.net.test.sdk.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.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.TestPlatform.ObjectModel/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QwiBJcC/oEA1kojOaB0uPWOIo4i6BYuTBBYJVhUvmXkyYqZ2Ut/VZfgi+enf8LF8J4sjO98oRRFt39MiRorcIw==",
+ "path": "microsoft.testplatform.objectmodel/17.5.0",
+ "hashPath": "microsoft.testplatform.objectmodel.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.TestPlatform.TestHost/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X86aikwp9d4SDcBChwzQYZihTPGEtMdDk+9t64emAl7N0Tq+OmlLAoW+Rs+2FB2k6QdUicSlT4QLO2xABRokaw==",
+ "path": "microsoft.testplatform.testhost/17.5.0",
+ "hashPath": "microsoft.testplatform.testhost.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "path": "microsoft.win32.primitives/4.3.0",
+ "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "Moq/4.18.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IOo+W51+7Afnb0noltJrKxPBSfsgMzTKCw+Re5AMx8l/vBbAbMDOynLik4+lBYIWDJSO0uV7Zdqt7cNb6RZZ+A==",
+ "path": "moq/4.18.4",
+ "hashPath": "moq.4.18.4.nupkg.sha512"
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "path": "netstandard.library/1.6.1",
+ "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
+ "path": "newtonsoft.json/13.0.1",
+ "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
+ },
+ "NuGet.Frameworks/5.11.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
+ "path": "nuget.frameworks/5.11.0",
+ "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "path": "system.appcontext/4.3.0",
+ "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.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.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.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/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
+ "path": "system.diagnostics.diagnosticsource/6.0.0",
+ "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
+ "path": "system.diagnostics.eventlog/6.0.0",
+ "hashPath": "system.diagnostics.eventlog.6.0.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.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "path": "system.globalization.calendars/4.3.0",
+ "hashPath": "system.globalization.calendars.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.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "path": "system.io.compression/4.3.0",
+ "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "path": "system.io.compression.zipfile/4.3.0",
+ "hashPath": "system.io.compression.zipfile.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.IO.Pipelines/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cb5OfQjnz+zjpJJei+f3QYK7+wWZrDdNHf3DykO6QCacpNZ80tuNgq1DC2kqlrjfEu+cMUTvulxPIrCMbBkjqg==",
+ "path": "system.io.pipelines/6.0.2",
+ "hashPath": "system.io.pipelines.6.0.2.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.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "path": "system.net.http/4.3.0",
+ "hashPath": "system.net.http.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.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "path": "system.net.sockets/4.3.0",
+ "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.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.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
+ },
+ "System.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.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.6.0.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.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "path": "system.runtime.numerics/4.3.0",
+ "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "path": "system.security.cryptography.cng/4.3.0",
+ "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "hashPath": "system.security.cryptography.openssl.4.3.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.X509Certificates/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "hashPath": "system.security.cryptography.x509certificates.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/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "hashPath": "system.text.encoding.codepages.6.0.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.Encodings.Web/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "path": "system.text.encodings.web/6.0.0",
+ "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
+ "path": "system.text.json/6.0.0",
+ "hashPath": "system.text.json.6.0.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.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
+ "path": "system.threading.tasks.extensions/4.3.0",
+ "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "path": "system.threading.timer/4.3.0",
+ "hashPath": "system.threading.timer.4.3.0.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"
+ },
+ "xunit/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6Mj73Ont3zj2CJuoykVJfE0ZmRwn7C+pTuRP8c4bnaaTFjwNG6tGe0prJ1yIbMe9AHrpDys63ctWacSsFJWK/w==",
+ "path": "xunit/2.4.2",
+ "hashPath": "xunit.2.4.2.nupkg.sha512"
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "path": "xunit.abstractions/2.0.3",
+ "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512"
+ },
+ "xunit.analyzers/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BeO8hEgs/c8Ls2647fPfieMngncvf0D0xYNDfIO59MolxtCtVjFRd6SRc+7tj8VMqkVOuJcnc9eh4ngI2cAmLQ==",
+ "path": "xunit.analyzers/1.0.0",
+ "hashPath": "xunit.analyzers.1.0.0.nupkg.sha512"
+ },
+ "xunit.assert/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pxJISOFjn2XTTi1mcDCkRZrTFb9OtRRCtx2kZFNF51GdReLr1ls2rnyxvAS4JO247K3aNtflvh5Q0346K5BROA==",
+ "path": "xunit.assert/2.4.2",
+ "hashPath": "xunit.assert.2.4.2.nupkg.sha512"
+ },
+ "xunit.core/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KB4yGCxNqIVyekhJLXtKSEq6BaXVp/JO3mbGVE1hxypZTLEe7h+sTbAhpA+yZW2dPtXTuiW+C1B2oxxHEkrmOw==",
+ "path": "xunit.core/2.4.2",
+ "hashPath": "xunit.core.2.4.2.nupkg.sha512"
+ },
+ "xunit.extensibility.core/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1BoXTIN1C6kpVSMw25huSet25ky6IAQUNovu3zGOGN/jWnbgSoTyCrlIhmXSg0tH5nEf8q7h3OjNHOjyu5PfA==",
+ "path": "xunit.extensibility.core/2.4.2",
+ "hashPath": "xunit.extensibility.core.2.4.2.nupkg.sha512"
+ },
+ "xunit.extensibility.execution/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CZmgcKkwpyo8FlupZdWpJCryrAOWLh1FBPG6gmVZuPQkGQsim/oL4PcP4nfrC2hHgXUFtluvaJ0Sp9PQKUMNpg==",
+ "path": "xunit.extensibility.execution/2.4.2",
+ "hashPath": "xunit.extensibility.execution.2.4.2.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.dll b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.dll
new file mode 100644
index 0000000..2010b1b
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.exe b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.exe
new file mode 100644
index 0000000..c366ae4
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.exe differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.pdb b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.pdb
new file mode 100644
index 0000000..081a42d
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.pdb differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.runtimeconfig.json b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.runtimeconfig.json
new file mode 100644
index 0000000..dfb1b77
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "6.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.staticwebassets.runtime.json b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.staticwebassets.runtime.json
new file mode 100644
index 0000000..352c693
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/PanoptesFrontend.staticwebassets.runtime.json
@@ -0,0 +1 @@
+{"ContentRoots":["C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesFrontend\\wwwroot\\","C:\\Users\\user\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\6.0.0\\staticwebassets\\","C:\\Users\\user\\.nuget\\packages\\blazor-apexcharts\\0.9.20-beta\\staticwebassets\\","C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesFrontend\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"_content":{"Children":{"Microsoft.AspNetCore.Components.WebAssembly.Authentication":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazor-ApexCharts":{"Children":{"css":{"Children":{"apexcharts.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"css/apexcharts.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"apex-charts.min.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"js/apex-charts.min.js"},"Patterns":null},"blazor-apex-charts.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"js/blazor-apex-charts.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"PanoptesFrontend.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"PanoptesFrontend.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.deps.json b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.deps.json
new file mode 100644
index 0000000..06ea453
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.deps.json
@@ -0,0 +1,2325 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {
+ "PanoptesTest/1.0.0": {
+ "dependencies": {
+ "Microsoft.NET.Test.Sdk": "17.5.0",
+ "PanoptesFrontend": "1.0.0",
+ "RichardSzalay.MockHttp": "6.0.0",
+ "bunit": "1.19.14",
+ "coverlet.collector": "3.1.0",
+ "xunit": "2.4.2",
+ "xunit.runner.visualstudio": "2.4.5"
+ },
+ "runtime": {
+ "PanoptesTest.dll": {}
+ }
+ },
+ "AngleSharp/0.17.1": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/AngleSharp.dll": {
+ "assemblyVersion": "0.17.1.0",
+ "fileVersion": "0.17.1.0"
+ }
+ }
+ },
+ "AngleSharp.Css/0.17.0": {
+ "dependencies": {
+ "AngleSharp": "0.17.1"
+ },
+ "runtime": {
+ "lib/net6.0/AngleSharp.Css.dll": {
+ "assemblyVersion": "0.17.0.0",
+ "fileVersion": "0.17.0.0"
+ }
+ }
+ },
+ "AngleSharp.Diffing/0.18.1": {
+ "dependencies": {
+ "AngleSharp": "0.17.1",
+ "AngleSharp.Css": "0.17.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/AngleSharp.Diffing.dll": {
+ "assemblyVersion": "0.18.1.0",
+ "fileVersion": "0.18.1.0"
+ }
+ }
+ },
+ "Blazor-ApexCharts/0.9.20-beta": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3",
+ "Microsoft.AspNetCore.Components.Web": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Blazor-ApexCharts.dll": {
+ "assemblyVersion": "0.9.20.0",
+ "fileVersion": "0.9.20.0"
+ }
+ }
+ },
+ "bunit/1.19.14": {
+ "dependencies": {
+ "bunit.core": "1.19.14",
+ "bunit.web": "1.19.14"
+ }
+ },
+ "bunit.core/1.19.14": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3",
+ "Microsoft.Extensions.Logging": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1"
+ },
+ "runtime": {
+ "lib/net6.0/Bunit.Core.dll": {
+ "assemblyVersion": "1.19.14.56588",
+ "fileVersion": "1.19.14.56588"
+ }
+ }
+ },
+ "bunit.web/1.19.14": {
+ "dependencies": {
+ "AngleSharp": "0.17.1",
+ "AngleSharp.Diffing": "0.18.1",
+ "Microsoft.AspNetCore.Components.Authorization": "6.0.0",
+ "Microsoft.AspNetCore.Components.Web": "6.0.3",
+ "Microsoft.AspNetCore.Components.WebAssembly": "6.0.0",
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication": "6.0.0",
+ "Microsoft.Extensions.Caching.Memory": "6.0.0",
+ "Microsoft.Extensions.Localization.Abstractions": "6.0.0",
+ "bunit.core": "1.19.14"
+ },
+ "runtime": {
+ "lib/net6.0/AngleSharpWrappers.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "lib/net6.0/Bunit.Web.dll": {
+ "assemblyVersion": "1.19.14.56588",
+ "fileVersion": "1.19.14.56588"
+ }
+ }
+ },
+ "Castle.Core/5.1.1": {
+ "dependencies": {
+ "System.Diagnostics.EventLog": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Castle.Core.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.1.1.0"
+ }
+ }
+ },
+ "coverlet.collector/3.1.0": {},
+ "Microsoft.AspNetCore.Authorization/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "6.0.3",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
+ "Microsoft.Extensions.Options": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authorization": "6.0.3",
+ "Microsoft.AspNetCore.Components.Analyzers": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/6.0.3": {},
+ "Microsoft.AspNetCore.Components.Authorization/6.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Authorization": "6.0.3",
+ "Microsoft.AspNetCore.Components": "6.0.3"
+ }
+ },
+ "Microsoft.AspNetCore.Components.Forms/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.Web/6.0.3": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components": "6.0.3",
+ "Microsoft.AspNetCore.Components.Forms": "6.0.3",
+ "Microsoft.Extensions.DependencyInjection": "6.0.0",
+ "Microsoft.JSInterop": "6.0.3",
+ "System.IO.Pipelines": "6.0.2"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly/6.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Web": "6.0.3",
+ "Microsoft.Extensions.Configuration.Binder": "6.0.0",
+ "Microsoft.Extensions.Configuration.Json": "6.0.0",
+ "Microsoft.Extensions.Logging": "6.0.0",
+ "Microsoft.JSInterop.WebAssembly": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52608"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Components.Authorization": "6.0.0",
+ "Microsoft.AspNetCore.Components.Web": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52608"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/6.0.3": {
+ "runtime": {
+ "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.CodeCoverage/17.5.0": {
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "17.500.222.62001"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
+ "Microsoft.Extensions.Options": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "6.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "6.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
+ "System.Text.Json": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
+ "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {},
+ "Microsoft.Extensions.Localization.Abstractions/6.0.0": {},
+ "Microsoft.Extensions.Logging/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "6.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
+ "Microsoft.Extensions.Options": "6.0.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
+ "runtime": {
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12309"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/6.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
+ "Microsoft.Extensions.Primitives": "6.0.0"
+ }
+ },
+ "Microsoft.Extensions.Primitives/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "Microsoft.JSInterop/6.0.3": {
+ "runtime": {
+ "lib/net6.0/Microsoft.JSInterop.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.322.12401"
+ }
+ }
+ },
+ "Microsoft.JSInterop.WebAssembly/6.0.0": {
+ "dependencies": {
+ "Microsoft.JSInterop": "6.0.3"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52608"
+ }
+ }
+ },
+ "Microsoft.NET.Test.Sdk/17.5.0": {
+ "dependencies": {
+ "Microsoft.CodeCoverage": "17.5.0",
+ "Microsoft.TestPlatform.TestHost": "17.5.0"
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.TestPlatform.ObjectModel/17.5.0": {
+ "dependencies": {
+ "NuGet.Frameworks": "5.11.0",
+ "System.Reflection.Metadata": "1.6.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.TestPlatform.TestHost/17.5.0": {
+ "dependencies": {
+ "Microsoft.TestPlatform.ObjectModel": "17.5.0",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ },
+ "lib/netcoreapp3.1/testhost.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.0.0"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
+ "locale": "zh-Hant"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "Moq/4.18.4": {
+ "dependencies": {
+ "Castle.Core": "5.1.1"
+ },
+ "runtime": {
+ "lib/net6.0/Moq.dll": {
+ "assemblyVersion": "4.18.0.0",
+ "fileVersion": "4.18.4.0"
+ }
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.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.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "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.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.1.25517"
+ }
+ }
+ },
+ "NuGet.Frameworks/5.11.0": {
+ "runtime": {
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
+ "assemblyVersion": "5.11.0.10",
+ "fileVersion": "5.11.0.10"
+ }
+ }
+ },
+ "RichardSzalay.MockHttp/6.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/RichardSzalay.MockHttp.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.0.0"
+ }
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "System.AppContext/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.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.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Diagnostics.EventLog/6.0.0": {},
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "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"
+ }
+ },
+ "System.IO/4.3.0": {
+ "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"
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.5.1",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.5.1",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "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.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "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"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO.Pipelines/6.0.2": {
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.222.6406"
+ }
+ }
+ },
+ "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.Linq.Expressions/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.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "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.Threading": "4.3.0"
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "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.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.ObjectModel/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.Threading": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "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"
+ }
+ },
+ "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": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Metadata/1.6.0": {},
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.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": "1.1.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": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "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"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "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.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "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.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "System.Collections": "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.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.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.X509Certificates/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "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.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "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.Text.Encodings.Web/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Json/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encodings.Web": "6.0.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": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "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.3.0"
+ }
+ },
+ "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"
+ }
+ },
+ "xunit/2.4.2": {
+ "dependencies": {
+ "xunit.analyzers": "1.0.0",
+ "xunit.assert": "2.4.2",
+ "xunit.core": "2.4.2"
+ }
+ },
+ "xunit.abstractions/2.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/xunit.abstractions.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "xunit.analyzers/1.0.0": {},
+ "xunit.assert/2.4.2": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.assert.dll": {
+ "assemblyVersion": "2.4.2.0",
+ "fileVersion": "2.4.2.0"
+ }
+ }
+ },
+ "xunit.core/2.4.2": {
+ "dependencies": {
+ "xunit.extensibility.core": "2.4.2",
+ "xunit.extensibility.execution": "2.4.2"
+ }
+ },
+ "xunit.extensibility.core/2.4.2": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "xunit.abstractions": "2.0.3"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.core.dll": {
+ "assemblyVersion": "2.4.2.0",
+ "fileVersion": "2.4.2.0"
+ }
+ }
+ },
+ "xunit.extensibility.execution/2.4.2": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "xunit.extensibility.core": "2.4.2"
+ },
+ "runtime": {
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
+ "assemblyVersion": "2.4.2.0",
+ "fileVersion": "2.4.2.0"
+ }
+ }
+ },
+ "xunit.runner.visualstudio/2.4.5": {},
+ "PanoptesFrontend/1.0.0": {
+ "dependencies": {
+ "Blazor-ApexCharts": "0.9.20-beta",
+ "bunit": "1.19.14",
+ "Microsoft.NET.Test.Sdk": "17.5.0",
+ "Moq": "4.18.4",
+ "xunit": "2.4.2"
+ },
+ "runtime": {
+ "PanoptesFrontend.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "PanoptesTest/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AngleSharp/0.17.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5MPI4bbixlwxb0W/smOMeIR+QlxMy5/5jD+WnIAw4pBC+7AhLPe5bS3cLgQMJyvd6q0A48sG+uYOt/ep406GLA==",
+ "path": "anglesharp/0.17.1",
+ "hashPath": "anglesharp.0.17.1.nupkg.sha512"
+ },
+ "AngleSharp.Css/0.17.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bg0AcugmX6BFEi/DHG61QrwRU8iuiX4H8LZehdIzYdqOM/dgb3BsCTzNIcc1XADn4+xfQEdVwJYTSwUxroL4vg==",
+ "path": "anglesharp.css/0.17.0",
+ "hashPath": "anglesharp.css.0.17.0.nupkg.sha512"
+ },
+ "AngleSharp.Diffing/0.18.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s2SemqrL0yn1FTe+UwUnfJbSi+gz4GNH0jbxvI3i5VjPoJWKAIWZxqGx7FkwAK+tu9l1/qr+53Jiz4gvvTk4uw==",
+ "path": "anglesharp.diffing/0.18.1",
+ "hashPath": "anglesharp.diffing.0.18.1.nupkg.sha512"
+ },
+ "Blazor-ApexCharts/0.9.20-beta": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gRYtKIbrR+S9y8GP6zpXwM/zZENHeXkfuQLj2KtGVzGcOmLn/PO4Exv7MZLeuxs5gKvCP6Sj/CZMAdsuxyRd2w==",
+ "path": "blazor-apexcharts/0.9.20-beta",
+ "hashPath": "blazor-apexcharts.0.9.20-beta.nupkg.sha512"
+ },
+ "bunit/1.19.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mxorCTFw0VZvdBOLTqgcz0qC8NbS8h4zNkqL8GrKCBgN6BVVh4DXljoeBL0TeoYSWLTNPbbyapWzn7diQkRfkw==",
+ "path": "bunit/1.19.14",
+ "hashPath": "bunit.1.19.14.nupkg.sha512"
+ },
+ "bunit.core/1.19.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z+QdJFls6yDsX0TS270muBcFGriP/MqdyI/SQ8fzdLgkEMGl2l0rZHPJzX11O71iHudk7F5is9H8vtcSHHv8SQ==",
+ "path": "bunit.core/1.19.14",
+ "hashPath": "bunit.core.1.19.14.nupkg.sha512"
+ },
+ "bunit.web/1.19.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dKYkR45X5/k2p0HaqMIjpih7xfd1lSF9N55Py6Euhj7qsPpb0Gw+1HiFPnEU5iXzMZwK5xkDhafyMNcaNwG5Tg==",
+ "path": "bunit.web/1.19.14",
+ "hashPath": "bunit.web.1.19.14.nupkg.sha512"
+ },
+ "Castle.Core/5.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==",
+ "path": "castle.core/5.1.1",
+ "hashPath": "castle.core.5.1.1.nupkg.sha512"
+ },
+ "coverlet.collector/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YzYqSRrjoP5lULBhTDcTOjuM4IDPPi6PhFsl4w8EI4WdZhE6llt7E38Tg4CHyrS+QKwyu1+9OwkdDgluOdoBTw==",
+ "path": "coverlet.collector/3.1.0",
+ "hashPath": "coverlet.collector.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eWgsWE7IY7Az2lGBvoYk20290ZqTI0Y9ATyprrwfaC7w8MvBXu2jU+tv90Zt6lbEE3RP55XL+dFydGExcunHbw==",
+ "path": "microsoft.aspnetcore.authorization/6.0.3",
+ "hashPath": "microsoft.aspnetcore.authorization.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Mqk/tAA+RWBnaz8uhn18VaEqVIY/G6LTpBX+Ap65/3vq4RwFZIDFK8gYMrV3JSQXkBYk3rYxPtwgEutCt4ZGww==",
+ "path": "microsoft.aspnetcore.components/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Analyzers/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zM6GIzF9bAnjVhiXNFQ2viF7W9FPASHjiDmV53M+ArRKBS8LFvzTfC4sgGYDoaikxm+zdx9mH7x98I1Dh3/INQ==",
+ "path": "microsoft.aspnetcore.components.analyzers/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.analyzers.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Authorization/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AdrLj0S71GgcGUm7MMzwjzpkmAO044nFhzmvT+x/acB0HNyolWo6jMZBXxEm93iQDSeFlfRQGsw+bD+6mdMhYg==",
+ "path": "microsoft.aspnetcore.components.authorization/6.0.0",
+ "hashPath": "microsoft.aspnetcore.components.authorization.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Forms/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bSGNnkAAzalMJl3Kv4HIOZ2sVeIc/+UopY27fO8v5Km9mS3jMzDiuCdvi4pXgnSsJj/bFjjO5KASd/KB9feFkw==",
+ "path": "microsoft.aspnetcore.components.forms/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.forms.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.Web/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-otsm2nj+nFPI1rGENDkbbDWWsdn4VKMa3nY6crAMzgXESIiaT0iLSWN3cC3yCUIarTsNJOz4nhT+z6/lkiqKEQ==",
+ "path": "microsoft.aspnetcore.components.web/6.0.3",
+ "hashPath": "microsoft.aspnetcore.components.web.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2U+qxFoDIafWgo6HZzKLGyICTWT9RMKVnkLrvcbcXCMiLj5JogfTW6uyD8JsHWOojHRmHRF4qB7DsHjJ1z1bMQ==",
+ "path": "microsoft.aspnetcore.components.webassembly/6.0.0",
+ "hashPath": "microsoft.aspnetcore.components.webassembly.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Components.WebAssembly.Authentication/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S0Asj9Bdj5bqmmX8nR8wGzVNJo8UiKLKkg7UJm58BUOMCXKcL0rvU8lYcX1sB/wxyZ2f7Y+YznLTCQ0doMkZmg==",
+ "path": "microsoft.aspnetcore.components.webassembly.authentication/6.0.0",
+ "hashPath": "microsoft.aspnetcore.components.webassembly.authentication.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Metadata/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I3FVSfaLdSLs4XmBq5DbK7PuVF/aSf0Xc63/AeNIJFt6/chYvcJaxnKbd4yZo9OXGw5OT9KOIxGWZ/2CucvgJw==",
+ "path": "microsoft.aspnetcore.metadata/6.0.3",
+ "hashPath": "microsoft.aspnetcore.metadata.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.CodeCoverage/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6FQo0O6LKDqbCiIgVQhJAf810HSjFlOj7FunWaeOGDKxy8DAbpHzPk4SfBTXz9ytaaceuIIeR6hZgplt09m+ig==",
+ "path": "microsoft.codecoverage/17.5.0",
+ "hashPath": "microsoft.codecoverage.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
+ "path": "microsoft.extensions.caching.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ve3BlCzhAlVp5IgO3+8dacAhZk1A0GlIlFNkAcfR2TfAibLKWIt5DhVJZfu4YtW+XZ89OjYf/agMcgjDtPxdGA==",
+ "path": "microsoft.extensions.caching.memory/6.0.0",
+ "hashPath": "microsoft.extensions.caching.memory.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
+ "path": "microsoft.extensions.configuration/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
+ "path": "microsoft.extensions.configuration.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
+ "path": "microsoft.extensions.configuration.binder/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
+ "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
+ "path": "microsoft.extensions.configuration.json/6.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
+ "path": "microsoft.extensions.dependencyinjection/6.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
+ "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
+ "path": "microsoft.extensions.fileproviders.physical/6.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
+ "path": "microsoft.extensions.filesystemglobbing/6.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UQJmE78r414kbguPmvbT6MIz0r8LPsBhjLNOlpXOP1VVjaSIuUMATfAve8Q+oivwNG3Mnv+5OLZHfaBkB4SuUg==",
+ "path": "microsoft.extensions.localization.abstractions/6.0.0",
+ "hashPath": "microsoft.extensions.localization.abstractions.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
+ "path": "microsoft.extensions.logging/6.0.0",
+ "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
+ "path": "microsoft.extensions.logging.abstractions/6.0.1",
+ "hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
+ "path": "microsoft.extensions.options/6.0.0",
+ "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
+ "path": "microsoft.extensions.primitives/6.0.0",
+ "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.JSInterop/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3QCDEyxcjhfQQeGRGtJFP4F8ne4D6Gf2w1nkdQCRy79yzSGHcoUbBkziVVmoppRbipIh9ickyHD7wXB+m0GiIw==",
+ "path": "microsoft.jsinterop/6.0.3",
+ "hashPath": "microsoft.jsinterop.6.0.3.nupkg.sha512"
+ },
+ "Microsoft.JSInterop.WebAssembly/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zV++7El8O0GU57pMzX0hquixXzkojsCkIiIILMelhJkojH8hkrpiEJTmzSRyb7vVDr7s/RvfiRPbNt/7jQqEWQ==",
+ "path": "microsoft.jsinterop.webassembly/6.0.0",
+ "hashPath": "microsoft.jsinterop.webassembly.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.NET.Test.Sdk/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IJ4eSPcsRbwbAZehh1M9KgejSy0u3d0wAdkJytfCh67zOaCl5U3ltruUEe15MqirdRqGmm/ngbjeaVeGapSZxg==",
+ "path": "microsoft.net.test.sdk/17.5.0",
+ "hashPath": "microsoft.net.test.sdk.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.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.TestPlatform.ObjectModel/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QwiBJcC/oEA1kojOaB0uPWOIo4i6BYuTBBYJVhUvmXkyYqZ2Ut/VZfgi+enf8LF8J4sjO98oRRFt39MiRorcIw==",
+ "path": "microsoft.testplatform.objectmodel/17.5.0",
+ "hashPath": "microsoft.testplatform.objectmodel.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.TestPlatform.TestHost/17.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X86aikwp9d4SDcBChwzQYZihTPGEtMdDk+9t64emAl7N0Tq+OmlLAoW+Rs+2FB2k6QdUicSlT4QLO2xABRokaw==",
+ "path": "microsoft.testplatform.testhost/17.5.0",
+ "hashPath": "microsoft.testplatform.testhost.17.5.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "path": "microsoft.win32.primitives/4.3.0",
+ "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "Moq/4.18.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IOo+W51+7Afnb0noltJrKxPBSfsgMzTKCw+Re5AMx8l/vBbAbMDOynLik4+lBYIWDJSO0uV7Zdqt7cNb6RZZ+A==",
+ "path": "moq/4.18.4",
+ "hashPath": "moq.4.18.4.nupkg.sha512"
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "path": "netstandard.library/1.6.1",
+ "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
+ "path": "newtonsoft.json/13.0.1",
+ "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
+ },
+ "NuGet.Frameworks/5.11.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
+ "path": "nuget.frameworks/5.11.0",
+ "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
+ },
+ "RichardSzalay.MockHttp/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bStGNqIX/MGYtML7K3EzdsE/k5HGVAcg7XgN23TQXGXqxNC9fvYFR94fA0sGM5hAT36R+BBGet6ZDQxXL/IPxg==",
+ "path": "richardszalay.mockhttp/6.0.0",
+ "hashPath": "richardszalay.mockhttp.6.0.0.nupkg.sha512"
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "path": "system.appcontext/4.3.0",
+ "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.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.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.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/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
+ "path": "system.diagnostics.diagnosticsource/6.0.0",
+ "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
+ },
+ "System.Diagnostics.EventLog/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
+ "path": "system.diagnostics.eventlog/6.0.0",
+ "hashPath": "system.diagnostics.eventlog.6.0.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.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "path": "system.globalization.calendars/4.3.0",
+ "hashPath": "system.globalization.calendars.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.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "path": "system.io.compression/4.3.0",
+ "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "path": "system.io.compression.zipfile/4.3.0",
+ "hashPath": "system.io.compression.zipfile.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.IO.Pipelines/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cb5OfQjnz+zjpJJei+f3QYK7+wWZrDdNHf3DykO6QCacpNZ80tuNgq1DC2kqlrjfEu+cMUTvulxPIrCMbBkjqg==",
+ "path": "system.io.pipelines/6.0.2",
+ "hashPath": "system.io.pipelines.6.0.2.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.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "path": "system.net.http/4.3.0",
+ "hashPath": "system.net.http.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.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "path": "system.net.sockets/4.3.0",
+ "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.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.Metadata/1.6.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
+ "path": "system.reflection.metadata/1.6.0",
+ "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
+ },
+ "System.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.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.6.0.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.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "path": "system.runtime.numerics/4.3.0",
+ "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "path": "system.security.cryptography.cng/4.3.0",
+ "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "hashPath": "system.security.cryptography.openssl.4.3.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.X509Certificates/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "hashPath": "system.security.cryptography.x509certificates.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/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "hashPath": "system.text.encoding.codepages.6.0.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.Encodings.Web/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
+ "path": "system.text.encodings.web/6.0.0",
+ "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
+ "path": "system.text.json/6.0.0",
+ "hashPath": "system.text.json.6.0.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.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
+ "path": "system.threading.tasks.extensions/4.3.0",
+ "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "path": "system.threading.timer/4.3.0",
+ "hashPath": "system.threading.timer.4.3.0.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"
+ },
+ "xunit/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6Mj73Ont3zj2CJuoykVJfE0ZmRwn7C+pTuRP8c4bnaaTFjwNG6tGe0prJ1yIbMe9AHrpDys63ctWacSsFJWK/w==",
+ "path": "xunit/2.4.2",
+ "hashPath": "xunit.2.4.2.nupkg.sha512"
+ },
+ "xunit.abstractions/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
+ "path": "xunit.abstractions/2.0.3",
+ "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512"
+ },
+ "xunit.analyzers/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BeO8hEgs/c8Ls2647fPfieMngncvf0D0xYNDfIO59MolxtCtVjFRd6SRc+7tj8VMqkVOuJcnc9eh4ngI2cAmLQ==",
+ "path": "xunit.analyzers/1.0.0",
+ "hashPath": "xunit.analyzers.1.0.0.nupkg.sha512"
+ },
+ "xunit.assert/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pxJISOFjn2XTTi1mcDCkRZrTFb9OtRRCtx2kZFNF51GdReLr1ls2rnyxvAS4JO247K3aNtflvh5Q0346K5BROA==",
+ "path": "xunit.assert/2.4.2",
+ "hashPath": "xunit.assert.2.4.2.nupkg.sha512"
+ },
+ "xunit.core/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KB4yGCxNqIVyekhJLXtKSEq6BaXVp/JO3mbGVE1hxypZTLEe7h+sTbAhpA+yZW2dPtXTuiW+C1B2oxxHEkrmOw==",
+ "path": "xunit.core/2.4.2",
+ "hashPath": "xunit.core.2.4.2.nupkg.sha512"
+ },
+ "xunit.extensibility.core/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1BoXTIN1C6kpVSMw25huSet25ky6IAQUNovu3zGOGN/jWnbgSoTyCrlIhmXSg0tH5nEf8q7h3OjNHOjyu5PfA==",
+ "path": "xunit.extensibility.core/2.4.2",
+ "hashPath": "xunit.extensibility.core.2.4.2.nupkg.sha512"
+ },
+ "xunit.extensibility.execution/2.4.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CZmgcKkwpyo8FlupZdWpJCryrAOWLh1FBPG6gmVZuPQkGQsim/oL4PcP4nfrC2hHgXUFtluvaJ0Sp9PQKUMNpg==",
+ "path": "xunit.extensibility.execution/2.4.2",
+ "hashPath": "xunit.extensibility.execution.2.4.2.nupkg.sha512"
+ },
+ "xunit.runner.visualstudio/2.4.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OwHamvBdUKgqsXfBzWiCW/O98BTx81UKzx2bieIOQI7CZFE5NEQZGi8PBQGIKawDW96xeRffiNf20SjfC0x9hw==",
+ "path": "xunit.runner.visualstudio/2.4.5",
+ "hashPath": "xunit.runner.visualstudio.2.4.5.nupkg.sha512"
+ },
+ "PanoptesFrontend/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.dll b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.dll
new file mode 100644
index 0000000..435c583
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.pdb b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.pdb
new file mode 100644
index 0000000..6d65e6a
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.pdb differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.runtimeconfig.json b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.runtimeconfig.json
new file mode 100644
index 0000000..3ea82e2
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.runtimeconfig.json
@@ -0,0 +1,15 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "6.0.0"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.staticwebassets.runtime.json b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.staticwebassets.runtime.json
new file mode 100644
index 0000000..66e329e
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/PanoptesTest.staticwebassets.runtime.json
@@ -0,0 +1 @@
+{"ContentRoots":["C:\\Users\\user\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\6.0.0\\staticwebassets\\","C:\\Users\\user\\.nuget\\packages\\blazor-apexcharts\\0.9.20-beta\\staticwebassets\\","C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesFrontend\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\","C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesFrontend\\wwwroot\\","C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesTest\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"_content":{"Children":{"Microsoft.AspNetCore.Components.WebAssembly.Authentication":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazor-ApexCharts":{"Children":{"css":{"Children":{"apexcharts.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/apexcharts.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"apex-charts.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/apex-charts.min.js"},"Patterns":null},"blazor-apex-charts.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/blazor-apex-charts.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"PanoptesFrontend":{"Children":{"PanoptesFrontend.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"PanoptesFrontend.bundle.scp.css"},"Patterns":null},"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"favicon.ico"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":3,"Pattern":"**","Depth":2}]}},"Asset":null,"Patterns":null},"PanoptesTest.styles.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"PanoptesTest.styles.css"},"Patterns":null}},"Asset":null,"Patterns":null}}
\ No newline at end of file
diff --git a/src/PanoptesTest/bin/Debug/net6.0/RichardSzalay.MockHttp.dll b/src/PanoptesTest/bin/Debug/net6.0/RichardSzalay.MockHttp.dll
new file mode 100644
index 0000000..6d65dd8
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/RichardSzalay.MockHttp.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/System.IO.Pipelines.dll b/src/PanoptesTest/bin/Debug/net6.0/System.IO.Pipelines.dll
new file mode 100644
index 0000000..e978399
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/System.IO.Pipelines.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/appsettings.Development.json b/src/PanoptesTest/bin/Debug/net6.0/appsettings.Development.json
new file mode 100644
index 0000000..770d3e9
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "DetailedErrors": true,
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/src/PanoptesTest/bin/Debug/net6.0/appsettings.json b/src/PanoptesTest/bin/Debug/net6.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/src/PanoptesTest/bin/Debug/net6.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..d1a7f8e
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..a6505b6
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..7cc5081
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..52b75d1
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..8763295
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..d716050
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..032b0f1
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..eb8f9f9
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..d962aa6
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..6910b13
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..f25c5c1
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..7f97ff3
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..89ad7cc
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..5cee641
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..23f73ff
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..e536c3f
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..b30f834
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..77d22b3
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..74f0a63
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..8aface5
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..b5ef25f
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..69ef187
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..e5871ec
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..bbb1dcc
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..b0ab3a5
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..f9fef39
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..0fcb066
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..02736d2
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..58de9df
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..34eaf07
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..b5ac87d
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..748a01b
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..8bbed14
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..6b0ff76
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..5396f9d
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..1725a2a
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..1257d0a
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..e89ca32
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..292196c
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..45ca49a
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..29bd2a6
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..0a755a2
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..a5d15f5
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..22aacd8
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..c57045e
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..f8998e5
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..b386a6c
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..3ee3654
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..d5dd683
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..25764f4
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/testhost.dll b/src/PanoptesTest/bin/Debug/net6.0/testhost.dll
new file mode 100644
index 0000000..8fecf5e
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/testhost.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/testhost.exe b/src/PanoptesTest/bin/Debug/net6.0/testhost.exe
new file mode 100644
index 0000000..a9ae87c
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/testhost.exe differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..95aff09
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..b951ff2
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..0b3b985
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..3ac7af2
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..2481c50
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.abstractions.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.abstractions.dll
new file mode 100644
index 0000000..d1e90bf
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.abstractions.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.assert.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.assert.dll
new file mode 100644
index 0000000..27e97e5
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.assert.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.core.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.core.dll
new file mode 100644
index 0000000..fbc38a5
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.core.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.execution.dotnet.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.execution.dotnet.dll
new file mode 100644
index 0000000..6367806
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.execution.dotnet.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll
new file mode 100644
index 0000000..7481503
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll
new file mode 100644
index 0000000..6846845
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll
new file mode 100644
index 0000000..5e9d619
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..3f97cc2
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..b4ce89e
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..619c96a
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..9b7ab49
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..5025035
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
new file mode 100644
index 0000000..11e8a73
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
new file mode 100644
index 0000000..ca47ede
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
new file mode 100644
index 0000000..1bf48ad
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
new file mode 100644
index 0000000..4c2fd09
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ
diff --git a/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
new file mode 100644
index 0000000..45edc6d
Binary files /dev/null and b/src/PanoptesTest/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ
diff --git a/src/PanoptesTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/src/PanoptesTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..36203c7
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.AssemblyInfo.cs b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.AssemblyInfo.cs
new file mode 100644
index 0000000..8297797
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("PanoptesTest")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("PanoptesTest")]
+[assembly: System.Reflection.AssemblyTitleAttribute("PanoptesTest")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.AssemblyInfoInputs.cache b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..5baecc4
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+de09f5d9967081696a25842668ff42202ee8db28
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.GeneratedMSBuildEditorConfig.editorconfig b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..dd9c6ea
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,28 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = PanoptesTest
+build_property.RootNamespace = PanoptesTest
+build_property.ProjectDir = C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\
+build_property.RazorLangVersion = 6.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest
+build_property._RazorSourceGeneratorDebug =
+
+[C:/Users/user/Documents/Panoptes/2023-ca400-murphg62-byrnm257/src/PanoptesTest/Counter.razor]
+build_metadata.AdditionalFiles.TargetPath = Q291bnRlci5yYXpvcg==
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/user/Documents/Panoptes/2023-ca400-murphg62-byrnm257/src/PanoptesTest/CounterRazorTests.razor]
+build_metadata.AdditionalFiles.TargetPath = Q291bnRlclJhem9yVGVzdHMucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
+
+[C:/Users/user/Documents/Panoptes/2023-ca400-murphg62-byrnm257/src/PanoptesTest/_Imports.razor]
+build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
+build_metadata.AdditionalFiles.CssScope =
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.GlobalUsings.g.cs b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.GlobalUsings.g.cs
new file mode 100644
index 0000000..78656cc
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.GlobalUsings.g.cs
@@ -0,0 +1,5 @@
+//
+global using global::Bunit;
+global using global::Bunit.TestDoubles;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Xunit;
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.MvcApplicationPartsAssemblyInfo.cache b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.MvcApplicationPartsAssemblyInfo.cs b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..b273047
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("PanoptesFrontend")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.assets.cache b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.assets.cache
new file mode 100644
index 0000000..5dc6eca
Binary files /dev/null and b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.assets.cache differ
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.AssemblyReference.cache b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..006be8f
Binary files /dev/null and b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.AssemblyReference.cache differ
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.CopyComplete b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.CoreCompileInputs.cache b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..3da6ba7
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+f8d3fdd89cd27858e18cf59a071f69997bfa24a2
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.FileListAbsolute.txt b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..f3c807b
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.csproj.FileListAbsolute.txt
@@ -0,0 +1,135 @@
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\CoverletSourceRootsMapping
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\testhost.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesFrontend.deps.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesFrontend.runtimeconfig.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\appsettings.Development.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\appsettings.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesFrontend.staticwebassets.runtime.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesFrontend.exe
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\testhost.exe
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesTest.staticwebassets.runtime.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesTest.deps.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesTest.runtimeconfig.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesTest.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesTest.pdb
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\AngleSharp.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\AngleSharp.Css.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\AngleSharp.Diffing.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Blazor-ApexCharts.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Bunit.Core.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\AngleSharpWrappers.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Bunit.Web.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Components.WebAssembly.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.JSInterop.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Newtonsoft.Json.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\NuGet.Frameworks.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\System.IO.Pipelines.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.abstractions.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.assert.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.core.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\xunit.execution.dotnet.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesFrontend.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\PanoptesFrontend.pdb
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.csproj.AssemblyReference.cache
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.AssemblyInfoInputs.cache
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.AssemblyInfo.cs
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.csproj.CoreCompileInputs.cache
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.MvcApplicationPartsAssemblyInfo.cs
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\staticwebassets.build.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\staticwebassets.development.json
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\scopedcss\bundle\PanoptesTest.styles.css
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.csproj.CopyComplete
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\refint\PanoptesTest.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.pdb
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\PanoptesTest.genruntimeconfig.cache
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\obj\Debug\net6.0\ref\PanoptesTest.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Castle.Core.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\Moq.dll
+C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\PanoptesTest\bin\Debug\net6.0\RichardSzalay.MockHttp.dll
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.dll b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.dll
new file mode 100644
index 0000000..435c583
Binary files /dev/null and b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.dll differ
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.genruntimeconfig.cache b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.genruntimeconfig.cache
new file mode 100644
index 0000000..f19adf7
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.genruntimeconfig.cache
@@ -0,0 +1 @@
+f5f857ba350df16687871584317e9789b766595c
diff --git a/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.pdb b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.pdb
new file mode 100644
index 0000000..6d65e6a
Binary files /dev/null and b/src/PanoptesTest/obj/Debug/net6.0/PanoptesTest.pdb differ
diff --git a/src/PanoptesTest/obj/Debug/net6.0/project.razor.json b/src/PanoptesTest/obj/Debug/net6.0/project.razor.json
new file mode 100644
index 0000000..739bf99
--- /dev/null
+++ b/src/PanoptesTest/obj/Debug/net6.0/project.razor.json
@@ -0,0 +1,20982 @@
+{
+ "SerializedFilePath": "c:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesTest\\obj\\Debug\\net6.0\\project.razor.json",
+ "FilePath": "c:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\PanoptesTest\\PanoptesTest.csproj",
+ "Configuration": {
+ "ConfigurationName": "Default",
+ "LanguageVersion": "6.0",
+ "Extensions": []
+ },
+ "ProjectWorkspaceState": {
+ "TagHelpers": [
+ {
+ "HashCode": -456759936,
+ "Kind": "Components.Component",
+ "Name": "PanoptesTest.Counter",
+ "AssemblyName": "PanoptesTest",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Counter"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "PanoptesTest.Counter",
+ "Common.TypeNamespace": "PanoptesTest",
+ "Common.TypeNameIdentifier": "Counter"
+ }
+ },
+ {
+ "HashCode": 1168137096,
+ "Kind": "Components.Component",
+ "Name": "PanoptesTest.Counter",
+ "AssemblyName": "PanoptesTest",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "PanoptesTest.Counter"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "PanoptesTest.Counter",
+ "Common.TypeNamespace": "PanoptesTest",
+ "Common.TypeNameIdentifier": "Counter",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1814800643,
+ "Kind": "Components.Component",
+ "Name": "Bunit.TestDoubles.Stub",
+ "AssemblyName": "Bunit.Web",
+ "Documentation": "\n \n Represents a test double stub of a component of type .\n \n The stub type. \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Stub"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TComponent",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TComponent for the Bunit.TestDoubles.Stub component.",
+ "Metadata": {
+ "Common.PropertyName": "TComponent",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TComponent : global::Microsoft.AspNetCore.Components.IComponent"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Bunit.TestDoubles.Stub",
+ "Common.TypeNamespace": "Bunit.TestDoubles",
+ "Common.TypeNameIdentifier": "Stub",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "HashCode": 1094765876,
+ "Kind": "Components.Component",
+ "Name": "Bunit.TestDoubles.Stub",
+ "AssemblyName": "Bunit.Web",
+ "Documentation": "\n \n Represents a test double stub of a component of type .\n \n The stub type. \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Bunit.TestDoubles.Stub"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TComponent",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TComponent for the Bunit.TestDoubles.Stub component.",
+ "Metadata": {
+ "Common.PropertyName": "TComponent",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TComponent : global::Microsoft.AspNetCore.Components.IComponent"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Bunit.TestDoubles.Stub",
+ "Common.TypeNamespace": "Bunit.TestDoubles",
+ "Common.TypeNameIdentifier": "Stub",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 1117712841,
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n An that uses as the\n state to be persisted across authentication operations.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "RemoteAuthenticatorView"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Action",
+ "TypeName": "System.String",
+ "Documentation": "\n \n Gets or sets the action the component needs to handle.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Action",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AuthenticationState",
+ "TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState",
+ "Documentation": "\n \n Gets or sets the instance to be preserved during the authentication operation.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "AuthenticationState",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Registering",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Registering",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "UserProfile",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "UserProfile",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogInFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogInFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogInSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log in operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogInSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log out operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ApplicationPaths",
+ "TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions",
+ "Documentation": "\n \n Gets or sets the with the paths to different authentication pages.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "ApplicationPaths",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView"
+ }
+ },
+ {
+ "HashCode": -452162667,
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n An that uses as the\n state to be persisted across authentication operations.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Action",
+ "TypeName": "System.String",
+ "Documentation": "\n \n Gets or sets the action the component needs to handle.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Action",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AuthenticationState",
+ "TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState",
+ "Documentation": "\n \n Gets or sets the instance to be preserved during the authentication operation.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "AuthenticationState",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Registering",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Registering",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "UserProfile",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "UserProfile",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogInFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogInFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogInSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log in operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogInSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log out operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ApplicationPaths",
+ "TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions",
+ "Documentation": "\n \n Gets or sets the with the paths to different authentication pages.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "ApplicationPaths",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -924186538,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LoggingIn",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -1756787314,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LoggingIn",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1556202640,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.Registering",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Registering",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.Registering",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1053756697,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.Registering",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Registering",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.Registering",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1432588279,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.UserProfile",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "UserProfile",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.UserProfile",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -2055943331,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.UserProfile",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "UserProfile",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.UserProfile",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1954763478,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLoggingIn",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1505691299,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLoggingIn",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1140106363,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogInFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogInFailed",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogInFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogInFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 271109821,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogInFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogInFailed",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogInFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogInFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 693403078,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOut",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -301313541,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOut",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 2021130357,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLogOut",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1762897296,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLogOut",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.CompletingLogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -537705331,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutFailed",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogOutFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1353090947,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutFailed",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogOutFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -525020399,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutSucceeded",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutSucceeded",
+ "ParentTag": "RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutSucceeded",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 2062873109,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutSucceeded",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutSucceeded",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorView.LogOutSucceeded",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorView",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -476989745,
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n A component that handles remote authentication operations in an application.\n \n The user state type persisted while the operation is in progress. It must be serializable. \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TAuthenticationState",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TAuthenticationState for the Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore component.",
+ "Metadata": {
+ "Common.PropertyName": "TAuthenticationState",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TAuthenticationState : global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Action",
+ "TypeName": "System.String",
+ "Documentation": "\n \n Gets or sets the action the component needs to handle.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Action",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AuthenticationState",
+ "TypeName": "TAuthenticationState",
+ "Documentation": "\n \n Gets or sets the instance to be preserved during the authentication operation.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "AuthenticationState",
+ "Common.GloballyQualifiedTypeName": "TAuthenticationState",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Registering",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Registering",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "UserProfile",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "UserProfile",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogInFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogInFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogInSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log in operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogInSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log out operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ApplicationPaths",
+ "TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions",
+ "Documentation": "\n \n Gets or sets the with the paths to different authentication pages.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "ApplicationPaths",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "HashCode": 883434384,
+ "Kind": "Components.Component",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n A component that handles remote authentication operations in an application.\n \n The user state type persisted while the operation is in progress. It must be serializable. \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TAuthenticationState",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TAuthenticationState for the Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore component.",
+ "Metadata": {
+ "Common.PropertyName": "TAuthenticationState",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TAuthenticationState : global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationState"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Action",
+ "TypeName": "System.String",
+ "Documentation": "\n \n Gets or sets the action the component needs to handle.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Action",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "AuthenticationState",
+ "TypeName": "TAuthenticationState",
+ "Documentation": "\n \n Gets or sets the instance to be preserved during the authentication operation.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "AuthenticationState",
+ "Common.GloballyQualifiedTypeName": "TAuthenticationState",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Registering",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "Registering",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "UserProfile",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "UserProfile",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLoggingIn",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLoggingIn",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogInFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogInFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "CompletingLogOut",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "CompletingLogOut",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutFailed",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutFailed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "LogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "LogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogInSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log in operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogInSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLogOutSucceeded",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Documentation": "\n \n Gets or sets an event callback that will be invoked with the stored authentication state when a log out operation succeeds.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "OnLogOutSucceeded",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ApplicationPaths",
+ "TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions",
+ "Documentation": "\n \n Gets or sets the with the paths to different authentication pages.\n \n ",
+ "Metadata": {
+ "Common.PropertyName": "ApplicationPaths",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticationApplicationPathsOptions"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 1815424685,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LoggingIn",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -663788336,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LoggingIn",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -555292056,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.Registering",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Registering",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.Registering",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -834909166,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.Registering",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "Registering",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.Registering",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 818120024,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.UserProfile",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "UserProfile",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.UserProfile",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -410662576,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.UserProfile",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "UserProfile",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.UserProfile",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 2028220137,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLoggingIn",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -1163278984,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLoggingIn",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLoggingIn",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLoggingIn",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 335633862,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogInFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogInFailed",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogInFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogInFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1373473703,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogInFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogInFailed",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogInFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogInFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -833289882,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOut",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1576940943,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOut",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1264669616,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLogOut",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -238431754,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLogOut",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "CompletingLogOut",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.CompletingLogOut",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 119692340,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutFailed",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogOutFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1653018983,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutFailed",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutFailed",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'LogOutFailed' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutFailed",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 2058490458,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutSucceeded",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutSucceeded",
+ "ParentTag": "RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutSucceeded",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": -2037893012,
+ "Kind": "Components.ChildContent",
+ "Name": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutSucceeded",
+ "AssemblyName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Documentation": "\n \n Gets or sets a with the UI to display while is being handled.\n \n ",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "LogOutSucceeded",
+ "ParentTag": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "Microsoft.AspNetCore.Components.WebAssembly.Authentication.RemoteAuthenticatorViewCore.LogOutSucceeded",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.WebAssembly.Authentication",
+ "Common.TypeNameIdentifier": "RemoteAuthenticatorViewCore",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 315602502,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexChart",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexChart"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexChart component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ApexPointTooltip",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>",
+ "Metadata": {
+ "Common.PropertyName": "ApexPointTooltip",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment>",
+ "Components.ChildContent": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Options",
+ "TypeName": "ApexCharts.ApexChartOptions",
+ "Metadata": {
+ "Common.PropertyName": "Options",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Title",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Title",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XAxisType",
+ "TypeName": "ApexCharts.XAxisType?",
+ "Metadata": {
+ "Common.PropertyName": "XAxisType",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.XAxisType?"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Debug",
+ "TypeName": "System.Boolean",
+ "Metadata": {
+ "Common.PropertyName": "Debug",
+ "Common.GloballyQualifiedTypeName": "global::System.Boolean"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Width",
+ "TypeName": "System.Object",
+ "Metadata": {
+ "Common.PropertyName": "Width",
+ "Common.GloballyQualifiedTypeName": "global::System.Object"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Height",
+ "TypeName": "System.Object",
+ "Metadata": {
+ "Common.PropertyName": "Height",
+ "Common.GloballyQualifiedTypeName": "global::System.Object"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnXAxisLabelClick",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnXAxisLabelClick",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnMarkerClick",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnMarkerClick",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnDataPointSelection",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnDataPointSelection",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnDataPointEnter",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnDataPointEnter",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnDataPointLeave",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnDataPointLeave",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLegendClicked",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnLegendClicked",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnSelection",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnSelection",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnBrushScrolled",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnBrushScrolled",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnZoomed",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnZoomed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnRendered",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Metadata": {
+ "Common.PropertyName": "OnRendered",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "FormatYAxisLabel",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "FormatYAxisLabel",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "GroupPoints",
+ "TypeName": "ApexCharts.GroupPoints",
+ "Metadata": {
+ "Common.PropertyName": "GroupPoints",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.GroupPoints"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexChart",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexChart",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "HashCode": 1431818440,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexChart",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexCharts.ApexChart"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexChart component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ChildContent",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
+ "Metadata": {
+ "Common.PropertyName": "ChildContent",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Components.ChildContent": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ApexPointTooltip",
+ "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>",
+ "Metadata": {
+ "Common.PropertyName": "ApexPointTooltip",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment>",
+ "Components.ChildContent": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Options",
+ "TypeName": "ApexCharts.ApexChartOptions",
+ "Metadata": {
+ "Common.PropertyName": "Options",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Title",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Title",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XAxisType",
+ "TypeName": "ApexCharts.XAxisType?",
+ "Metadata": {
+ "Common.PropertyName": "XAxisType",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.XAxisType?"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Debug",
+ "TypeName": "System.Boolean",
+ "Metadata": {
+ "Common.PropertyName": "Debug",
+ "Common.GloballyQualifiedTypeName": "global::System.Boolean"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Width",
+ "TypeName": "System.Object",
+ "Metadata": {
+ "Common.PropertyName": "Width",
+ "Common.GloballyQualifiedTypeName": "global::System.Object"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Height",
+ "TypeName": "System.Object",
+ "Metadata": {
+ "Common.PropertyName": "Height",
+ "Common.GloballyQualifiedTypeName": "global::System.Object"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnXAxisLabelClick",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnXAxisLabelClick",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnMarkerClick",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnMarkerClick",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnDataPointSelection",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnDataPointSelection",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnDataPointEnter",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnDataPointEnter",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnDataPointLeave",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnDataPointLeave",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnLegendClicked",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnLegendClicked",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnSelection",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnSelection",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnBrushScrolled",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnBrushScrolled",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnZoomed",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
+ "Metadata": {
+ "Common.PropertyName": "OnZoomed",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
+ "Components.EventCallback": "True",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OnRendered",
+ "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
+ "Metadata": {
+ "Common.PropertyName": "OnRendered",
+ "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Components.EventCallback": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "FormatYAxisLabel",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "FormatYAxisLabel",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "GroupPoints",
+ "TypeName": "ApexCharts.GroupPoints",
+ "Metadata": {
+ "Common.PropertyName": "GroupPoints",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.GroupPoints"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for all child content expressions.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexChart",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexChart",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -2081352700,
+ "Kind": "Components.ChildContent",
+ "Name": "ApexCharts.ApexChart.ChildContent",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "ApexChart"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "ApexCharts.ApexChart.ChildContent",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexChart",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 957440782,
+ "Kind": "Components.ChildContent",
+ "Name": "ApexCharts.ApexChart.ChildContent",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ChildContent",
+ "ParentTag": "ApexCharts.ApexChart"
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "ApexCharts.ApexChart.ChildContent",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexChart",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -2094653503,
+ "Kind": "Components.ChildContent",
+ "Name": "ApexCharts.ApexChart.ApexPointTooltip",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexPointTooltip",
+ "ParentTag": "ApexChart"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'ApexPointTooltip' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "ApexCharts.ApexChart.ApexPointTooltip",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexChart",
+ "Components.IsSpecialKind": "Components.ChildContent"
+ }
+ },
+ {
+ "HashCode": 1558110323,
+ "Kind": "Components.ChildContent",
+ "Name": "ApexCharts.ApexChart.ApexPointTooltip",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexPointTooltip",
+ "ParentTag": "ApexCharts.ApexChart"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.ChildContent",
+ "Name": "Context",
+ "TypeName": "System.String",
+ "Documentation": "Specifies the parameter name for the 'ApexPointTooltip' child content expression.",
+ "Metadata": {
+ "Components.ChildContentParameterName": "True",
+ "Common.PropertyName": "Context"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.None",
+ "Common.TypeName": "ApexCharts.ApexChart.ApexPointTooltip",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexChart",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": -1435142545,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexGauge",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexGauge"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Title",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Title",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Percentage",
+ "TypeName": "System.Decimal",
+ "Metadata": {
+ "Common.PropertyName": "Percentage",
+ "Common.GloballyQualifiedTypeName": "global::System.Decimal"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Precentage",
+ "TypeName": "System.Decimal",
+ "Metadata": {
+ "Common.PropertyName": "Precentage",
+ "Common.GloballyQualifiedTypeName": "global::System.Decimal"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Label",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Label",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Options",
+ "TypeName": "ApexCharts.ApexChartOptions",
+ "Metadata": {
+ "Common.PropertyName": "Options",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexGauge",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexGauge"
+ }
+ },
+ {
+ "HashCode": 230580785,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexGauge",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexCharts.ApexGauge"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "Title",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Title",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Percentage",
+ "TypeName": "System.Decimal",
+ "Metadata": {
+ "Common.PropertyName": "Percentage",
+ "Common.GloballyQualifiedTypeName": "global::System.Decimal"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Precentage",
+ "TypeName": "System.Decimal",
+ "Metadata": {
+ "Common.PropertyName": "Precentage",
+ "Common.GloballyQualifiedTypeName": "global::System.Decimal"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Label",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Label",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Options",
+ "TypeName": "ApexCharts.ApexChartOptions",
+ "Metadata": {
+ "Common.PropertyName": "Options",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexGauge",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexGauge",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 818624029,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexBoxPlotSeries",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexBoxPlotSeries"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBoxPlotSeries component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Min",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Min",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Quantile1",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Quantile1",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Median",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Median",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Quantile3",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Quantile3",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Max",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Max",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderBy",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderBy",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderByDescending",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderByDescending",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DataPointMutator",
+ "TypeName": "System.Action>",
+ "Metadata": {
+ "Common.PropertyName": "DataPointMutator",
+ "Common.GloballyQualifiedTypeName": "global::System.Action>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Name",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XValue",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "XValue",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ShowDataLabels",
+ "TypeName": "System.Boolean",
+ "Metadata": {
+ "Common.PropertyName": "ShowDataLabels",
+ "Common.GloballyQualifiedTypeName": "global::System.Boolean"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Items",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "Metadata": {
+ "Common.PropertyName": "Items",
+ "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Stroke",
+ "TypeName": "ApexCharts.SeriesStroke",
+ "Metadata": {
+ "Common.PropertyName": "Stroke",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Color",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Color",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "PointColor",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "PointColor",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexBoxPlotSeries",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexBoxPlotSeries",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "HashCode": -1977007484,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexBoxPlotSeries",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexCharts.ApexBoxPlotSeries"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBoxPlotSeries component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Min",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Min",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Quantile1",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Quantile1",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Median",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Median",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Quantile3",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Quantile3",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Max",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Max",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderBy",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderBy",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderByDescending",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderByDescending",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DataPointMutator",
+ "TypeName": "System.Action>",
+ "Metadata": {
+ "Common.PropertyName": "DataPointMutator",
+ "Common.GloballyQualifiedTypeName": "global::System.Action>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Name",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XValue",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "XValue",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ShowDataLabels",
+ "TypeName": "System.Boolean",
+ "Metadata": {
+ "Common.PropertyName": "ShowDataLabels",
+ "Common.GloballyQualifiedTypeName": "global::System.Boolean"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Items",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "Metadata": {
+ "Common.PropertyName": "Items",
+ "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Stroke",
+ "TypeName": "ApexCharts.SeriesStroke",
+ "Metadata": {
+ "Common.PropertyName": "Stroke",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Color",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Color",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "PointColor",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "PointColor",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexBoxPlotSeries",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexBoxPlotSeries",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 1546312872,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexBubbleSeries",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexBubbleSeries"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBubbleSeries component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "YAggregate",
+ "TypeName": "System.Func, System.Decimal>",
+ "Metadata": {
+ "Common.PropertyName": "YAggregate",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ZAggregate",
+ "TypeName": "System.Func, System.Decimal>",
+ "Metadata": {
+ "Common.PropertyName": "ZAggregate",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderBy",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderBy",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderByDescending",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderByDescending",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DataPointMutator",
+ "TypeName": "System.Action>",
+ "Metadata": {
+ "Common.PropertyName": "DataPointMutator",
+ "Common.GloballyQualifiedTypeName": "global::System.Action>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Name",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XValue",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "XValue",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ShowDataLabels",
+ "TypeName": "System.Boolean",
+ "Metadata": {
+ "Common.PropertyName": "ShowDataLabels",
+ "Common.GloballyQualifiedTypeName": "global::System.Boolean"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Items",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "Metadata": {
+ "Common.PropertyName": "Items",
+ "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Stroke",
+ "TypeName": "ApexCharts.SeriesStroke",
+ "Metadata": {
+ "Common.PropertyName": "Stroke",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Color",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Color",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "PointColor",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "PointColor",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexBubbleSeries",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexBubbleSeries",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "HashCode": -916147581,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexBubbleSeries",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexCharts.ApexBubbleSeries"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBubbleSeries component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "YAggregate",
+ "TypeName": "System.Func, System.Decimal>",
+ "Metadata": {
+ "Common.PropertyName": "YAggregate",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ZAggregate",
+ "TypeName": "System.Func, System.Decimal>",
+ "Metadata": {
+ "Common.PropertyName": "ZAggregate",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderBy",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderBy",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderByDescending",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderByDescending",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DataPointMutator",
+ "TypeName": "System.Action>",
+ "Metadata": {
+ "Common.PropertyName": "DataPointMutator",
+ "Common.GloballyQualifiedTypeName": "global::System.Action>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Name",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XValue",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "XValue",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "ShowDataLabels",
+ "TypeName": "System.Boolean",
+ "Metadata": {
+ "Common.PropertyName": "ShowDataLabels",
+ "Common.GloballyQualifiedTypeName": "global::System.Boolean"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Items",
+ "TypeName": "System.Collections.Generic.IEnumerable",
+ "Metadata": {
+ "Common.PropertyName": "Items",
+ "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Stroke",
+ "TypeName": "ApexCharts.SeriesStroke",
+ "Metadata": {
+ "Common.PropertyName": "Stroke",
+ "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Color",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Color",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "PointColor",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "PointColor",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ }
+ ],
+ "Metadata": {
+ "Runtime.Name": "Components.IComponent",
+ "Common.TypeName": "ApexCharts.ApexBubbleSeries",
+ "Common.TypeNamespace": "ApexCharts",
+ "Common.TypeNameIdentifier": "ApexBubbleSeries",
+ "Components.GenericTyped": "True",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ }
+ },
+ {
+ "HashCode": 697766901,
+ "Kind": "Components.Component",
+ "Name": "ApexCharts.ApexCandleSeries",
+ "AssemblyName": "Blazor-ApexCharts",
+ "CaseSensitive": true,
+ "TagMatchingRules": [
+ {
+ "TagName": "ApexCandleSeries"
+ }
+ ],
+ "BoundAttributes": [
+ {
+ "Kind": "Components.Component",
+ "Name": "TItem",
+ "TypeName": "System.Type",
+ "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexCandleSeries component.",
+ "Metadata": {
+ "Common.PropertyName": "TItem",
+ "Components.TypeParameter": "True",
+ "Components.TypeParameterIsCascading": "False",
+ "Component.TypeParameterConstraints": "where TItem : class"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Open",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Open",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "High",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "High",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Low",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Low",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Close",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "Close",
+ "Common.GloballyQualifiedTypeName": "global::System.Func",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderBy",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderBy",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "OrderByDescending",
+ "TypeName": "System.Func, System.Object>",
+ "Metadata": {
+ "Common.PropertyName": "OrderByDescending",
+ "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "DataPointMutator",
+ "TypeName": "System.Action>",
+ "Metadata": {
+ "Common.PropertyName": "DataPointMutator",
+ "Common.GloballyQualifiedTypeName": "global::System.Action>",
+ "Components.DelegateSignature": "True",
+ "Components.IsDelegateAwaitableResult": "False",
+ "Components.GenericTyped": "True"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "Name",
+ "TypeName": "System.String",
+ "Metadata": {
+ "Common.PropertyName": "Name",
+ "Common.GloballyQualifiedTypeName": "global::System.String"
+ }
+ },
+ {
+ "Kind": "Components.Component",
+ "Name": "XValue",
+ "TypeName": "System.Func",
+ "Metadata": {
+ "Common.PropertyName": "XValue",
+ "Common.GloballyQualifiedTypeName": "global::System.Func